/* Infrastructure link behavior */

/* Hide once scrolled past hero (data-header-nav="dark" sections toggle .header-dark) */
.header-dark .nav-link-hero-only,
.header-white .nav-link-hero-only,
.header-menu-active .nav-link-hero-only {
    display: none;
}

/* Hide entirely on legal/story templates (no hero) */
.wrapper-legals .nav-link-hero-only,
.wrapper-story .nav-link-hero-only {
    display: none;
}

/* Responsive spacing for the three-item nav */
@media screen and (max-width: 1200px) {
    .nav { gap: 2.4rem; }
}

@media screen and (max-width: 967px) {
    .nav { gap: 1.6rem; }
    .nav-link { font-size: max(12px, 1.5rem); }
}

@media screen and (max-width: 767px) {
    .nav { gap: 1.2rem; }
    .nav-link { font-size: max(12px, 1.3rem); }
}

/* Phones: three items can't fit cleanly alongside the logo , show Strategy Call only */
@media screen and (max-width: 650px) {
    .nav-link-hero-only { display: none; }
    .nav-link { font-size: max(12px, 1.4rem); }
}
