/* GEO Ads Module — static banner inside .quick-nav (2026-09-14).
   Desktop: right side of quick-nav at full 270×270; mobile: centered below the nav.
   Pages without .quick-nav never show the banner (the slot is absent there).
   The slot ALWAYS reserves its footprint (empty for non-campaign GEOs = neutral
   whitespace) so the injected banner causes zero layout shift (CLS). WCAG AAA colors */
.quick-nav { display: flex; align-items: flex-start; gap: 1.5rem; }
.quick-nav__main { flex: 1 1 auto; min-width: 0; }
.ads-hero-slot { flex: 0 0 auto; width: 270px; height: 270px; }
.ads-hero { display: block; line-height: 0; }
.ads-hero img { width: 270px; height: 270px; display: block; border-radius: 8px; }
@media (max-width: 768px) { .quick-nav { flex-direction: column; } .ads-hero-slot { width: min(270px, 80vw); height: auto; aspect-ratio: 1 / 1; align-self: center; } .ads-hero img { width: 100%; height: auto; }
/* Center quick-nav content on mobile (banner and buttons centered) */
.quick-nav__main { display: flex; flex-direction: column; align-items: center; width: 100%; }
.quick-nav .nav-box-title { text-align: center; }
.quick-nav-buttons { align-items: center; }
.date-switcher-buttons { display: flex; flex-direction: column; align-items: center; } }
