body.news-page {
    background: linear-gradient(135deg, #c4c8cc 0%, #e2e4e8 20%, #d0d4d8 40%, #e8eaee 60%, #d8dce0 80%, #c8ccd0 100%);
    background-attachment: fixed;
}
.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.sb-eda-logo {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.news-pagination button {
    min-width: 2.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.news-pagination button:hover:not(:disabled) {
    border-color: #ea580c;
    color: #c2410c;
}
.news-pagination button.active {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}
.news-pagination button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.news-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s, border-color 0.25s;
}
.news-card:hover {
    border-color: #fdba74;
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.12);
}
@media (min-width: 768px) {
    .news-card {
        grid-template-columns: 280px 1fr;
    }
}
.news-card__image {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 180px;
}
.news-card__date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ea580c;
}
.news-article-prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #0f172a;
}
.news-article-prose p,
.news-article-prose li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.news-article-prose ul {
    list-style: disc;
    padding-left: 1.25rem;
}
