/* Hide Twitter icon in footer - keep only LinkedIn */
/* Using multiple aggressive selectors */

/* Target any link containing twitter in href */
a[href*="twitter"],
a[href*="x.com"],
[href*="twitter"],
[href*="x.com"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Target the second social icon link in any flex container at bottom of page */
/* This targets icon-only links (small rounded buttons with SVG) */
div.flex > a:nth-child(2):has(svg),
.flex > a:nth-child(2):has(svg) {
  display: none !important;
}

/* Target by sibling - hide any link that comes after LinkedIn link */
a[href*="linkedin"] ~ a:has(svg) {
  display: none !important;
}

/* Lucide Twitter icon class */
.lucide-twitter {
  display: none !important;
}

/* Parent of Twitter icon */
a:has(.lucide-twitter),
button:has(.lucide-twitter) {
  display: none !important;
}
