@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400; font-display: swap;
    src: url("fonts/dm-sans-400.woff2") format("woff2"), url("fonts/dm-sans-400.woff") format("woff"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 500; font-display: swap;
    src: url("fonts/dm-sans-500.woff2") format("woff2"), url("fonts/dm-sans-500.woff") format("woff"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 600; font-display: swap;
    src: url("fonts/dm-sans-600.woff2") format("woff2"), url("fonts/dm-sans-600.woff") format("woff"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 700; font-display: swap;
    src: url("fonts/dm-sans-700.woff2") format("woff2"), url("fonts/dm-sans-700.woff") format("woff"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 400; font-display: swap;
    src: url("fonts/jetbrains-mono-400.woff2") format("woff2"), url("fonts/jetbrains-mono-400.woff") format("woff"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 500; font-display: swap;
    src: url("fonts/jetbrains-mono-500.woff2") format("woff2"), url("fonts/jetbrains-mono-500.woff") format("woff"); }
@font-face { font-family: "Source Serif 4"; font-style: normal; font-weight: 400; font-display: swap;
    src: url("fonts/source-serif-4-400.woff2") format("woff2"), url("fonts/source-serif-4-400.woff") format("woff"); }
@font-face { font-family: "Source Serif 4"; font-style: normal; font-weight: 600; font-display: swap;
    src: url("fonts/source-serif-4-600.woff2") format("woff2"), url("fonts/source-serif-4-600.woff") format("woff"); }
@font-face { font-family: "Source Serif 4"; font-style: normal; font-weight: 700; font-display: swap;
    src: url("fonts/source-serif-4-700.woff2") format("woff2"), url("fonts/source-serif-4-700.woff") format("woff"); }
@font-face { font-family: "Source Serif 4"; font-style: italic; font-weight: 400; font-display: swap;
    src: url("fonts/source-serif-4-italic-400.woff2") format("woff2"), url("fonts/source-serif-4-italic-400.woff") format("woff"); }

:root {
    --grabien-red: #ee1a3b;
    --grabien-red-dark: #c41230;
    --grabien-red-light: #fff1f3;
    --navy: #1b2a4a;
    --navy-light: #2a3f6b;
    --teal-dark: #102f35;
    --dark: #1a1a1a;
    --text: #333333;
    --text-soft: #555555;
    --muted: #999999;
    --border: #e5e5e5;
    --surface: #ffffff;
    --page: #f5f5f5;
    --amber: #c2410c;
    --gray-bar: #6f7782;
    --font-display: "Source Serif 4", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-mono: "JetBrains Mono", Consolas, monospace;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
    --container: 1320px;
    --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--page); }
body { margin: 0; color: var(--text); background: var(--page); font-family: var(--font-body); font-size: 15px; line-height: 1.55;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
h1, h2, h3, h4, p, dd, li, a { overflow-wrap: break-word; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
h1, h2, h3 { color: inherit; font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: 0; }
h4 { color: inherit; font: inherit; font-weight: 600; line-height: 1.32; letter-spacing: 0; }
a { color: inherit; text-decoration: none; transition: color 0.4s ease; }
a:hover { color: var(--grabien-red); }
strong { font-weight: 600; }

.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.stack { --stack-gap: 16px; }
.stack>*+* { margin-top: var(--stack-gap); }
.d-flex { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.mono { font-family: var(--font-mono); }
.meta { color: var(--muted); font-size: 12px; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: block; width: 14px; height: 14px; flex: 0 0 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.site-header { position: sticky; top: 0; z-index: 20; color: var(--surface); background: var(--dark); border-bottom: 3px solid var(--grabien-red); }
.site-header__inner, .site-footer__inner { min-height: 56px; display: flex; gap: 18px; align-items: center; justify-content: space-between; }
.brand, .footer-brand { display: inline-flex; min-width: 0; align-items: center; gap: 12px; }
.brand__mark, .footer-brand img { display: block; width: 32px; height: 32px; border-radius: var(--radius-sm); }
.brand__name { color: var(--surface); font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1; }
.brand__name span, .footer-brand strong { color: var(--grabien-red); }
.site-header__label { color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.2; text-align: right; text-transform: uppercase; letter-spacing: 1px; }
.hero { color: var(--surface); background: var(--navy); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.hero__inner { --stack-gap: 18px; padding-block: 34px 30px; }
.hero__kicker { display: flex; gap: 10px; align-items: center; color: var(--grabien-red); font-size: 11px; font-weight: 500; line-height: 1.2;
    text-transform: uppercase; letter-spacing: 2px; }
.hero__kicker::after { content: ""; flex: 1; min-width: 72px; height: 1px; background: rgba(255, 255, 255, 0.14); }
.hero__copy { --stack-gap: 12px; min-width: 0; }
.hero h1 { font-size: 36px; }
.hero__copy p { max-width: 620px; color: #c7d0e0; font-size: 15px; }
.hero__meta { min-width: 0; gap: 12px 30px; color: #9fb0c9; font-size: 12px; }
.hero__meta div { display: flex; min-width: 0; gap: 6px; align-items: baseline; flex-wrap: wrap; }
.hero__meta dt { color: inherit; text-transform: uppercase; }
.hero__meta dd { min-width: 0; color: #d9e2ef; }
.hero__meta strong { color: var(--surface); }
.page { padding-block: 28px 64px; }
.main-grid { display: grid; gap: 30px; }
.content-column { min-width: 0; }
.section-heading { display: flex; min-width: 0; gap: 16px; align-items: center; margin-bottom: 20px; }
.section-heading h2 { color: var(--navy); font-size: 25px; white-space: nowrap; }
.section-heading p { min-width: 0; color: var(--muted); font-size: 11px; text-transform: uppercase; white-space: nowrap; }
.section-heading>span { flex: 1; min-width: 24px; height: 2px; background: linear-gradient(90deg, var(--grabien-red), rgba(238, 26, 59, 0)); }
.card { color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: box-shadow 0.4s ease; }
.card:hover { box-shadow: var(--shadow-md); }
.source-label { color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; line-height: 1.25; text-transform: uppercase; }
.speaker-line { display: flex; gap: 7px; align-items: flex-start; color: var(--text-soft); font-size: 12px; font-style: italic; line-height: 1.42; }
.federal-groups { --stack-gap: 22px; }
.federal-group { --stack-gap: 9px; }
.group-label { color: var(--grabien-red-dark); font-size: 11px; font-weight: 500; letter-spacing: 1px; padding-left: 2px; text-transform: uppercase; }
.group-label span { color: inherit; }
.group-label span::before { content: " · "; }
.federal-event { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 13px; align-items: start; padding: 12px 14px;
    border-left: 3px solid var(--navy); border-radius: var(--radius-md); }
.federal-event--no-date { grid-template-columns: minmax(0, 1fr); }
.federal-event.card--tier-1 { border-left-color: var(--grabien-red); }
.date-chip { display: grid; gap: 2px; justify-items: center; color: var(--navy); line-height: 1; text-align: center; }
.date-chip span { font-size: 17px; font-weight: 700; }
.date-chip small { color: var(--muted); font-size: 10px; font-weight: 500; }
.event-body { --stack-gap: 4px; min-width: 0; }
.event-body .source-label { color: var(--grabien-red-dark); font-size: 10px; }
.event-line { line-height: 1.35; }
.horizon-stack { --stack-gap: 34px; }
.horizon { --stack-gap: 16px; }
.horizon-bar, .municipal__bar { display: flex; min-height: 46px; gap: 14px; align-items: center; padding: 10px 16px; color: var(--surface);
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.horizon-bar h3, .municipal__bar h2 { font-size: 20px; }
.horizon-bar--today { background: var(--grabien-red); }
.horizon-bar--week { background: var(--amber); }
.horizon-bar--month { background: var(--navy); }
.horizon-bar--year { background: var(--navy-light); }
.horizon-bar--beyond { background: var(--gray-bar); }
.count-badge, .tier-badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; white-space: nowrap; }
.count-badge { min-width: 28px; padding: 2px 9px; color: inherit; border: 1px solid rgba(255, 255, 255, 0.36); font-size: 12px; }
.event-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.municipal-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.policy-card { --stack-gap: 11px; display: flex; flex-direction: column; min-width: 0; min-height: 100%; padding: 17px 18px; }
.card__header { justify-content: space-between; align-items: flex-start; }
.tier-badge { padding: 1px 6px; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; font-size: 9px; text-transform: uppercase; }
.policy-card h4 { color: var(--dark); font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.25; }
.topic-pill { align-self: flex-start; padding: 3px 8px; color: var(--grabien-red-dark); background: var(--grabien-red-light); border-radius: 4px;
    font-size: 10px; font-weight: 600; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.4px; }
.event-meta { display: grid; gap: 5px; margin-top: auto; padding-top: 10px; color: var(--text-soft); border-top: 1px solid var(--page); font-size: 12.5px; }
.event-meta div { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 7px; align-items: start; }
.event-meta dt { color: var(--muted); }
.event-meta dt span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; white-space: nowrap; border: 0; clip: rect(0, 0, 0, 0); }
.event-meta dd { min-width: 0; }
.event-meta time { color: var(--navy); font-family: var(--font-mono); font-weight: 500; }
.municipal { --stack-gap: 16px; margin-top: 30px; }
.municipal__bar { background: var(--teal-dark); border-left: 4px solid var(--grabien-red); }
.municipal__bar p { margin-left: auto; color: #9fb0c9; font-size: 10px; text-transform: uppercase; }
.city-card { overflow: hidden; }
.city-card__header { display: flex; gap: 9px; align-items: center; padding: 11px 16px; color: var(--surface); background: var(--navy); }
.city-card__header span { width: 7px; height: 7px; flex: 0 0 7px; background: var(--grabien-red); border-radius: 50%; }
.city-card h3 { font-size: 15px; }
.release-list { margin: 0; padding: 0; list-style: none; }
.release-list li { padding: 12px 16px; border-bottom: 1px solid var(--page); }
.release-list li:last-child { border-bottom: 0; }
.release-list a { display: block; color: var(--dark); font-size: 13.5px; font-weight: 500; line-height: 1.35; }
.release-list time { display: block; margin-top: 4px; color: var(--muted); font-size: 10.5px; }
.site-footer { color: var(--muted); background: var(--dark); border-top: 3px solid var(--grabien-red); }
.site-footer__inner { min-height: 78px; padding-block: 16px; }
.footer-brand { color: var(--muted); font-size: 13px; }
.footer-brand img { width: 28px; height: 28px; }
.site-footer__copyright { color: var(--muted); font-size: 12px; }

@media (min-width: 760px) {
    .hero h1 { font-size: 44px; }
    .event-grid--two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .municipal-grid--two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 940px) {
    .main-grid { grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr); align-items: start; }
}
@media (max-width: 720px) {
    :root { --gutter: 16px; }
    body { font-size: 14px; }
    .site-header__inner { min-height: 60px; }
    .site-header__label { max-width: 96px; font-size: 10px; }
    .brand__name { font-size: 20px; }
    .hero__inner { padding-block: 28px 26px; }
    .hero h1 { font-size: 33px; }
    .hero__meta { display: grid; gap: 8px; }
    .section-heading { gap: 10px; }
    .section-heading h2 { font-size: 22px; white-space: normal; }
    .section-heading p { white-space: normal; }
    .federal-event { grid-template-columns: 48px minmax(0, 1fr); }
    .municipal__bar { flex-wrap: wrap; }
    .municipal__bar p { width: 100%; margin-left: 0; }
}
