:root {
  --color-navy-950: #071526;
  --color-navy-900: #0b1f36;
  --color-navy-800: #123252;
  --color-red-700: #a51420;
  --color-red-600: #c21f2c;
  --color-charcoal: #171b21;
  --color-slate-700: #424b57;
  --color-slate-600: #5d6672;
  --color-slate-300: #c8cdd4;
  --color-slate-200: #dfe3e8;
  --color-slate-100: #eef1f4;
  --color-paper: #fffdf9;
  --color-white: #fff;
  --color-focus: #1769aa;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: .75rem;
  --font-size-sm: .875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.35rem;
  --font-size-xl: clamp(1.7rem, 3vw, 2.35rem);
  --font-size-2xl: clamp(2.15rem, 5vw, 4.5rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --radius-sm: .2rem;
  --radius-md: .4rem;
  --container-max: 82rem;
  --measure: 68ch;
  --shadow-menu: 0 14px 30px rgb(7 21 38 / 14%);
  --layer-skip: 1200;
  --layer-nav: 1030;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; overflow-x: hidden; background: var(--color-paper); color: var(--color-charcoal); font-family: var(--font-sans); font-size: var(--font-size-base); line-height: 1.6; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgb(165 20 32 / 50%); text-underline-offset: .16em; }
a:hover { color: var(--color-red-700); }
button, input, textarea { font: inherit; }
.container { max-width: var(--container-max); }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 3px; }
.skip-link { position: fixed; inset: 0 auto auto 1rem; z-index: var(--layer-skip); padding: .75rem 1rem; background: var(--color-white); color: var(--color-navy-950); font-weight: 700; transform: translateY(-130%); box-shadow: var(--shadow-menu); }
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--color-navy-950); color: #d9e0e8; font-size: var(--font-size-xs); letter-spacing: .02em; }
.utility-bar__inner { display: flex; min-height: 2rem; align-items: center; justify-content: space-between; }
.utility-weather { display: inline-flex; gap: .55rem; }
.utility-weather__label { color: #9eabb8; }
.site-header { position: relative; z-index: var(--layer-nav); background: var(--color-white); border-bottom: 1px solid var(--color-slate-300); }
.masthead { display: grid; min-height: 7rem; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-5); }
.wordmark { color: var(--color-navy-950); font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.35rem); font-weight: 700; letter-spacing: -.06em; line-height: .85; text-decoration: none; }
.wordmark span { color: var(--color-red-700); }
.wordmark:hover { color: var(--color-navy-950); }
.masthead__tagline { max-width: 16rem; margin: 0; color: var(--color-slate-600); font-family: var(--font-display); font-size: .95rem; font-style: italic; line-height: 1.35; }
.masthead__subscribe { justify-self: end; }
.primary-nav { border-top: 1px solid var(--color-slate-200); }
.primary-nav__inner { position: relative; display: flex; min-height: 3.25rem; align-items: stretch; gap: .15rem; overflow: visible; }
.primary-nav a, .primary-nav__dropdown { display: inline-flex; min-height: 44px; align-items: center; padding: .6rem .72rem; border: 0; background: transparent; color: var(--color-navy-900); font-size: .79rem; font-weight: 720; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.primary-nav a:hover, .primary-nav__dropdown:hover, .primary-nav a[aria-current="page"] { color: var(--color-red-700); }
.primary-nav a[aria-current="page"] { box-shadow: inset 0 -3px var(--color-red-700); }
.primary-nav__search { margin-left: auto; gap: .35rem; }
.primary-nav svg, .icon-button svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.primary-nav__local { position: static; }
.primary-nav__dropdown { gap: .35rem; cursor: pointer; }
.primary-nav__chevron { width: .9rem !important; height: .9rem !important; transition: transform 180ms ease; }
.primary-nav__dropdown[aria-expanded="true"] { color: var(--color-red-700); box-shadow: inset 0 -3px var(--color-red-700); }
.primary-nav__dropdown[aria-expanded="true"] .primary-nav__chevron { transform: rotate(180deg); }
.primary-nav .local-mega-menu { inset: calc(100% + 1px) 0 auto !important; width: 100%; min-width: 100%; max-height: min(68vh, 34rem); margin: 0; padding: 0; overflow-y: auto; transform: none !important; border: 1px solid var(--color-slate-200); border-top: 3px solid var(--color-red-700); border-radius: 0 0 var(--radius-md) var(--radius-md); background: var(--color-white); box-shadow: var(--shadow-menu); }
.local-mega-menu__layout { display: grid; grid-template-columns: minmax(13rem, .48fr) minmax(0, 1.52fr); }
.local-mega-menu__intro { padding: var(--space-6); background: var(--color-navy-950); color: var(--color-white); }
.local-mega-menu__eyebrow { margin: 0 0 var(--space-3); color: #ff9ca5; font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.local-mega-menu__title { max-width: 12ch; margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.25rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
.local-mega-menu__copy { max-width: 27ch; margin: var(--space-4) 0 0; color: #c9d1da; font-size: var(--font-size-sm); line-height: 1.55; }
.local-mega-menu__groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); padding: var(--space-6); }
.local-mega-menu__group h2 { margin: 0 0 var(--space-3); padding-bottom: var(--space-2); border-bottom: 1px solid var(--color-slate-300); font-size: var(--font-size-sm); letter-spacing: .09em; text-transform: uppercase; }
.primary-nav .local-mega-menu__region-link { min-height: 44px; margin: -.55rem 0 -.5rem; padding: .55rem 0 .5rem; color: var(--color-red-700); font-size: inherit; letter-spacing: inherit; text-transform: inherit; }
.primary-nav .local-mega-menu__region-link:hover { color: var(--color-navy-950); }
.local-mega-menu__cities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .15rem var(--space-4); margin: 0; padding: 0; list-style: none; }
.primary-nav .local-mega-menu__city { display: flex; min-height: 44px; justify-content: space-between; gap: var(--space-2); padding: .55rem .2rem; border-bottom: 1px solid var(--color-slate-100); color: var(--color-navy-900); font-size: var(--font-size-sm); font-weight: 650; letter-spacing: 0; line-height: 1.25; text-transform: none; white-space: normal; transition: background-color 180ms ease, color 180ms ease; }
.primary-nav .local-mega-menu__city > span:first-child { transition: transform 180ms ease; }
.primary-nav .local-mega-menu__city:hover { background: var(--color-slate-100); color: var(--color-red-700); }
.primary-nav .local-mega-menu__city:hover > span:first-child { transform: translateX(.25rem); }
.local-mega-menu__city-arrow { width: .45rem; height: .45rem; flex: 0 0 .45rem; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.icon-button { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--color-slate-200); border-radius: 50%; background: var(--color-white); color: var(--color-navy-900); }
.mobile-nav { max-width: 22rem; background: var(--color-paper); }
.wordmark--small { font-size: 2.1rem; }
.mobile-nav nav { display: grid; }
.mobile-nav nav a { min-height: 48px; padding: .7rem 0; border-bottom: 1px solid var(--color-slate-200); color: var(--color-navy-900); font-weight: 700; text-decoration: none; }
.mobile-nav__label { margin: 2rem 0 .25rem; color: var(--color-red-700); font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mobile-nav__locations { display: grid; gap: var(--space-5); padding-top: var(--space-3); }
.mobile-nav__region-name { margin: 0; color: var(--color-slate-600); font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobile-nav .mobile-nav__region-name a { min-height: 44px; padding: .45rem 0; border-bottom: 0; color: var(--color-red-700); }
.mobile-nav__cities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-4); }
.mobile-nav .mobile-nav__cities a { min-height: 48px; align-content: center; padding: .55rem 0; font-size: .9rem; line-height: 1.25; }

