/* ============================================================
   SHARED — masthead, nav, footer, atoms (used everywhere)
============================================================ */

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  /* Prevents stray horizontal scroll on mobile from any element that briefly
     exceeds viewport width. `clip` (vs `hidden`) keeps position:sticky on the
     nav working correctly. Supported in all modern browsers (Chrome 90+,
     Firefox 81+, Safari 16+). */
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  /* Long URLs and unbreakable titles can push narrow mobile viewports wider —
     this lets them wrap cleanly inside their container. */
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .12s ease; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: var(--font-sans); margin: 0; color: var(--navy); }
button { font-family: inherit; cursor: pointer; border: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  z-index: 1000;
  clip: auto;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.rule--heavy { border-top: 2px solid var(--ink); }
.rule--red   { border-top: 2px solid var(--red); }

/* ============================================================
   ATOMS
============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  background: var(--red-tint);
  padding: 6px 12px;
  border-radius: 2px;
  line-height: 1.3;
}
.eyebrow--dark { background: rgba(255,255,255,0.08); color: var(--red-light); }
.eyebrow--plain { background: transparent; padding: 0; font-size: 11px; letter-spacing: 3px; }
.eyebrow--sponsored { background: rgba(0,0,0,0.05); color: var(--muted); letter-spacing: 2px; }

/* Unified site button — used everywhere except inside form scopes that
   declare their own (which now use matching 2px radius). */
.btn {
  display: inline-block;
  padding: 17px 36px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 3px;
  transition: background .12s ease;
  cursor: pointer;
}
.btn:hover { background: var(--red-dark); color: #fff; }
.btn:disabled { background: #9AA5B4; cursor: not-allowed; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.cat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

/* Breadcrumb visible component is hidden by editorial choice — the
   BreadcrumbList JSON-LD schema in inc/schema.php still emits, so Google
   shows "Home › Category › Article" in search results. */

/* ============================================================
   NEWSLETTER CTA (bottom band)
   Used on the homepage and on every category/tag/author archive.
============================================================ */
.nl-cta {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.nl-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.nl-cta__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; position: relative; }
.nl-cta .eyebrow { margin-bottom: 16px; background: rgba(255,255,255,0.08); color: var(--red-light); }
.nl-cta h2 {
  font-size: 40px; font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 14px;
}
.nl-cta p { font-size: 16px; color: rgba(255,255,255,1); line-height: 1.55; margin: 0 0 28px; }
.nl-cta .nl-form { max-width: 500px; margin: 0 auto; }
.nl-cta .nl-form input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: #fff;
  padding: 13px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  width: 100%;
  transition: border-color .12s ease, background .12s ease;
}
.nl-cta .nl-form input::placeholder { color: rgba(255,255,255,0.7); }
.nl-cta .nl-form input:focus { outline: none; border-color: var(--red); }
.nl-form--stack { display: flex; flex-direction: column; gap: 10px; }
/* flex-wrap so the row drops to two lines on narrow viewports rather than
   forcing the page wider; min-width:0 lets each input shrink below its
   intrinsic width (default ~232px for type=email) so they never overflow. */
.nl-form--stack .nl-form__row { display: flex; flex-wrap: wrap; gap: 10px; }
.nl-form--stack .nl-form__row input { flex: 1 1 200px; min-width: 0; }
.nl-form--stack .btn { width: 100%; padding: 15px 24px; }
.nl-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .nl-cta h2 { font-size: 30px; }
}
@media (max-width: 760px) {
  .nl-cta h2 { font-size: 24px; }
}

.ph {
  background: linear-gradient(135deg, #0C2E54 0%, #1a4a7a 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,15,23,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 40%);
}
.ph--sq { aspect-ratio: 1 / 1; }
.ph--img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph--img::before { display: none; }
.ph--img > span { display: none; }

/* ============================================================
   MASTHEAD
============================================================ */
.masthead { background: var(--white); padding: 5px 0 0; }
.masthead__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.masthead__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  justify-self: start;
}
.masthead__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.masthead__follow {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  padding: 6px;
  transition: color .12s ease;
}
.ic-btn:hover { color: var(--red); }
.ic-btn svg { width: 22px; height: 22px; fill: currentColor; }

.ic-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  padding: 6px;
  transition: color .12s ease;
  background: transparent;
}
.ic-search:hover { color: var(--red); }
.ic-search svg { width: 22px; height: 22px; }

.masthead__logo { display: inline-flex; align-items: center; justify-content: flex-start; }
.masthead__logo img { height: 100px; width: auto; display: block; }

