.news-list-page,
.news-article-page {
    max-width: 980px;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.news-page-title {
    margin-bottom: .75rem;
}

.news-intro,
.news-empty {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--wn-text-muted, #b9b1a8);
    text-align: center;
}

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

.news-card {
    overflow: hidden;
    color: var(--wn-text, #f7f2e8);
    text-decoration: none;
    background: linear-gradient(145deg, rgba(37, 31, 28, .98), rgba(20, 18, 17, .98));
    border: 1px solid rgba(255, 107, 0, .42);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
    transition: transform .18s ease, border-color .18s ease;
}

.news-card:hover {
    color: inherit;
    transform: translateY(-3px);
    border-color: #ff6b00;
}

.news-card-cover {
    display: grid;
    place-items: center;
    height: 220px;
    overflow: hidden;
    background: radial-gradient(circle, #663110 0%, #191715 72%);
}

.news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-cover-placeholder {
    font-size: 4rem;
}

.news-card-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.news-card-date,
.news-article-date {
    color: #ff9a52;
    font-size: .82rem;
}

.news-card-title {
    margin: .4rem 0 .6rem;
    font-size: 1.35rem;
}

.news-card-excerpt {
    color: var(--wn-text-muted, #b9b1a8);
    line-height: 1.6;
}

.news-card-tags,
.news-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: .8rem 0;
}

.news-tag-chip {
    padding: .2rem .55rem;
    color: #ffe0c7;
    font-size: .76rem;
    background: rgba(255, 107, 0, .18);
    border: 1px solid rgba(255, 107, 0, .38);
    border-radius: 999px;
}

.news-card-readmore,
.news-cta a,
.news-page-link {
    color: #ff8a36;
    font-weight: 700;
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.news-article {
    padding: clamp(1.25rem, 4vw, 2.7rem);
    background: rgba(25, 22, 20, .96);
    border: 1px solid rgba(255, 107, 0, .4);
    border-radius: 16px;
}

.news-article-cover {
    display: block;
    width: 100%;
    max-height: 480px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border-radius: 10px;
}

.news-article-title {
    margin-bottom: .45rem;
}

.news-fallback-notice {
    margin: 1rem 0;
    padding: .7rem 1rem;
    color: #ffd6b8;
    background: rgba(255, 107, 0, .12);
    border-left: 3px solid #ff6b00;
}

.news-body {
    margin-top: 1.5rem;
    line-height: 1.75;
}

.news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-body iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.news-cta--top {
    margin-bottom: 1rem;
}

@media (max-width: 720px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-cover {
        height: 190px;
    }
}
