.news-page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 72px;
}

.news-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.news-hero h1,
.news-article h1 {
    margin: 0 0 12px;
    color: var(--site-text);
}

.news-hero p,
.news-lede,
.news-lede-content {
    max-width: 720px;
    color: var(--site-muted);
    font-size: 1.08rem;
}

.news-lede-content p {
    margin-bottom: 0;
}

.news-kicker,
.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 10px;
    color: var(--site-muted);
    font-size: .9rem;
    font-weight: 600;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-filter a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    padding: 7px 14px;
    color: var(--site-text);
    text-decoration: none;
}

.news-filter a.active,
.news-filter a:focus,
.news-filter a:hover {
    border-color: var(--aw-primary);
    color: var(--aw-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    border: 1px solid var(--site-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--site-surface);
}

.news-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--site-border);
}

.news-card-image img,
.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-body {
    padding: 18px;
}

.news-card h2 {
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.news-card h2 a {
    color: var(--site-text);
    text-decoration: none;
}

.news-card h2 a:hover,
.news-card h2 a:focus {
    color: var(--site-link);
}

.news-card p:last-child {
    margin-bottom: 0;
    color: var(--site-muted);
}

.news-empty {
    color: var(--site-muted);
}

.news-article {
    max-width: 840px;
    margin: 0 auto;
}

.news-article-header {
    margin-bottom: 28px;
}

.news-byline {
    color: var(--site-muted);
}

.news-article-image {
    aspect-ratio: 16 / 9;
    margin: 0 0 32px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--site-border);
}

.news-content {
    font-size: 1.04rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .news-hero {
        display: block;
    }

    .news-filter {
        margin-top: 18px;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-page {
        width: min(100% - 24px, 1120px);
        padding-top: 28px;
    }

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