.news-hero-band {
    padding: 40px 28px 24px;
    background: var(--bg);
}
.news-hero-band-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.news-hero-band .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.news-hero-band .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.news-hero-band h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--text);
    font-weight: 400;
}
.news-hero-band h1 .accent {
    color: var(--accent);
}
.news-tagline {
    margin-top: 14px;
    font-size: 17px;
    color: var(--text-2);
    max-width: var(--hero-max);
}
.news-stamp {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-3);
    min-height: 18px;
}
.news-alert-region {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}
.news-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--red-bg);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-md);
    margin-top: 14px;
    color: var(--red-text);
}
.news-alert-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.news-alert-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}
.news-alert-text a {
    color: var(--accent);
    text-decoration: underline;
}
.news-alert-dismiss {
    flex-shrink: 0;
    background: none;
    border: 0;
    color: var(--red-text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.7;
}
.news-alert-dismiss:hover {
    opacity: 1;
}
.news-shell {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px 28px 80px;
}
.news-loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-2);
}
.news-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-soft);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: news-spin 0.8s linear infinite;
}
@keyframes news-spin {
    to { transform: rotate(360deg); }
}
.news-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-2);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}
.news-layout {
    display: block;
}
.news-hero-text {
    text-align: center;
}

.news-hero-blurb {
    margin-left: auto;
    margin-right: auto;
}
.news-hero {
    position: relative;
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 16 / 9;
    max-height: 540px;
    margin-bottom: 40px;
}
.news-hero:hover {
    text-decoration: none;
}
.news-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: linear-gradient(135deg, #d2d2d7 0%, #aeaeb2 100%);
}
.news-hero-image.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
}
.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%);
}
.news-hero-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 36px;
    color: #fff;
}
.news-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.news-hero-source {
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
}
.news-hero-readtime {
    color: rgba(255,255,255,0.85);
}
.news-hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    font-weight: 400;
}
.news-hero-blurb {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-content {
    min-width: 0;
}
.news-section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    color: inherit;
}
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}
.news-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #e0e0e6;
    flex-shrink: 0;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}
.news-card-image.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
}
.news-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    flex-wrap: wrap;
}
.news-card-source {
    background: var(--blue-bg);
    color: var(--accent);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    white-space: nowrap;
}
.news-card-source.is-alerts {
    background: var(--red-bg);
    color: var(--red-text);
}
.news-card-source.is-jobs {
    background: var(--green-bg);
    color: var(--green-text);
}
.news-card-source.is-promoted {
    background: #E8F0FE;
    color: #1A73E8;
}
.news-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
    letter-spacing: -0.2px;
    margin: 0;
}
.news-card-blurb {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.news-card-footer {
    margin-top: auto;
    font-size: 12px;
    color: var(--text-3);
}
.news-filter-bar {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.news-filter-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.news-filter-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-2);
}
.news-filter-reset {
    background: none;
    border: 1px solid var(--border-soft);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.news-filter-reset:hover {
    background: var(--blue-bg);
    border-color: var(--accent);
}
.news-filter-dropdown {
    position: relative;
    display: inline-block;
}
.news-filter-dropbtn {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: background 0.18s ease;
}
.news-filter-dropbtn:hover {
    background: var(--border-soft);
}
.news-filter-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--surface);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 8px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}
.news-filter-dropdown-content.show {
    display: block;
}
.news-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid var(--border-soft);
}
.news-filter-checkbox:last-child {
    border-bottom: none;
}
.news-filter-checkbox:hover {
    background-color: var(--border-soft);
}
.news-filter-checkbox input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent);
}
.news-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
}
.news-modal[hidden] {
    display: none;
}
.news-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(29,29,31,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.news-modal-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto;
    max-height: 90vh;
}
.news-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.news-modal-close:hover {
    background: #fff;
}
.news-modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}
.news-modal-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    object-position: center center;
    background: #e0e0e6;
    display: block;
    margin: 0 auto;
}
.news-modal-content {
    padding: 28px 32px 32px;
}
.news-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}
.news-modal-source {
    background: var(--blue-bg);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
}
.news-modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.4px;
    font-weight: 400;
    margin-bottom: 10px;
}
.news-modal-date {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 22px;
}
.news-modal-prose h2,
.news-modal-prose h3,
.news-modal-prose h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin: 22px 0 8px;
}
.news-modal-prose h2 {
    font-size: 24px;
}
.news-modal-prose h3 {
    font-size: 20px;
}
.news-modal-prose h4 {
    font-size: 17px;
}
.news-modal-prose p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 14px;
}
.news-modal-prose li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 8px 22px;
    list-style: disc;
}
.news-modal-loading {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-2);
}
.news-modal-source-link {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
    font-size: 14px;
    color: var(--text-2);
}
.news-modal-source-link a {
    color: var(--accent);
    font-weight: 600;
}