.masthead__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn--two-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 24px;
  line-height: 1.25;
  letter-spacing: 0;
  gap: 2px;
}
.btn--two-line .btn__line1 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}
.btn--two-line .btn__line2 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
  color: #fff;
}
.masthead__tagline {
  text-align: center;
  font-size: 15px;
  color: var(--navy);
  font-style: italic;
  letter-spacing: 0.3px;
  padding: 0 24px 6px;
  max-width: var(--container);
  margin: 8px auto 0;
  font-weight: 500;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 40;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nav__inner {
  display: flex; align-items: center; justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.nav__list {
  display: flex; gap: 0;
  list-style: none; margin: 0; padding: 0;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__item > a {
  display: block;
  color: var(--white);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 3px solid transparent;
  transition: color .12s ease, border-color .12s ease;
}
.nav__item > a:hover,
.nav__item.active > a,
.nav__item.current-menu-item > a {
  color: var(--red-light);
  border-bottom-color: var(--red);
}
.nav__caret {
  font-size: 13px;
  opacity: 0.85;
  transition: transform .12s ease;
  display: inline-block;
  line-height: 1;
}
.nav__item--has-sub:hover .nav__caret,
.nav__item--has-sub:focus-within .nav__caret { transform: rotate(-180deg); }

.nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 50;
}

/* Mobile-only social icons inside the nav bar — hidden on desktop.
   Made visible inside the (max-width: 760px) breakpoint below. */
.nav__social { display: none; }
.nav__item--has-sub:hover .nav__submenu,
.nav__item--has-sub:focus-within .nav__submenu { display: block; }
.nav__submenu li { display: block; }
.nav__submenu a {
  display: block;
  padding: 11px 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: none;
  transition: background .12s ease, color .12s ease;
}
.nav__submenu a:hover { background: var(--navy); color: var(--red-light); }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav__toggle-icon {
  display: inline-block;
  width: 28px;
  text-align: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}
.nav__toggle-icon::before { content: '☰'; }
.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before { content: '✕'; font-size: 22px; }
/* When menu is open: hide the "Menu" word, just show the ✕ icon. */
.nav__toggle[aria-expanded="true"] .nav__toggle-text { display: none; }

/* ============================================================
   SEARCH OVERLAY — slides down from masthead when search icon clicked
============================================================ */
.bna-search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  padding: 22px 0;
  z-index: 60;
  display: none;
}
.bna-search-overlay.is-open {
  display: block;
  animation: bna-search-slide .18s ease-out;
}
@keyframes bna-search-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bna-search-overlay__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bna-search-overlay form {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: center;
}
.bna-search-overlay input[type="search"] {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  color: var(--ink);
  min-width: 0;
}
.bna-search-overlay input[type="search"]:focus {
  outline: none;
  border-color: var(--navy);
}
.bna-search-overlay .btn { flex: 0 0 auto; padding: 14px 22px; }
.bna-search-overlay__close {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  flex: 0 0 44px;
  transition: color .12s, border-color .12s, background .12s;
}
.bna-search-overlay__close:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--white);
}

/* Make the masthead the positioning context for the overlay */
.masthead { position: relative; }

