.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* Tailwind utilities and `display: inline-block` on icon spans interact: plain `.hidden` must win for nav toggles. */
.material-symbols-outlined.hidden {
  display: none !important;
}

body {
  font-family: 'Inter', sans-serif;
}

.bg-grid-subtle {
  background-image: radial-gradient(#c3c6d6 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}

.editorial-shadow {
  box-shadow: 0 10px 40px rgba(39, 96, 216, 0.04);
}

.glass-effect {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
}

.primary-gradient {
  background: linear-gradient(135deg, #0047b7 0%, #2760d8 100%);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-title {
  line-height: 0.9;
}

.services-grid {
  grid-template-rows: repeat(2, minmax(300px, auto));
}

/* Page-scoped editorial grid variants (avoid conflicting `.editorial-grid` definitions). */
.editorial-grid-compliance {
  display: grid;
  grid-template-columns: 30% 70%;
}

@media (max-width: 768px) {
  .editorial-grid-compliance {
    grid-template-columns: 100%;
  }
}

.editorial-grid-incident {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
  .editorial-grid-incident {
    grid-template-columns: 1fr;
  }
}

.editorial-grid-pentest {
  display: grid;
  grid-template-columns: 35% 1fr;
}

@media (max-width: 768px) {
  .editorial-grid-pentest {
    grid-template-columns: 1fr;
  }
}

/* Homepage nav: Tailwind lg layout + JS adds this when horizontal links overflow the bar (narrow windows). */
@media (min-width: 1024px) {
  #site-nav.is-nav-overfull #nav-desktop {
    display: none !important;
  }

  #site-nav.is-nav-overfull #nav-menu-toggle {
    display: inline-flex !important;
  }
}

/* Footer: avoid horizontal overflow in narrow / odd aspect ratios (grid min-width: auto, long email). */
footer .mx-auto.grid[class*="grid-cols"] > div {
  min-width: 0;
}

footer address {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