/* Weather alerts */
.weather-alerts {
    margin-bottom: 16px;
}
.weather-alert {
    background: #fff1f0;
    border-left: 5px solid #d32f2f;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-family: var(--font-sans);
}
.weather-alert-title {
    font-weight: 700;
    color: #b71c1c;
    font-size: 15px;
    margin-bottom: 6px;
}
.weather-alert-desc {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}
.weather-alert-time {
    font-size: 12px;
    color: #666;
}

/* Current weather */
.weather-current {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.weather-current-icon {
    font-size: 48px;
    line-height: 1;
}
.weather-current-temp {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--accent);
}
.weather-current-desc {
    font-size: 16px;
    color: var(--text-2);
    flex: 1;
}

/* 5‑day forecast */
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.forecast-day {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    text-align: center;
    padding: 12px 6px;
}
.forecast-weekday {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}
.forecast-icon {
    font-size: 28px;
    margin: 8px 0;
}
.forecast-temps {
    font-size: 13px;
    font-weight: 500;
}
.forecast-high {
    color: var(--accent);
}
.forecast-low {
    color: var(--text-3);
}
.forecast-condition {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 6px;
    white-space: normal;
    line-height: 1.3;
    word-break: break-word;
}
.news-grid {
    display: block;
}
.news-grid > .news-category {
    display: block;
    width: 100%;
}

.hu-alert-bar {
    position: sticky;
    top: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #C8102E;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hu-alert-bar[hidden] {
    display: none;
}
.hu-alert-bar-icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}
.hu-alert-bar-text {
    flex: 1;
    min-width: 0;
}
.hu-alert-bar-text strong {
    font-weight: 700;
    margin-right: 6px;
}
.hu-alert-bar-more {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 1px 8px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
}
.hu-alert-bar-dismiss {
    flex-shrink: 0;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.85;
}
.hu-alert-bar-dismiss:hover {
    opacity: 1;
}
.news-cat-pill {
    display: inline-block;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--blue-bg);
    color: var(--accent);
}
.news-cat-pill--public-safety {
    background: #FCE8E8;
    color: #C8102E;
}
.news-cat-pill--schools {
    background: #E6F0FA;
    color: #0A4D8C;
}
.news-cat-pill--community {
    background: #E6F5EA;
    color: #1A7F36;
}
.news-cat-pill--city-hall {
    background: #F3EBFB;
    color: #6B2FB3;
}
.news-cat-pill--featured {
    background: #FFF4D6;
    color: #8A6100;
}
.news-cat-pill--events {
    background: #FFEFE0;
    color: #B95C00;
}
.news-cat-pill--local {
    background: var(--blue-bg);
    color: var(--accent);
}
.news-category {
    margin-bottom: 52px;
}
.news-category:last-child {
    margin-bottom: 0;
}
.news-category-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.3px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 24px;
}
.news-category--public-safety .news-category-title {
    border-bottom-color: #C8102E;
}
.news-category--schools .news-category-title {
    border-bottom-color: #0A4D8C;
}
.news-category--community .news-category-title {
    border-bottom-color: #1A7F36;
}
.news-category--city-hall .news-category-title {
    border-bottom-color: #6B2FB3;
}
.news-category--featured .news-category-title {
    border-bottom-color: #C8A100;
}
.news-category--events .news-category-title {
    border-bottom-color: #E07B00;
}
.news-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-hero-publisher {
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.news-archive-link {
    margin: 40px 0 0;
    text-align: center;
    font-size: 15px;
}
.news-archive-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-pill);
    display: inline-block;
    transition: background 0.18s ease, color 0.18s ease;
}
.news-archive-link a:hover {
    background: var(--accent);
    color: #fff;
}
@media (max-width: 880px) {
    .news-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}
@media (max-width: 640px) {
    .news-category-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .news-category-title {
        font-size: 22px;
    }
    .hu-alert-bar {
        font-size: 13px;
        padding: 9px 14px;
    }
    .hu-alert-bar-text {
        font-size: 13px;
    }
}