@media (max-width: 640px) {
  .bna-search-overlay__inner { flex-wrap: wrap; }
  .bna-search-overlay__close { order: 99; margin-left: auto; }
  .bna-search-overlay .btn { width: 100%; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #2c5195 50%, var(--red) 50%);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer h4 {
  font-size: 14px; font-weight: 700;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 2px;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; }
.footer a { color: rgba(255,255,255,1); font-size: 16px; }
.footer a:hover { color: var(--red-light); }
.footer__logo { display: inline-block; margin-bottom: 16px; }
.footer__logo img {
  height: 112px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 1;
  padding: 10px 14px;
  border-radius: 2px;
}
.footer__tagline { font-size: 14px; line-height: 1.55; margin: 0 0 20px; color: rgba(255,255,255,1) !important; font-style: italic; }
.footer__sub-copy { font-size: 16px; line-height: 1.55; margin: 0 0 12px; color: rgba(255,255,255,1)!important; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__nowrap li { white-space: nowrap; }
.footer__nl-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.footer__nl-form input { min-width: 0; }
.footer__nl-form input[name="first_name"] { flex: 1 1 100%; }
.footer__nl-form input[name="email"] { flex: 1 1 60%; }
.footer__nl-form .btn { flex: 0 0 auto; }
.footer__nl-form input {
  flex: 1;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}
.footer__nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__nl-form input:focus { outline: none; border-color: var(--red); }
.footer__legal {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: rgba(255,255,255,1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer__legal a { color: rgba(255,255,255,0.5); font-size: 11px; }

/* ============================================================
   NEWSLETTER FORM (shared)
============================================================ */
.nl-form { display: flex; gap: 8px; }
.nl-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
}
.nl-form input:focus { outline: none; border-color: var(--navy); }

/* ============================================================
   HERO REGION (.hero) — homepage AND archive page top
============================================================ */
.hero { padding: 32px 0 10px; }
.hero__grid {
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 40px;
}

/* Stacked rail card (left and right rails) */
.profile-card {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.profile-card:first-of-type { padding-top: 0; }
.profile-card:last-of-type { border-bottom: none; }
.profile-card .ph {
  aspect-ratio: 16 / 10;
  margin-bottom: 10px;
  border-radius: var(--radius);
}
.profile-card .cat {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--red);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 4px;
}
.profile-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.1px;
  margin: 0 0 6px;
}
.profile-card:hover h3 { color: var(--red); }

/* Top story (center column) */
.top-story { text-align: center; border-bottom: 1px solid var(--line); }
.top-story .eyebrow { margin-bottom: 0; }
.top-story__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.top-story__header .cat-tag { margin-bottom: 0; }
.top-story h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 18px;
}
.top-story h2 a { color: inherit; }
.top-story h2 a:hover { color: var(--red); }
.top-story .ph { aspect-ratio: 16 / 9; margin-bottom: 16px; position: relative; border-radius: var(--radius); }
.top-story__link { display: block; color: inherit; text-decoration: none; transition: opacity .15s ease; }
.top-story__link:hover { opacity: 0.92; }
.top-story__link .ph { margin-bottom: 16px; }

/* Image-only link wrappers used in card lead + hero secondaries + ad cards.
   Make the anchor a block container, drop the underline, fade on hover. */
.sec__lead-media,
.secondary__media,
.ad-card__media-link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: opacity .15s ease;
}
.sec__lead-media:hover,
.secondary__media:hover,
.ad-card__media-link:hover {
	opacity: 0.92;
}
.top-story__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}
.top-story .lede {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto 14px;
  max-width: 640px;
  padding: 0 15px;
}

/* Hero responsive */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 200px 1fr 250px; gap: 28px; }
  .top-story h2 { font-size: 40px; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__left, .hero__right { max-width: 100%; }
  /* When the hero stacks, surface the Top Story first so readers see the
     lead article before the Editor's Picks and Trending rails. */
  .hero__center { order: 1; }
  .hero__left   { order: 2; }
  .hero__right  { order: 3; }
}
@media (max-width: 760px) {
  .top-story h2 { font-size: 28px; letter-spacing: -0.4px; line-height: 1.18; }
  .top-story .lede { font-size: 15px; }
  .sec {
    padding-bottom: 0 !important;
  }
  /* Hide the small "→" after "See all" links on mobile. */
  .sec__head a::after { display: none !important; }
  .ways {
    padding: 40px 0 50px !important;
    margin-top: 30px;
  }
  .eyebrow {
    padding: 12px;
  }
  .ways__head, .ways__grid {
     padding: 0 !important;
  }
}

/* ============================================================
   SECTION ROW (.sec) — used by homepage section template-parts
   AND by archive.php to keep visual continuity.
============================================================ */
.sec { padding: 44px 0; }
.sec__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 26px;
  position: relative;
}
.sec__head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.sec__head h2 {
  font-size: 14px; font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
.sec__head a {
  font-size: 14px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sec__head a::after {
  content: ' →';
  display: inline;
}
.sec__head a:hover { color: var(--red); }

.sec__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.sec__col--lead {
  padding-right: 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.sec__lead {
  display: block;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.sec__lead .ph { height: 220px; aspect-ratio: auto; margin-bottom: 14px; border-radius: var(--radius); }
.sec__lead h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}
.sec__lead h3 a { color: inherit; }
.sec__lead h3 a:hover { color: var(--red); }
.sec__lead p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 0 12px; }

.sec__col { display: flex; flex-direction: column; gap: 0; }
.sec__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  text-decoration: none;
}
.sec__item:first-child { padding-top: 0; }
.sec__item:last-child { border-bottom: none; }
.sec__item--hero .ph { height: 220px; aspect-ratio: auto; margin-bottom: 16px; border-radius: var(--radius); }
.sec__item:not(.sec__item--hero) {
  display: grid;
  grid-template-columns: 86px 1fr;
  column-gap: 16px;
  align-items: center;
}
.sec__item:not(.sec__item--hero) > .ph {
  width: 86px;
  height: 86px;
  aspect-ratio: 1;
  margin: 0;
  grid-row: 1 / span 3;
  align-self: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.sec__item h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.1px;
  margin: 0 0 4px;
}
.sec__item:hover h3 { color: var(--red); }
.sec__item p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 0 8px; }