.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: .65rem 1.1rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-size: var(--font-size-sm); font-weight: 760; letter-spacing: .02em; text-decoration: none; }
.button--primary { background: var(--color-red-700); color: var(--color-white); }
.button--primary:hover { background: #86101a; color: var(--color-white); }
.button--secondary { border-color: var(--color-navy-900); color: var(--color-navy-900); }
.button--secondary:hover { background: var(--color-navy-900); color: var(--color-white); }
.button--light { background: var(--color-white); color: var(--color-navy-950); }
.eyebrow { margin: 0 0 var(--space-2); color: var(--color-red-700); font-size: var(--font-size-xs); font-weight: 820; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow--light { color: #ff9ca5; }
.message-stack { padding-top: var(--space-4); }
.site-message { padding: .8rem 1rem; border-left: 4px solid var(--color-navy-800); background: var(--color-slate-100); }
.site-message--success { border-color: #2e7d4e; }
.site-message--error { border-color: var(--color-red-700); }

.breaking-strip { background: var(--color-red-700); color: var(--color-white); }
.breaking-strip__inner { display: flex; min-height: 3.15rem; align-items: center; gap: var(--space-5); }
.breaking-strip strong { align-self: stretch; display: inline-flex; align-items: center; padding-right: var(--space-5); border-right: 1px solid rgb(255 255 255 / 35%); font-size: var(--font-size-xs); letter-spacing: .12em; text-transform: uppercase; }
.breaking-strip__stories { display: flex; min-width: 0; gap: var(--space-6); overflow: hidden; }
.breaking-strip a { overflow: hidden; font-size: var(--font-size-sm); font-weight: 650; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.breaking-strip a:hover { color: var(--color-white); text-decoration: underline; }

.homepage { padding-block: var(--space-6) var(--space-8); }
.top-news { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(19rem, .85fr); gap: var(--space-6); padding-bottom: var(--space-7); border-bottom: 1px solid var(--color-slate-300); }
.lead-story__media, .story-card__media-link { display: block; text-decoration: none; }
.story-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--color-slate-200); }
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
a:hover .story-media img { transform: scale(1.018); }
.story-media__fallback { display: grid; width: 100%; height: 100%; place-items: center; border-bottom: 4px solid var(--color-red-700); background: var(--color-navy-900); color: rgb(255 255 255 / 50%); font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.04em; }
.lead-story__body { padding-top: var(--space-5); }
.story-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0 0 .7rem; color: var(--color-red-700); font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-meta a { text-decoration: none; }
.status-label { padding: .18rem .38rem; background: var(--color-red-700); color: var(--color-white); font-size: .66rem; }
.lead-story h2 { max-width: 19ch; margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.03; }
.lead-story h2 a, .story-card h3 a { text-decoration: none; }
.lead-story__body > p:not(.story-meta) { max-width: 59ch; margin: var(--space-4) 0 var(--space-3); color: var(--color-slate-700); font-size: var(--font-size-md); }
.lead-story time, .story-card time { color: var(--color-slate-600); font-size: var(--font-size-xs); }
.top-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: var(--space-5); }
.story-card { min-width: 0; }
.story-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.24rem; font-weight: 700; letter-spacing: -.018em; line-height: 1.2; }
.story-card__body { padding-top: var(--space-3); }
.story-card__summary { margin: .55rem 0; color: var(--color-slate-700); font-size: var(--font-size-sm); line-height: 1.5; }
.story-card--horizontal { display: grid; grid-template-columns: minmax(9rem, 33%) 1fr; gap: var(--space-4); padding-bottom: var(--space-5); border-bottom: 1px solid var(--color-slate-200); }
.story-card--horizontal .story-card__body { padding-top: 0; }
.story-card--horizontal h3 { font-size: clamp(1.18rem, 2vw, 1.55rem); }
.story-card--horizontal .story-media { height: 100%; min-height: 8.5rem; }
.story-card--text { padding-block: var(--space-4); border-bottom: 1px solid var(--color-slate-200); }
.developing-band { display: grid; grid-template-columns: 13rem 1fr; gap: var(--space-6); margin-block: var(--space-7); padding: var(--space-5) var(--space-6); background: var(--color-navy-900); color: var(--color-white); }
.developing-band h2 { margin: 0; font-family: var(--font-display); font-size: 1.7rem; }
.developing-band > div:last-child { display: grid; }
.developing-band a { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: var(--space-4); border-bottom: 1px solid rgb(255 255 255 / 18%); font-weight: 650; text-decoration: none; }
.developing-band a:last-child { border: 0; }
.developing-band a:hover { color: #ffb5bc; }
.developing-band time { color: #b8c2ce; font-size: var(--font-size-xs); white-space: nowrap; }
.homepage-section { padding-block: var(--space-7); border-bottom: 1px solid var(--color-slate-300); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-5); }
.section-header h2 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-xl); font-weight: 700; letter-spacing: -.025em; }
.section-link { color: var(--color-navy-800); font-size: var(--font-size-sm); font-weight: 750; text-decoration: none; }
.section-link span { color: var(--color-red-700); }
.four-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5); }
.editor-picks { background: var(--color-slate-100); margin-inline: calc(50% - 50vw); padding-inline: max(1rem, calc((100vw - var(--container-max)) / 2)); }
.editor-picks__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); }
.latest-and-read { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: var(--space-7); }
.latest-list, .search-results { display: grid; gap: var(--space-5); }
.most-read { position: sticky; top: var(--space-5); align-self: start; padding: var(--space-5); border-top: 5px solid var(--color-red-700); background: var(--color-navy-900); color: var(--color-white); }
.most-read h2 { margin: 0 0 var(--space-4); font-family: var(--font-display); font-size: 1.85rem; }
.most-read ol { margin: 0; padding: 0; list-style: none; }
.most-read li { display: grid; grid-template-columns: 2rem 1fr; gap: var(--space-3); padding: var(--space-4) 0; border-top: 1px solid rgb(255 255 255 / 18%); }
.most-read li > span { color: #ff8892; font-family: var(--font-display); font-size: 1.25rem; }
.most-read a { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.3; text-decoration: none; }
.most-read a:hover { color: #ffb5bc; }
.most-read li p { margin: .35rem 0 0; color: #abb8c4; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.page-shell { min-height: 55vh; padding-block: var(--space-7) var(--space-8); }
.listing-header { max-width: 56rem; margin-bottom: var(--space-6); padding-bottom: var(--space-5); border-bottom: 4px solid var(--color-navy-900); }
.listing-header h1 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-2xl); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.listing-header > p:last-child:not(.eyebrow) { max-width: var(--measure); margin: var(--space-4) 0 0; color: var(--color-slate-700); font-size: var(--font-size-md); }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-7) var(--space-5); }
.pagination-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-4); margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid var(--color-slate-300); }
.pagination-link { min-height: 44px; align-items: center; color: var(--color-navy-800); font-weight: 750; text-decoration: none; }
.pagination-link:last-child { justify-self: end; }
.pagination-status { color: var(--color-slate-600); font-size: var(--font-size-sm); }
.empty-state { max-width: 44rem; padding: var(--space-7); border: 1px solid var(--color-slate-300); border-left: 5px solid var(--color-red-700); background: var(--color-white); }
.empty-state--home { margin-block: var(--space-6) var(--space-7); }
.empty-state h1, .empty-state h2 { font-family: var(--font-display); font-size: var(--font-size-xl); }
.empty-state p { color: var(--color-slate-700); }