@media (max-width: 640px) {
    .weather-forecast {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .weather-current {
        padding: 12px 16px;
        gap: 12px;
    }
    .weather-current-icon {
        font-size: 36px;
    }
    .weather-current-temp {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .weather-forecast {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 880px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .news-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .news-filter-header {
        justify-content: space-between;
    }
    .news-filter-dropdown-content {
        right: auto;
        left: 0;
    }
}
@media (max-width: 640px) {
    .news-hero-band {
        padding: 28px 20px 18px;
    }
    .news-shell {
        padding: 18px 20px 60px;
    }
    .news-alert-region {
        padding: 0 20px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .news-hero {
        aspect-ratio: 4 / 3;
        max-height: none;
        margin-bottom: 28px;
    }
    .news-hero-text {
        padding: 20px 22px;
    }
    .news-hero-title {
        font-size: 24px;
    }
    .news-hero-blurb {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    .news-modal {
        padding: 0;
    }
    .news-modal-card {
        border-radius: 0;
        min-height: 100vh;
        max-height: none;
    }
    .news-modal-content {
        padding: 22px 20px 28px;
    }
    .news-modal-title {
        font-size: 26px;
    }
}.news-cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.news-cat-nav-link {
    display: inline-block;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.news-cat-nav-link:hover {
    background: var(--blue-bg);
    color: var(--accent);
    border-color: var(--accent);
}
.news-cat-nav-link.is-current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.news-cat-nav-link.is-current:hover {
    background: var(--accent);
    color: #fff;
}
.archive-controls {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.archive-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 220px;
    min-width: 200px;
}
.archive-filter-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-3);
}
.archive-select,
.archive-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
}
.archive-select:focus,
.archive-input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: var(--accent);
}
.archive-count {
    font-size: 13px;
    color: var(--text-3);
    margin-left: auto;
    padding-bottom: 10px;
}
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 40px 0 20px;
}
.archive-page-btn {
    min-width: 38px;
    padding: 8px 14px;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.archive-page-btn:hover:not(:disabled) {
    background: var(--blue-bg);
    color: var(--accent);
    border-color: var(--accent);
}
.archive-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.archive-page-btn.is-current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.archive-page-btn.is-current:hover {
    background: var(--accent);
    color: #fff;
}
.archive-page-ellipsis {
    padding: 0 6px;
    color: var(--text-3);
}
.event-month {
    margin-bottom: 44px;
}
.event-month-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.3px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 22px;
}
.event-card {
    display: flex;
    align-items: stretch;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.event-date-block {
    flex-shrink: 0;
    width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blue-bg);
    border-radius: var(--radius-md);
    padding: 10px 4px;
    color: var(--accent);
    text-align: center;
}
.event-date-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.event-date-day {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    margin: 4px 0;
    color: var(--text);
    font-weight: 400;
}
.event-date-weekday {
    font-size: 11px;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.event-body {
    flex: 1;
    min-width: 0;
}
.event-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.2px;
    margin: 0 0 6px;
    line-height: 1.3;
}
.event-meta {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 8px;
}
.event-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-card-footer {
    margin-top: 6px;
}
.event-card-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.event-card-link:hover {
    text-decoration: underline;
}
.events-list {
    margin: 0;
}
.news-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-2);
}
@media (max-width: 640px) {
    .archive-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .archive-count {
        margin-left: 0;
        padding-bottom: 0;
    }
    .event-card {
        flex-direction: column;
        gap: 14px;
        padding: 16px 18px;
    }
    .event-date-block {
        width: auto;
        flex-direction: row;
        gap: 10px;
        padding: 8px 14px;
    }
    .event-date-day {
        font-size: 24px;
        margin: 0;
    }
}
.news-hero-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    padding: 32px 48px;
    color: #fff;
}
.news-hero-meta {
    justify-content: center;
}
.news-hero-title {
    text-align: center;
}
.news-hero-blurb {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}
.weather-link-wrap {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.weather-link-wrap:hover .weather-current,
.weather-link-wrap:hover .weather-link-cta {
    color: var(--accent);
}
.weather-current {
    position: relative;
}
.weather-link-cta {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.news-top-stories {
    margin-bottom: 32px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 22px 24px 24px;
    box-shadow: var(--shadow-sm);
}
.news-top-stories[hidden] {
    display: none;
}
.news-top-stories-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.3px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.news-top-stories-meta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-3);
    background: var(--blue-bg);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}
.news-top-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
#news-filter-bar {
    display: none !important;
}
@media (max-width: 880px) {
    .news-top-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .weather-link-cta {
        position: static;
        transform: none;
        display: block;
        margin-top: 8px;
        text-align: right;
    }
}
@media (max-width: 640px) {
    .news-top-stories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .news-hero-text {
        padding: 24px 22px;
    }
}
.weather-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    margin-top: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.18s ease, color 0.18s ease;
}
.weather-strip:hover {
    border-color: var(--accent);
}
.weather-strip:hover .weather-strip-cta {
    text-decoration: underline;
}
.weather-strip-now {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 14px;
    border-right: 1px solid var(--border-soft);
    flex-shrink: 0;
}
.weather-strip-icon {
    font-size: 22px;
    line-height: 1;
}
.weather-strip-temp {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}
.weather-strip-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.2;
}
.weather-strip-forecast {
    display: flex;
    gap: 18px;
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.weather-strip-day {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-2);
    flex-shrink: 0;
}
.weather-strip-day-name {
    font-weight: 600;
    color: var(--text);
}
.weather-strip-day-icon {
    font-size: 14px;
}
.weather-strip-day-temps {
    font-variant-numeric: tabular-nums;
}
.weather-strip-cta {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 760px) {
    .weather-strip {
        border-radius: var(--radius-lg);
        padding: 12px 14px;
    }
    .weather-strip-cta {
        width: 100%;
        text-align: right;
        margin-top: 4px;
    }
    .weather-strip-forecast {
        width: 100%;
    }
}