/* Section row responsive */
@media (max-width: 960px) {
  .sec__body { grid-template-columns: 1fr; }
  .sec__col--lead { padding-right: 0; border-right: none; padding-bottom: 20px; }
  .sec__lead .ph, .sec__item--hero .ph { height: 200px; }
}
@media (max-width: 760px) {
  .sec__lead h3 { font-size: 22px; }
  .sec__lead .ph, .sec__item--hero .ph { height: 180px; }
}

/* ============================================================
   .sec--archive — flat 3-col grid used by archive.php / search.php
   3 equal columns, each stacking .sec__lead cards.
============================================================ */
.sec--archive .sec__body {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sec--archive .sec__col {
  display: flex;
  flex-direction: column;
}
.sec--archive .sec__lead + .sec__lead { padding-top: 18px; }
.sec--archive .sec__lead:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .sec--archive .sec__body { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sec--archive .sec__body { grid-template-columns: 1fr; }
}

/* ============================================================
   STATIC PAGES (page.php)
============================================================ */

.bna-page__header { padding: 28px 0 18px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.bna-page__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  max-width: var(--container);
  padding: 0 24px;
}
.bna-page__content { max-width: 760px; margin: 0 auto; padding: 0 24px; font-size: 17px; line-height: 1.65; color: var(--body); }
.bna-page__content p { margin: 0 0 1.2em; }
.bna-page__content h2 { font-size: 26px; font-weight: 800; color: var(--ink); margin: 1.6em 0 0.5em; line-height: 1.2; }
.bna-page__content h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 1.4em 0 0.4em; }
.bna-page__content a { color: var(--red); text-decoration: underline; }
.bna-page__content a:hover { color: var(--red-dark); }
.bna-page__content ul, .bna-page__content ol { margin: 0 0 1.2em 1.4em; }
.bna-page__content li { margin-bottom: 0.4em; }
.bna-page__content img { max-width: 100%; height: auto; border-radius: 4px; margin: 1.5em 0; }

/* When a page leads with a hero shortcode (profile form), the page wrapper
   should be flush — the shortcode owns its own padding. */
.bna-page__article > .bna-page__content:first-child { max-width: none; padding: 0; }

/* ============================================================
   EVENTS — single & archive
============================================================ */
.bna-event { padding: 0 0 56px; }

/* Single hero */
.bna-event__hero {
  background: var(--bg);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.bna-event__hero .container { max-width: 880px; }
.bna-event__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  background: var(--red-tint);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.bna-event__date {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 12px;
}
.bna-event__title {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
}
.bna-event__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}
.bna-event__loc, .bna-event__format {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bna-event__cta { display: inline-block; }

.bna-event__featured {
  margin: 36px auto 0;
  max-width: var(--container);
  padding: 0 24px;
}
.bna-event__featured-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.bna-event__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 16px;
  max-width: 1100px;
}
.bna-event__content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
}
.bna-event__content p { margin: 0 0 1.2em; }
.bna-event__content a { color: var(--red); text-decoration: underline; }
.bna-event__content h2 { font-size: 24px; font-weight: 800; color: var(--ink); margin: 1.6em 0 0.5em; }
.bna-event__content h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 1.4em 0 0.4em; }
.bna-event__content ul,
.bna-event__content ol { margin: 0 0 1.2em 1.4em; }