.search-form { max-width: 48rem; margin-bottom: var(--space-5); }
.search-form label { display: block; margin-bottom: var(--space-2); font-size: var(--font-size-sm); font-weight: 750; }
.search-form > div { display: flex; gap: var(--space-2); }
.search-form input { min-width: 0; flex: 1; min-height: 48px; padding: .65rem .8rem; border: 1px solid var(--color-slate-600); border-radius: var(--radius-sm); }
.result-count, .search-prompt { margin-bottom: var(--space-6); color: var(--color-slate-600); }
.search-results { max-width: 58rem; }

.article-page { padding-bottom: var(--space-7); }
.article-container { max-width: 82rem; }
.breadcrumbs { padding-block: var(--space-4); border-bottom: 1px solid var(--color-slate-200); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; color: var(--color-slate-600); font-size: var(--font-size-xs); list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: var(--color-slate-300); }
.breadcrumbs a { text-decoration: none; }
.article-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr); align-items: stretch; margin-block: var(--space-5) var(--space-7); border: 1px solid var(--color-slate-300); background: var(--color-white); box-shadow: 0 22px 50px rgb(7 21 38 / 8%); }
.article-hero--text-only { grid-template-columns: minmax(0, 58rem); justify-content: center; border-top: 5px solid var(--color-red-700); }
.article-hero__content { display: flex; min-height: clamp(27rem, 44vw, 35rem); flex-direction: column; justify-content: center; padding: clamp(1.5rem, 4vw, 3.5rem); border-left: 1px solid var(--color-slate-200); }
.article-hero--text-only .article-hero__content { min-height: 0; border-left: 0; }
.article-hero__media { order: -1; min-width: 0; background: var(--color-slate-100); }
.article-hero__media .story-media { height: 100%; min-height: clamp(24rem, 44vw, 35rem); aspect-ratio: auto; }
.article-hero__media img, .article-hero__media .story-media__fallback { width: 100%; height: 100%; object-fit: cover; }
.article-kicker { margin-bottom: var(--space-3); }
.article-status-row { display: flex; flex-wrap: wrap; gap: var(--space-2); min-height: 2rem; margin-bottom: var(--space-3); }
.article-status-row:empty { display: none; }
.article-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 2.7vw, 2.95rem); font-weight: 700; letter-spacing: 0; line-height: 1.08; }
.article-dek { max-width: 44rem; margin: var(--space-4) 0; color: var(--color-slate-700); font-family: var(--font-display); font-size: clamp(1.08rem, 1.65vw, 1.45rem); line-height: 1.45; }
.article-thread-link { margin: 0 0 var(--space-4); color: var(--color-slate-700); font-size: var(--font-size-sm); }
.article-thread-link a { color: var(--color-red-700); font-weight: 760; text-decoration: none; }
.byline { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--space-3) var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--color-slate-300); font-size: var(--font-size-sm); }
.byline > div:last-child { display: flex; flex-wrap: wrap; gap: .4rem; color: var(--color-slate-600); }
.byline a { font-weight: 750; }
.article-figure { margin: 0; }
.article-figure figcaption { padding: .65rem .8rem; color: var(--color-slate-600); font-size: var(--font-size-xs); line-height: 1.45; }
.article-figure figcaption span { font-weight: 700; }
.article-main-grid { display: grid; grid-template-columns: 5.75rem minmax(0, 43rem) minmax(18rem, 22rem); gap: clamp(1.25rem, 3vw, 2rem); align-items: start; padding-top: var(--space-2); }
.article-rail { position: sticky; top: 6rem; display: grid; align-self: start; gap: var(--space-2); padding-top: var(--space-2); color: var(--color-slate-600); font-size: var(--font-size-xs); text-transform: uppercase; }
.article-rail > span { font-weight: 800; letter-spacing: .1em; }
.article-share-icon { display: inline-flex; width: 2.55rem; min-height: 2.55rem; align-items: center; justify-content: center; border: 1px solid var(--color-slate-300); border-radius: 50%; background: var(--color-white); color: var(--color-navy-800); text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.article-share-icon svg { width: 1.12rem; height: 1.12rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.article-share-icon:hover { border-color: var(--color-red-700); background: #fff5f6; color: var(--color-red-700); transform: translateY(-1px); }
.article-share-icon[aria-label="Share on Facebook"] svg { fill: currentColor; stroke: none; }
.article-share-icon[aria-label="Share on X"] svg { stroke-width: 1.9; }
.article-share-icon.is-copied { border-color: var(--color-red-700); background: var(--color-red-700); color: var(--color-white); }
.article-share-url { display: block; max-width: 5.75rem; margin-top: var(--space-2); overflow: hidden; padding: .55rem .6rem; border: 1px solid var(--color-slate-300); border-radius: var(--radius-sm); background: var(--color-white); color: var(--color-slate-700); font-size: .68rem; font-weight: 650; line-height: 1.25; text-decoration: none; text-overflow: ellipsis; text-transform: none; white-space: nowrap; }
.article-share-url:hover { border-color: var(--color-red-700); color: var(--color-red-700); }
.article-share-url.is-copied { border-color: var(--color-red-700); background: #fff5f6; color: var(--color-red-700); }
.article-content-wrap { min-width: 0; }
.article-content { min-width: 0; font-family: var(--font-display); font-size: clamp(1.08rem, 1.5vw, 1.22rem); line-height: 1.78; }
.article-content > p { margin: 0 0 1.45em; }
.article-content > p:first-child::first-letter { float: left; margin: .1em .12em 0 0; color: var(--color-navy-900); font-size: 4.4em; font-weight: 700; line-height: .72; }
.article-content h2 { margin: 2em 0 .65em; font-size: 1.75rem; line-height: 1.2; }
.article-content h3 { margin: 1.7em 0 .6em; font-size: 1.35rem; }
.article-content blockquote { margin: 1.8em 0; padding: .2rem 0 .2rem var(--space-5); border-left: 4px solid var(--color-red-700); color: var(--color-navy-800); font-size: 1.3em; font-style: italic; }
.article-content li { margin-bottom: .55rem; }
.article-listen-box { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); padding: var(--space-4); border: 1px solid var(--color-slate-300); border-left: 4px solid var(--color-red-700); background: var(--color-white); font-family: var(--font-sans); }
.article-listen-box p { margin: 0; color: var(--color-slate-600); font-size: var(--font-size-sm); }
.article-listen-box__eyebrow { color: var(--color-navy-950) !important; font-size: var(--font-size-xs) !important; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-listen-button { display: inline-flex; min-height: 44px; align-items: center; gap: .45rem; padding: .6rem 1rem; border: 1px solid var(--color-navy-950); border-radius: 999px; background: var(--color-navy-950); color: var(--color-white); font-weight: 820; }
.article-listen-button:hover { background: var(--color-red-700); border-color: var(--color-red-700); }
.article-section-eyebrow { margin: 0 0 var(--space-2); color: var(--color-red-700); font-size: var(--font-size-xs); font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.source-box { margin-top: var(--space-7); padding: var(--space-5); border: 1px solid var(--color-slate-300); border-top: 4px solid var(--color-red-700); background: var(--color-white); font-family: var(--font-sans); font-size: var(--font-size-sm); }
.source-box h2 { margin: 0 0 var(--space-3); color: var(--color-navy-950); font-family: var(--font-display); font-size: 1.45rem; letter-spacing: -.02em; }
.source-box ul { display: grid; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.source-box li { display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: var(--space-3); align-items: start; }
.source-box__icon { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--color-slate-100); color: var(--color-red-700); font-weight: 900; }
.source-box a { color: var(--color-navy-900); font-weight: 760; text-decoration: none; }
.source-box span:not(.source-box__icon) { display: block; color: var(--color-slate-600); }
.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-top: var(--space-5); font-family: var(--font-sans); }
.article-tags > span:first-child { color: var(--color-slate-600); font-size: var(--font-size-xs); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-tags a, .article-tag-static { padding: .35rem .65rem; border: 1px solid var(--color-slate-300); border-radius: 999px; color: var(--color-navy-900); font-size: var(--font-size-xs); font-weight: 760; text-decoration: none; }
.article-tags a:hover { border-color: var(--color-red-700); color: var(--color-red-700); }
.article-sidebar { min-width: 0; }
.article-sidebar__sticky { position: sticky; top: 6rem; display: grid; gap: var(--space-4); }
.context-card { padding: var(--space-4); border: 1px solid var(--color-slate-300); border-top: 4px solid var(--color-red-700); background: var(--color-white); }
.context-card h2 { margin: 0 0 var(--space-3); color: var(--color-navy-950); font-family: var(--font-display); font-size: 1.45rem; letter-spacing: -.02em; line-height: 1.12; }
.context-card ul, .context-card ol { display: grid; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.context-card--key-points li { position: relative; padding-left: 1.25rem; color: var(--color-navy-900); font-size: var(--font-size-sm); font-weight: 650; line-height: 1.45; }
.context-card--key-points li::before { content: ""; position: absolute; left: 0; top: .58em; width: .42rem; height: .42rem; border-radius: 50%; background: var(--color-red-700); }
.context-card--timeline li { display: grid; gap: .25rem; padding-left: var(--space-3); border-left: 2px solid var(--color-slate-300); }
.context-card--timeline time { color: var(--color-red-700); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.context-card--timeline a { color: var(--color-navy-950); font-family: var(--font-display); font-weight: 760; line-height: 1.2; text-decoration: none; }
.context-card--timeline p { margin: 0; color: var(--color-slate-600); font-size: var(--font-size-xs); line-height: 1.45; }
.context-card__link { display: inline-flex; min-height: 44px; align-items: center; margin-top: var(--space-3); color: var(--color-red-700); font-weight: 820; text-decoration: none; }
.related-mini-list { display: grid; gap: var(--space-3); }
.related-mini-card { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: var(--space-3); align-items: center; }
.related-mini-card__media .story-media { aspect-ratio: 1 / .76; }
.related-mini-card__media img, .related-mini-card__media .story-media__fallback { width: 100%; height: 100%; object-fit: cover; }
.related-mini-card h3 { margin: 0; font-family: var(--font-display); font-size: 1rem; line-height: 1.18; }
.related-mini-card h3 a { text-decoration: none; }
.related-mini-card time { color: var(--color-slate-600); font-size: var(--font-size-xs); }
.more-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }
.more-category-grid .story-card--horizontal { grid-template-columns: 7rem minmax(0, 1fr); gap: var(--space-3); padding: var(--space-3); border: 1px solid var(--color-slate-300); background: var(--color-white); }
.more-category-grid .story-card--horizontal .story-media { min-height: 6.25rem; }
.article-audio-player { position: fixed; right: max(1rem, calc((100vw - var(--container-max)) / 2)); bottom: 1rem; z-index: 1040; display: grid; width: min(42rem, calc(100vw - 2rem)); grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-4); align-items: center; padding: var(--space-4); border: 1px solid rgb(255 255 255 / 12%); border-top: 4px solid var(--color-red-700); background: var(--color-navy-950); color: var(--color-white); box-shadow: 0 22px 60px rgb(7 21 38 / 30%); transform: translateY(120%); transition: transform 180ms ease; }
.article-audio-player.is-open { transform: translateY(0); }
.article-audio-player.is-minimized { grid-template-columns: 1fr auto; width: min(24rem, calc(100vw - 2rem)); }
.article-audio-player.is-minimized .article-audio-current, .article-audio-player.is-minimized .article-audio-progress, .article-audio-player.is-minimized .article-audio-volume, .article-audio-player.is-minimized [data-tts-prev], .article-audio-player.is-minimized [data-tts-next], .article-audio-player.is-minimized [data-tts-stop] { display: none; }
.article-audio-meta { color: #ffb5bc; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-audio-current { max-width: 42ch; margin: .15rem 0 .55rem; overflow: hidden; color: var(--color-white); font-size: var(--font-size-sm); font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.article-audio-progress { height: .25rem; overflow: hidden; border-radius: 999px; background: rgb(255 255 255 / 16%); }
.article-audio-progress-bar { display: block; width: 0; height: 100%; border-radius: inherit; background: #ff9ca5; }
.article-audio-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: end; gap: .35rem; }
.article-audio-button { display: inline-flex; min-width: 2.2rem; min-height: 2.2rem; align-items: center; justify-content: center; gap: .25rem; border: 1px solid rgb(255 255 255 / 20%); border-radius: 999px; background: rgb(255 255 255 / 8%); color: var(--color-white); font-size: var(--font-size-sm); font-weight: 760; }
.article-audio-toggle { padding-inline: .8rem; background: var(--color-white); color: var(--color-navy-950); }
.article-audio-volume { display: inline-flex; align-items: center; gap: .35rem; color: #c9d1da; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.article-audio-volume input { width: 4.25rem; accent-color: #ff9ca5; }
.related-section { padding-block: var(--space-7); border-top: 1px solid var(--color-slate-300); background: var(--color-slate-100); }

.thread-page { padding-bottom: var(--space-8); }
.thread-header { display: grid; grid-template-columns: minmax(0, 1fr) 16rem; gap: var(--space-7); padding-block: var(--space-7); }
.thread-header h1 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-2xl); letter-spacing: -.04em; line-height: 1; }
.thread-header > div > p:last-child { max-width: var(--measure); color: var(--color-slate-700); font-family: var(--font-display); font-size: var(--font-size-md); }
.thread-header dl { margin: 0; padding: var(--space-4); border-top: 4px solid var(--color-red-700); background: var(--color-slate-100); }
.thread-header dl div { padding: .5rem 0; border-bottom: 1px solid var(--color-slate-300); }
.thread-header dt { color: var(--color-slate-600); font-size: var(--font-size-xs); letter-spacing: .08em; text-transform: uppercase; }
.thread-header dd { margin: 0; font-weight: 700; }
.timeline { max-width: 55rem; padding-block: var(--space-6); }
.timeline ol { margin: 0 0 0 .45rem; padding: 0 0 0 2rem; border-left: 2px solid var(--color-slate-300); list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 10rem 1fr; gap: var(--space-5); padding: 0 0 var(--space-6); }
.timeline li::before { position: absolute; top: .35rem; left: -2.45rem; width: .8rem; height: .8rem; border: 3px solid var(--color-paper); border-radius: 50%; background: var(--color-red-700); box-shadow: 0 0 0 1px var(--color-red-700); content: ""; }
.timeline time { color: var(--color-slate-600); font-size: var(--font-size-xs); }
.timeline h3 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; }
.timeline h3 a { text-decoration: none; }
.timeline p { margin: .45rem 0 0; color: var(--color-slate-700); }

.information-page { max-width: 68rem; padding-block: var(--space-7) var(--space-8); }
.information-page > header { max-width: 56rem; padding-bottom: var(--space-6); border-bottom: 4px solid var(--color-navy-900); }
.information-page > header h1 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-2xl); letter-spacing: -.04em; line-height: 1; }
.information-page > header > p:last-of-type { max-width: var(--measure); color: var(--color-slate-700); font-family: var(--font-display); font-size: var(--font-size-lg); }
.information-page > header time { color: var(--color-slate-600); font-size: var(--font-size-xs); }
.prose { max-width: var(--measure); padding-top: var(--space-6); }
.prose h2 { margin: 2.2rem 0 .75rem; font-family: var(--font-display); font-size: 1.75rem; }
.prose h3 { margin-top: 1.8rem; font-family: var(--font-display); font-size: 1.3rem; }
.prose p, .prose li { color: var(--color-slate-700); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem); gap: var(--space-7); }
.contact-form { margin-top: var(--space-6); padding: var(--space-5); border: 1px solid var(--color-slate-300); background: var(--color-white); }
.form-field { margin-bottom: var(--space-4); }
.form-field label { display: block; margin-bottom: .35rem; font-size: var(--font-size-sm); font-weight: 750; }
.form-field input, .form-field textarea { width: 100%; min-height: 44px; padding: .65rem .75rem; border: 1px solid var(--color-slate-600); border-radius: var(--radius-sm); background: var(--color-white); }
.form-field textarea { resize: vertical; }
.form-field--error input, .form-field--error textarea { border: 2px solid var(--color-red-700); }
.form-error { margin: .3rem 0 0; color: var(--color-red-700); font-size: var(--font-size-sm); font-weight: 700; }
.form-alert { margin-bottom: var(--space-4); padding: .75rem; border-left: 4px solid var(--color-red-700); background: #fff1f2; }
.form-note, .form-help { color: var(--color-slate-600); font-size: var(--font-size-xs); }

.error-page { min-height: 60vh; padding-block: clamp(5rem, 12vw, 10rem); }
.error-code { margin: 0; color: var(--color-red-700); font-size: var(--font-size-sm); font-weight: 850; letter-spacing: .14em; }
.error-page h1 { max-width: 18ch; font-family: var(--font-display); font-size: var(--font-size-2xl); letter-spacing: -.04em; }
.error-page > p:not(.error-code) { max-width: 55ch; color: var(--color-slate-700); font-size: var(--font-size-md); }
.error-page > div { display: flex; gap: var(--space-3); }

.newsletter { background: var(--color-red-700); color: var(--color-white); }
.newsletter__inner { display: grid; grid-template-columns: 1fr minmax(22rem, .8fr); align-items: center; gap: var(--space-7); padding-block: var(--space-6); }
.newsletter h2 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-xl); }
.newsletter p:not(.eyebrow) { margin: .35rem 0 0; color: #ffe4e7; }
.newsletter__form { display: flex; gap: var(--space-2); }
.newsletter__form input[type="email"] { min-width: 0; flex: 1; min-height: 46px; padding: .65rem .75rem; border: 1px solid var(--color-white); border-radius: var(--radius-sm); }
.site-footer { background: var(--color-navy-950); color: #c9d1da; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--space-7); padding-block: var(--space-7); }
.wordmark--footer { color: var(--color-white); font-size: 2.5rem; }
.wordmark--footer:hover { color: var(--color-white); }
.footer-tagline { max-width: 20rem; color: #9eabb8; font-family: var(--font-display); font-style: italic; }
.footer-main nav { display: grid; align-content: start; gap: .5rem; }
.footer-main nav h2 { margin: 0 0 .6rem; color: var(--color-white); font-size: var(--font-size-sm); letter-spacing: .08em; text-transform: uppercase; }
.footer-main nav a { color: #c9d1da; font-size: var(--font-size-sm); text-decoration: none; }
.footer-main nav a:hover { color: var(--color-white); text-decoration: underline; }
.footer-legal { display: flex; justify-content: space-between; gap: var(--space-4); padding-block: var(--space-4); border-top: 1px solid rgb(255 255 255 / 15%); color: #8996a3; font-size: var(--font-size-xs); }

@media (max-width: 1199.98px) {
  .top-news { grid-template-columns: minmax(0, 1.3fr) minmax(17rem, .8fr); }
  .four-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-6); }
  .article-hero { grid-template-columns: minmax(0, .95fr) minmax(21rem, 1.05fr); }
  .article-main-grid { grid-template-columns: 4.5rem minmax(0, 1fr) minmax(17rem, 20rem); gap: var(--space-5); }
  .more-category-grid { grid-template-columns: 1fr; }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .primary-nav a, .primary-nav__dropdown { min-width: 44px; justify-content: center; padding-inline: .35rem; font-size: .73rem; letter-spacing: .025em; }
  .primary-nav__search { width: 44px; justify-content: center; padding-inline: .5rem; }
  .primary-nav__search span { display: none; }
}

@media (max-width: 991.98px) {
  .masthead { min-height: 5.2rem; grid-template-columns: 44px 1fr 44px; text-align: center; }
  .masthead__tagline { display: none; }
  .wordmark { font-size: 2.75rem; }
  .top-news { grid-template-columns: 1fr; }
  .top-story-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-and-read { grid-template-columns: 1fr; }
  .most-read { position: static; }
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero { grid-template-columns: 1fr; margin-block: var(--space-4) var(--space-6); }
  .article-hero__content { min-height: 0; border-left: 0; }
  .article-hero__media { order: 0; }
  .article-hero__media .story-media { min-height: 0; aspect-ratio: 16 / 9; }
  .article-main-grid { grid-template-columns: minmax(0, 46rem); justify-content: center; }
  .article-layout { grid-template-columns: 1fr; max-width: 46rem; margin-inline: auto; }
  .article-rail { position: static; display: flex; flex-wrap: wrap; align-items: center; order: 2; padding: var(--space-3) 0; border-top: 1px solid var(--color-slate-200); border-bottom: 1px solid var(--color-slate-200); }
  .article-share-url { flex: 1 1 100%; max-width: 100%; margin-top: var(--space-2); }
  .article-content-wrap { order: 1; }
  .article-sidebar { order: 3; }
  .article-sidebar__sticky { position: static; }
  .thread-header, .contact-layout { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  :root { --space-7: 2.25rem; --space-8: 3.5rem; }
  .utility-bar__inner { font-size: .68rem; }
  .masthead { gap: var(--space-2); }
  .wordmark { font-size: 2.25rem; }
  .article-container { padding-inline: var(--space-4); }
  .breadcrumbs { padding-block: var(--space-3); }
  .article-hero { margin-inline: calc(var(--space-4) * -1); border-inline: 0; box-shadow: none; }
  .article-hero__content { padding: var(--space-5) var(--space-4); }
  .article-hero h1 { font-size: clamp(1.7rem, 8vw, 2.25rem); }
  .article-dek { font-size: 1.08rem; }
  .article-byline { align-items: start; flex-direction: column; }
  .article-main-grid { gap: var(--space-5); }
  .article-listen-box { align-items: stretch; flex-direction: column; }
  .article-listen-button { width: 100%; justify-content: center; }
  .article-content { font-size: 1.08rem; line-height: 1.72; }
  .article-content > p:first-child::first-letter { float: none; margin: 0; font-size: inherit; line-height: inherit; }
  .context-card, .source-box { padding: var(--space-4); }
  .related-mini-card { grid-template-columns: 4.5rem minmax(0, 1fr); }
  .article-audio-player { left: 1rem; right: 1rem; bottom: .75rem; width: auto; grid-template-columns: 1fr; }
  .article-audio-controls { justify-content: start; }
  .article-audio-current { white-space: normal; }
  .breaking-strip__inner { align-items: stretch; gap: var(--space-3); }
  .breaking-strip strong { padding-right: var(--space-3); }
  .breaking-strip__stories { display: grid; align-content: center; }
  .breaking-strip__stories a:not(:first-child) { display: none; }
  .top-story-grid, .four-card-grid, .editor-picks__grid, .listing-grid { grid-template-columns: 1fr; }
  .top-story-grid .story-card { display: grid; grid-template-columns: 8.5rem 1fr; gap: var(--space-3); padding-bottom: var(--space-4); border-bottom: 1px solid var(--color-slate-200); }
  .top-story-grid .story-card__body { padding: 0; }
  .developing-band { grid-template-columns: 1fr; margin-inline: -.75rem; padding: var(--space-5) var(--space-4); }
  .developing-band a { align-items: start; padding-block: .6rem; }
  .story-card--horizontal { grid-template-columns: 7.5rem 1fr; }
  .story-card--horizontal .story-card__summary { display: none; }
  .story-card--horizontal .story-media { min-height: 6.5rem; }
  .editor-picks { margin-inline: -.75rem; padding-inline: .75rem; }
  .section-header { align-items: center; }
  .section-header h2 { font-size: 1.65rem; }
  .article-figure { margin-inline: -.75rem; }
  .article-figure figcaption { padding-inline: .75rem; }
  .timeline li { grid-template-columns: 1fr; gap: var(--space-2); }
  .information-page > header h1 { font-size: 2.65rem; }
  .contact-form { padding: var(--space-4); }
  .newsletter__form, .search-form > div { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-legal { flex-direction: column; }
  .pagination-wrap { grid-template-columns: 1fr 1fr; }
  .pagination-status { grid-column: 1 / -1; grid-row: 1; text-align: center; }
}

.context-links {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-slate-300);
}

.context-links h2 {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-lg);
}

.context-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.context-links a,
.context-links span {
  padding: .45rem .75rem;
  border: 1px solid var(--color-slate-300);
  border-radius: 999px;
  color: var(--color-charcoal);
  background: var(--color-white);
  font-size: .9rem;
}

.author-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-4);
}

.author-directory article {
  padding: var(--space-4);
  border-top: .22rem solid var(--color-red-700);
  background: var(--color-slate-100);
}

.author-directory h2 {
  margin: .25rem 0 .75rem;
  font-size: var(--font-size-xl);
}

/* Events: an editorial discovery section built on the public BCPost tokens. */
.events-hero { border-bottom: 1px solid var(--color-slate-300); background: var(--color-navy-950); color: var(--color-white); }
.events-hero__inner { display: grid; grid-template-columns: minmax(16rem, .7fr) minmax(0, 1.3fr); align-items: end; gap: var(--space-7); padding-block: var(--space-6); }
.events-hero__copy h1 { max-width: 14ch; margin: 0; font-family: var(--font-display); font-size: clamp(2.3rem, 4.8vw, 4.4rem); font-weight: 700; letter-spacing: -.045em; line-height: .98; }
.events-hero__copy > p:last-child { max-width: 54ch; margin: var(--space-4) 0 0; color: #c9d1da; }
.event-filter { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(7.5rem, 1fr)) auto; gap: var(--space-3); align-items: end; padding: var(--space-4); border-top: 4px solid var(--color-red-600); background: var(--color-white); color: var(--color-charcoal); box-shadow: var(--shadow-menu); }
.event-filter label { display: block; margin-bottom: .3rem; color: var(--color-slate-700); font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.event-filter__control { width: 100%; min-height: 46px; padding: .65rem .7rem; border: 1px solid var(--color-slate-300); border-radius: var(--radius-sm); background: var(--color-white); color: var(--color-charcoal); }
.event-filter__control:focus { border-color: var(--color-focus); }
.event-filter__more { grid-column: 1 / -1; }
.event-filter__more summary { width: max-content; min-height: 44px; align-content: center; color: var(--color-navy-800); font-size: var(--font-size-sm); font-weight: 750; cursor: pointer; }
.event-filter__more > div { max-width: 20rem; padding-top: var(--space-2); }
.button--event { background: var(--color-red-700); color: var(--color-white); white-space: nowrap; }
.button--event:hover { background: #86101a; color: var(--color-white); }
.events-page { padding-block: var(--space-6) var(--space-8); }
.event-section { padding-block: var(--space-6); border-bottom: 1px solid var(--color-slate-300); }
.event-section:last-child { border-bottom: 0; }
.event-section__header { display: flex; align-items: end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-5); }
.event-section__header h2 { margin: 0; font-family: var(--font-display); font-size: var(--font-size-xl); letter-spacing: -.025em; }
.event-section__header > a { min-height: 44px; align-content: center; color: var(--color-navy-800); font-size: var(--font-size-sm); font-weight: 750; text-decoration: none; }
.event-section__header > a span, .event-card__link span { color: var(--color-red-700); }
.event-section__header > span { color: var(--color-slate-600); font-size: var(--font-size-sm); }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6) var(--space-5); align-items: stretch; }
.event-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.event-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5) var(--space-4); }
.event-card { display: flex; min-width: 0; height: 100%; overflow: hidden; flex-direction: column; border: 1px solid rgb(15 23 42 / 8%); border-radius: .8rem; background: var(--color-white); box-shadow: 0 8px 24px rgb(15 23 42 / 7%), 0 2px 6px rgb(15 23 42 / 4%); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.event-card:hover { border-color: rgb(165 20 32 / 22%); box-shadow: 0 16px 34px rgb(15 23 42 / 10%), 0 4px 10px rgb(15 23 42 / 5%); transform: translateY(-3px); }
.event-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--color-slate-200); }
.event-card__media a { display: block; width: 100%; height: 100%; overflow: hidden; color: inherit; text-decoration: none; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.event-card:hover .event-card__media img { transform: scale(1.02); }
.event-card__fallback, .event-detail__fallback { display: grid; width: 100%; height: 100%; align-content: center; justify-items: center; gap: var(--space-2); padding: var(--space-5); background: linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800)); color: #d6dee7; }
.event-card__fallback > span { font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-card__fallback strong, .event-detail__fallback strong { font-family: var(--font-display); font-size: 1.8rem; }
.event-card__fallback strong span, .event-detail__fallback strong span { color: #ff737e; }
.event-card__date-badge { position: absolute; bottom: -2.25rem; left: clamp(1rem, 7%, 1.75rem); z-index: 2; width: 4.65rem; overflow: hidden; border-radius: .75rem; background: var(--color-white); box-shadow: 0 10px 22px rgb(15 23 42 / 18%), 0 2px 6px rgb(15 23 42 / 8%); text-align: center; }
.event-card__date-badge span { display: block; padding: .48rem .25rem .38rem; background: var(--color-red-700); color: var(--color-white); font-size: .76rem; font-weight: 820; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.event-card__date-badge strong { display: block; padding: .4rem .25rem .48rem; color: var(--color-navy-950); font-family: var(--font-display); font-size: 2.05rem; font-weight: 700; letter-spacing: -.04em; line-height: .95; }
.event-card__body { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 4.25rem clamp(1.25rem, 6vw, 1.75rem) var(--space-5); }
.event-card__badges { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
.event-category-badge, .event-status, .event-card__featured { display: inline-flex; min-height: 2.35rem; align-items: center; gap: .48rem; padding: .45rem .85rem; border-radius: 999px; font-size: .72rem; font-weight: 820; letter-spacing: .11em; line-height: 1.1; text-decoration: none; text-transform: uppercase; }
.event-category-badge { border: 1px solid var(--color-red-700); background: var(--color-white); color: var(--color-red-700); }
.event-category-badge svg { width: 1rem; height: 1rem; flex: 0 0 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.event-category-badge:hover { background: #fff6f7; color: #86101a; }
.event-card__featured { border: 1px solid rgb(15 23 42 / 10%); color: var(--color-slate-700); background: var(--color-slate-100); }
.event-status { border: 1px solid transparent; background: var(--color-navy-900); color: var(--color-white); }
.event-status--overlay { position: absolute; z-index: 3; top: .85rem; right: .85rem; min-height: 2rem; padding: .38rem .7rem; box-shadow: 0 6px 16px rgb(15 23 42 / 18%); }
.event-status--cancelled { background: var(--color-red-700); }
.event-status--postponed { background: #7b4a00; }
.event-status--rescheduled { background: var(--color-navy-800); }
.event-card__title { margin: 1.05rem 0 0; overflow-wrap: anywhere; color: var(--color-navy-950); font-family: var(--font-display); font-size: clamp(1.5rem, 2.35vw, 1.9rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.12; }
.event-card__title a { color: inherit; text-decoration: none; }
.event-card__title a:hover { color: var(--color-red-700); }
.event-card__divider { width: 100%; height: 1px; margin: 1.15rem 0 1.25rem; background: rgb(15 23 42 / 10%); }
.event-card__meta { position: relative; display: grid; gap: 1rem; margin: 0; }
.event-card__meta::before { position: absolute; top: .4rem; bottom: .35rem; left: .65rem; width: 1px; background: rgb(15 23 42 / 10%); content: ""; }
.event-card__meta-row { position: relative; display: grid; grid-template-columns: 2.45rem minmax(0, 1fr); gap: .85rem; align-items: start; }
.event-card__meta-icon { position: relative; z-index: 1; display: grid; width: 1.35rem; height: 1.35rem; place-items: center; color: var(--color-red-700); background: var(--color-white); }
.event-card__meta-icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.event-card__meta-content { min-width: 0; color: var(--color-navy-950); font-size: clamp(.98rem, 1.8vw, 1.08rem); line-height: 1.35; overflow-wrap: anywhere; }
.event-card__location strong,
.event-card__location span { display: block; }
.event-card__location strong { font-weight: 650; }
.event-card__location span { margin-top: .08rem; color: var(--color-slate-600); }
.event-card__footer { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: auto; padding: 1.25rem clamp(1.25rem, 6vw, 1.75rem); border-top: 1px solid rgb(15 23 42 / 10%); background: var(--color-white); }
.event-card__price { min-width: 0; color: var(--color-slate-700); font-size: var(--font-size-sm); font-weight: 760; overflow-wrap: anywhere; }
.event-card__price--empty { flex: 1; }
.event-card__link { display: inline-flex; min-height: 44px; align-items: center; justify-content: space-between; gap: var(--space-4); margin-left: auto; color: var(--color-red-700); font-size: clamp(1rem, 1.6vw, 1.12rem); font-weight: 820; text-decoration: none; }
.event-card__link svg { width: 1.55rem; height: 1.55rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform 180ms ease; }
.event-card__link:hover { color: #86101a; }
.event-card__link:hover svg { transform: translateX(.25rem); }
.event-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: var(--space-3); }
.event-category-grid a { display: grid; min-height: 8.5rem; align-content: end; padding: var(--space-4); border-top: 4px solid var(--color-red-700); background: var(--color-slate-100); text-decoration: none; }
.event-category-grid a > span { color: var(--color-red-700); font-size: 1.35rem; }
.event-category-grid strong { font-family: var(--font-display); font-size: 1.2rem; }
.event-category-grid small { color: var(--color-slate-600); }
.event-city-list { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.event-city-list a { display: flex; min-height: 48px; align-items: center; gap: var(--space-3); padding: .65rem .8rem; border: 1px solid var(--color-slate-300); color: var(--color-navy-900); text-decoration: none; }
.event-city-list a:hover { border-color: var(--color-red-700); }
.event-city-list span { color: var(--color-slate-600); font-size: var(--font-size-xs); }
.event-detail { padding-block: var(--space-4) var(--space-7); }
.event-breadcrumbs { margin-bottom: 1.1rem; font-size: var(--font-size-xs); }
.event-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .3rem .7rem; margin: 0; padding: 0; list-style: none; }
.event-breadcrumbs li + li::before { content: "/"; margin-right: .7rem; color: var(--color-slate-600); }
.event-detail__hero { display: grid; min-height: clamp(28.75rem, 38vw, 32.5rem); overflow: hidden; grid-template-columns: minmax(0, 1.65fr) minmax(20rem, 1fr); border: 1px solid rgb(15 23 42 / 10%); border-radius: .72rem; background: var(--color-navy-950); color: var(--color-white); box-shadow: 0 14px 34px rgb(15 23 42 / 11%), 0 2px 8px rgb(15 23 42 / 5%); }
.event-detail__media { position: relative; min-height: clamp(28.75rem, 38vw, 32.5rem); overflow: hidden; background: var(--color-navy-900); }
.event-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.event-detail__fallback > span { font-size: var(--font-size-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-detail__date-badge { bottom: 1.75rem; left: 1.65rem; width: 4.85rem; border-radius: .72rem; }
.event-detail__date-badge span { padding-block: .55rem .45rem; font-size: .82rem; }
.event-detail__date-badge strong { padding-block: .45rem .58rem; font-size: 2.22rem; }
.event-detail__intro { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(2.15rem, 3.2vw, 2.85rem); }
.event-category-badge--dark { background: transparent; color: var(--color-white); border-color: rgb(255 255 255 / 36%); }
.event-category-badge--dark:hover { background: rgb(255 255 255 / 8%); color: var(--color-white); }
.event-detail__intro h1 { margin: var(--space-4) 0 var(--space-5); overflow-wrap: anywhere; font-family: var(--font-display); font-size: clamp(2.2rem, 3.25vw, 3.65rem); font-weight: 650; letter-spacing: -.03em; line-height: 1; }
.event-detail__meta { position: relative; display: grid; gap: .86rem; margin: 0; }
.event-detail__meta::before { position: absolute; top: .5rem; bottom: .5rem; left: .7rem; width: 1px; background: rgb(255 255 255 / 16%); content: ""; }
.event-detail__meta-row { position: relative; display: grid; grid-template-columns: 2.35rem minmax(0, 1fr); gap: .78rem; align-items: start; }
.event-detail__meta-icon { position: relative; z-index: 1; display: grid; width: 1.42rem; height: 1.42rem; place-items: center; color: #ff737e; background: var(--color-navy-950); }
.event-detail__meta-icon svg { width: 1.42rem; height: 1.42rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.event-detail__meta-content { min-width: 0; color: var(--color-white); font-size: clamp(1rem, 1.45vw, 1.08rem); font-weight: 680; line-height: 1.35; overflow-wrap: anywhere; }
.event-detail__location strong, .event-detail__location span { display: block; }
.event-detail__location span { margin-top: .08rem; color: #b9c4cf; font-weight: 520; }
.event-detail__ticket-panel { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid rgb(255 255 255 / 18%); }
.event-detail__price { margin: 0 0 var(--space-3); }
.event-detail__price span { display: block; color: #aebac6; font-size: var(--font-size-xs); font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.event-detail__price strong { display: block; margin-top: .15rem; color: var(--color-white); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.15; }
.event-ticket-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .55rem; padding-inline: 1.35rem; text-transform: uppercase; }
.event-ticket-button svg, .event-source a svg, .event-venue__directions svg, .event-attraction-card a svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.event-ticket-note { margin: var(--space-2) 0 0; color: #b8c2ce; font-size: var(--font-size-xs); line-height: 1.45; }
.event-detail__layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr); gap: clamp(2.25rem, 4vw, 3.2rem); padding-block: 2.25rem 2.75rem; }
.event-detail__content, .event-detail__featuring { max-width: 76ch; }
.event-detail__content { grid-column: 1; }
.event-detail__featuring { grid-column: 1; }
.event-detail__section + .event-detail__section, .event-detail__featuring { margin-top: 2rem; }
.event-detail__section-heading { margin-bottom: var(--space-3); }
.event-detail__section-heading h2, .event-detail__aside h2, .event-detail__related h2 { margin: 0; font-family: var(--font-display); font-size: clamp(1.55rem, 2.8vw, 2.1rem); letter-spacing: -.025em; line-height: 1.05; }
.event-detail__dek { color: var(--color-navy-900); font-size: clamp(1.05rem, 1.7vw, 1.22rem); font-weight: 650; line-height: 1.55; }
.event-detail__prose { color: var(--color-slate-700); font-size: var(--font-size-md); line-height: 1.72; }
.event-detail__prose p:last-child { margin-bottom: 0; }
.event-share { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid rgb(15 23 42 / 10%); }
.event-share span { color: var(--color-slate-600); font-size: var(--font-size-xs); font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.event-share a { display: inline-flex; min-height: 38px; align-items: center; padding: .45rem .75rem; border: 1px solid var(--color-slate-300); border-radius: 999px; color: var(--color-navy-900); font-size: var(--font-size-sm); font-weight: 760; text-decoration: none; }
.event-share a:hover { border-color: var(--color-red-700); color: var(--color-red-700); }
.event-info { padding: clamp(1.35rem, 2.4vw, 1.75rem); border-left: 4px solid var(--color-red-700); border-radius: .28rem; background: #fff8e8; }
.event-info__preview { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.event-info__details { margin-top: var(--space-3); }
.event-info__details summary { width: max-content; max-width: 100%; min-height: 44px; align-content: center; color: var(--color-red-700); font-weight: 820; cursor: pointer; }
.event-info__details .event-detail__prose { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid rgb(123 74 0 / 20%); }
.event-detail__aside { grid-column: 2; align-self: start; }
.event-venue, .event-source { padding: var(--space-5); border: 1px solid rgb(15 23 42 / 10%); border-top: 4px solid var(--color-red-700); border-radius: .42rem; background: var(--color-white); box-shadow: 0 8px 22px rgb(15 23 42 / 5%); }
.event-source { margin-top: var(--space-5); padding: var(--space-4); border-top-color: var(--color-navy-800); box-shadow: none; }
.event-venue h2, .event-source h2 { margin: 0 0 var(--space-3); }
.event-venue h3 { margin: var(--space-3) 0 var(--space-2); color: var(--color-navy-950); font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); letter-spacing: -.025em; line-height: 1.1; }
.event-venue__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-block: var(--space-3); border-radius: .28rem; background: var(--color-slate-100); }
.event-venue address { display: grid; grid-template-columns: 1.5rem minmax(0, 1fr); gap: .7rem; margin: 0; color: var(--color-slate-700); font-style: normal; line-height: 1.55; }
.event-venue address svg { width: 1.2rem; height: 1.2rem; margin-top: .18rem; color: var(--color-red-700); fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.event-venue__directions, .event-source a, .event-attraction-card a { display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; margin-top: var(--space-3); color: var(--color-red-700); font-weight: 820; text-decoration: none; }
.event-venue__directions:hover, .event-source a:hover, .event-attraction-card a:hover { color: #86101a; }
.event-source p { color: var(--color-slate-600); font-size: var(--font-size-sm); line-height: 1.6; }
.event-attractions { display: grid; grid-template-columns: repeat(2, minmax(18rem, 1fr)); gap: var(--space-3); }
.event-attraction-card { display: grid; min-height: 6.35rem; grid-template-columns: 5.6rem minmax(0, 1fr); gap: var(--space-3); align-items: center; padding: .7rem; border: 1px solid rgb(15 23 42 / 10%); border-radius: .42rem; background: var(--color-white); box-shadow: 0 6px 18px rgb(15 23 42 / 4%); }
.event-attraction-card img, .event-attraction-card__fallback { width: 5.6rem; height: 5.6rem; object-fit: cover; border-radius: .28rem; background: var(--color-slate-100); }
.event-attraction-card__fallback { display: grid; place-items: center; color: var(--color-red-700); font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.event-attraction-card h3 { margin: 0; color: var(--color-navy-950); font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -.015em; line-height: 1.12; }
.event-attraction-card p { margin: .2rem 0 0; color: var(--color-slate-600); font-size: var(--font-size-sm); }
.event-attraction-card a { min-height: auto; margin-top: .35rem; font-size: var(--font-size-sm); }
.event-detail__related { padding-top: 2.25rem; padding-bottom: 1.25rem; }
.event-detail__city-link { margin: calc(var(--space-4) * -1) 0 var(--space-5); }
.event-detail__city-link a { color: var(--color-red-700); font-weight: 760; text-decoration: none; }

@media (max-width: 1199.98px) {
  .events-hero__inner { grid-template-columns: 1fr; }
  .event-filter { grid-template-columns: repeat(4, minmax(0, 1fr)) auto; }
  .event-filter > div:first-child { grid-column: span 2; }
  .event-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .event-filter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-filter > div:first-child { grid-column: 1 / -1; }
  .event-grid, .event-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-detail__hero { min-height: 0; grid-template-columns: 1fr; }
  .event-detail__media { min-height: 0; aspect-ratio: 16 / 9; }
  .event-detail__layout { grid-template-columns: 1fr; }
  .event-detail__intro { padding: var(--space-5); }
  .event-detail__content, .event-detail__featuring, .event-detail__aside { grid-column: 1; }
  .event-detail__aside { display: grid; grid-row: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); }
  .event-source { margin-top: 0; }
}

@media (max-width: 575.98px) {
  .events-hero__inner { gap: var(--space-5); padding-block: var(--space-5); }
  .events-hero__copy h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .event-filter { grid-template-columns: 1fr; margin-inline: calc(var(--space-2) * -1); }
  .event-filter > div:first-child, .event-filter__more { grid-column: auto; }
  .event-filter__more > div { max-width: none; }
  .event-filter .button { width: 100%; }
  .event-grid, .event-grid--home, .event-grid--related { grid-template-columns: 1fr; }
  .event-section__header { align-items: start; flex-direction: column; gap: var(--space-2); }
  .event-city-list { display: grid; grid-template-columns: 1fr; }
  .event-city-list a { justify-content: space-between; }
  .event-detail { padding-top: var(--space-4); }
  .event-detail__hero { margin-inline: calc(var(--space-4) * -1); border-radius: 0; }
  .event-detail__intro { padding: var(--space-5) var(--space-4); }
  .event-detail__intro h1 { font-size: clamp(1.86rem, 10.5vw, 2.85rem); }
  .event-detail__layout { gap: var(--space-5); padding-block: var(--space-5); }
  .event-detail__aside { grid-template-columns: 1fr; }
  .event-source { margin-top: 0; }
  .event-ticket-button { width: 100%; }
  .event-attractions { grid-template-columns: 1fr; }
  .event-attraction-card { grid-template-columns: 4.6rem minmax(0, 1fr); }
  .event-attraction-card img, .event-attraction-card__fallback { width: 4.6rem; height: 4.6rem; }
  .event-info { padding: var(--space-4); }
  .event-card__body { padding: 3.85rem 1.15rem 1.25rem; }
  .event-card__date-badge { bottom: -2rem; left: 1.1rem; width: 4.25rem; border-radius: .65rem; }
  .event-card__date-badge strong { font-size: 1.82rem; }
  .event-detail__date-badge { bottom: .85rem; width: 4.65rem; }
  .event-detail__date-badge strong { font-size: 1.98rem; }
  .event-category-badge, .event-status, .event-card__featured { min-height: 2.1rem; padding: .4rem .7rem; font-size: .66rem; }
  .event-card__title { font-size: clamp(1.38rem, 7vw, 1.65rem); }
  .event-card__footer { padding: 1rem 1.15rem; }
  .event-card__link { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .utility-bar, .site-header, .breaking-strip, .newsletter, .site-footer, .article-rail, .related-section { display: none !important; }
  body { background: #fff; color: #000; }
  .article-header h1 { font-size: 32pt; }
  .article-layout { display: block; }
  a { color: #000; text-decoration: none; }
}