.bna-event__sidebar { position: sticky; top: 80px; align-self: start; }
.bna-event__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 24px 22px;
  border-radius: var(--radius);
}
.bna-event__card h2 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin: 0 0 14px;
}
.bna-event__card dl { margin: 0; display: grid; gap: 12px; }
.bna-event__card dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.bna-event__card dd {
  margin: 4px 0 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.bna-event__card dd a { color: var(--red); text-decoration: underline; }

/* More upcoming events strip on single event page */
.bna-event__more {
  background: var(--bg);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.bna-event__more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.bna-event__more-grid .event {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.bna-event__more-grid .event:hover { border-color: #c5cdd6; box-shadow: var(--shadow-md); }

/* Events archive */
.bna-events-archive { padding: 0 0 32px; }
.bna-events-featured { padding: 36px 0 0; }
.bna-events-featured .event-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  border: none;
}
.bna-events-featured .event-featured__media .ph,
.bna-events-featured .event-featured__media {
  height: 360px;
  border-radius: var(--radius);
}

.bna-events-list { padding: 36px 0; }
.bna-events-list__month {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  max-width: var(--container);
  padding-left: 24px;
}
.bna-events-list__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: var(--container);
  margin: 0 auto 16px;
  padding: 0 24px;
}
.bna-events-list .event { background: var(--white); border-bottom: 1px solid var(--line); padding: 14px 0; }
.bna-events-list .event:hover h3 { color: var(--red); }

.event__format-pill {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  background: var(--bg-2);
  padding: 2px 7px;
  border-radius: 2px;
}

/* CTA wrap on archive */
.events-row__cta-wrap { padding: 28px 0; }
.events-row__cta-wrap .events-row__cta {
  max-width: var(--container);
  margin: 0 auto;
}

/* Past events */
.bna-events-past { padding: 24px 0 56px; max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.bna-events-past summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.bna-events-past summary::-webkit-details-marker { display: none; }
.bna-events-past summary::before {
  content: '▸';
  display: inline-block;
  margin-right: 8px;
  transition: transform .12s;
}
.bna-events-past details[open] summary::before { transform: rotate(90deg); }
.bna-events-past .event { opacity: 0.7; }
.bna-events-past .event__date { background: var(--muted); }

@media (max-width: 960px) {
  .bna-event__body { grid-template-columns: 1fr; gap: 32px; }
  .bna-event__sidebar { position: static; }
  .bna-events-featured .event-featured { grid-template-columns: 1fr; }
  .bna-events-featured .event-featured__media,
  .bna-events-featured .event-featured__media .ph { height: 240px; }
  .bna-events-list__group { grid-template-columns: 1fr; }
  .bna-event__more-grid { grid-template-columns: 1fr; }
}

/* AJAX submit status — used by both nl-form and footer__nl-form */
.bna-nl-status {
  font-size: 13px;
  margin-top: 10px;
  min-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.bna-nl-status.is-success { color: #1e7e3c; }
.bna-nl-status.is-error   { color: var(--red); }
.nl-cta .bna-nl-status.is-success { color: #6dd393; }
.nl-cta .bna-nl-status.is-error   { color: var(--red-light); }
.footer .bna-nl-status.is-success { color: #6dd393; }
.footer .bna-nl-status.is-error   { color: var(--red-light); }

/* Submit-button busy state */
.nl-form .btn.is-loading,
.footer__nl-form .btn.is-loading { opacity: 0.65; cursor: progress; }

/* ============================================================
   RESPONSIVE — header / nav / footer
============================================================ */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .masthead__follow { display: none; }
  .masthead__logo img { height: 72px; }
}
@media (max-width: 760px) {
  /* Mobile masthead: logo + subscribe CTA only — social icons move down
     to the navy nav bar (see .nav__social rule below). */
  .masthead__inner { grid-template-columns: 1fr auto; gap: 10px; }
  .masthead__left { display: none; }
  .ic-search { display: none; }
  .masthead__logo img { height: 58px; }
  .btn--two-line { padding: 9px 14px; }
  .btn--two-line .btn__line1 { font-size: 11px; letter-spacing: 1px; }
  .btn--two-line .btn__line2 { font-size: 12px; letter-spacing: 1.5px; }
  .masthead__tagline { font-size: 15px; padding: 0 16px 12px; }

  /* Mobile-only: social icons go LEFT on the navy nav bar,
     menu toggle (with "Menu" / "Close" word) goes RIGHT. */
  .nav__inner { justify-content: space-between; }
  .nav__social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: auto;
  }
  .nav__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 8px;
    transition: color .12s ease;
  }
  
  .nav__social a:hover { color: var(--red-light); }
  .nav__social svg { width: 22px; height: 22px; }

  .nav__list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 0;
    z-index: 60;
  }
  .nav__list.open { display: flex; }
  .nav__item > a { padding: 14px 24px; border-bottom: none; }
  .nav__toggle { display: inline-flex; }
  .nav__caret { display: none; }
  .nav__submenu {
    display: block; position: static; background: transparent;
    min-width: 0; padding: 0 0 0 24px; border-top: none; box-shadow: none;
  }
  .nav__submenu a { padding: 10px 0; color: rgba(255,255,255,0.7); }
  .nav__submenu a:hover { background: transparent; color: var(--red-light); }

  .footer__grid { grid-template-columns: 1fr; }
}
