.news-page {
    background:
        radial-gradient(circle at top right, rgba(23, 165, 137, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fafb 0%, #ffffff 340px, #f8fbfc 100%);
}

.news-page-header {
    padding: 176px 0 56px;
    position: relative;
    overflow: hidden;
}

.news-page-header::before,
.news-page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.news-page-header::before {
    inset: 70px auto auto 8%;
    width: 220px;
    height: 220px;
    background: rgba(23, 165, 137, 0.08);
    filter: blur(18px);
}

.news-page-header::after {
    inset: 48px 9% auto auto;
    width: 260px;
    height: 260px;
    background: rgba(26, 82, 118, 0.08);
    filter: blur(22px);
}

.news-page-header-content,
.news-filter-section .container {
    position: relative;
    z-index: 1;
}

.news-page-header-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.news-page-badge {
    margin-bottom: 20px;
}

.news-page-title {
    font-size: clamp(38px, 5vw, 56px);
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.news-page-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-light);
}

.news-breadcrumb {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 82, 118, 0.08);
    color: var(--text-light);
    box-shadow: 0 12px 26px rgba(10, 37, 64, 0.06);
}

.news-breadcrumb a:hover {
    color: var(--accent-teal);
}

.news-filter-section {
    position: sticky;
    top: 110px;
    z-index: 90;
    padding-bottom: 16px;
}

.news-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 82, 118, 0.08);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
    backdrop-filter: blur(18px);
}

.news-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-category-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    background: #f8fafb;
    border: 1px solid var(--border-light);
}

.news-category-filter a:hover,
.news-category-filter a.active {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.news-search-box {
    position: relative;
    width: min(360px, 100%);
}

.news-search-box input {
    width: 100%;
    min-height: 50px;
    padding: 12px 56px 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
}

.news-search-box input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(23, 165, 137, 0.12);
}

.news-search-box button {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-search-box button:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 12px 24px rgba(23, 165, 137, 0.2);
}

.news-list-section {
    padding: 22px 0 96px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 82, 118, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(10, 37, 64, 0.14);
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.news-image {
    position: relative;
    display: block;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.16) 0%, rgba(23, 165, 137, 0.14) 100%);
    overflow: hidden;
}

.news-card.featured .news-image {
    min-height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: rgba(10, 37, 64, 0.28);
}

.news-card.featured .news-image-placeholder {
    min-height: 100%;
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 14px;
    border-radius: 999px;
    color: var(--white);
    background: var(--gradient-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 26px;
}

.news-card.featured .news-content {
    justify-content: center;
    padding: 36px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 13px;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: var(--accent-teal);
}

.news-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.news-card.featured .news-card-title {
    font-size: 30px;
}

.news-card-title a:hover {
    color: var(--accent-teal);
}

.news-excerpt {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 14px;
}

.news-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.news-pagination {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
}

.news-pagination a:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    background: #f8fafb;
}

.news-pagination .current {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.news-pagination .prev,
.news-pagination .next {
    gap: 8px;
}

.news-empty-state {
    padding: 72px 24px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 82, 118, 0.08);
    box-shadow: 0 18px 42px rgba(10, 37, 64, 0.08);
}

.news-empty-state-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--accent-teal);
    background: rgba(23, 165, 137, 0.1);
}

.news-empty-state h2 {
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.news-empty-state p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .news-page-header {
        padding-top: 160px;
    }

    .news-filter-section {
        top: 82px;
    }

    .news-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .news-search-box {
        width: 100%;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        min-height: 280px;
    }

    .news-card.featured .news-content {
        padding: 26px;
    }
}

@media (max-width: 768px) {
    .news-page-title {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-category-filter {
        justify-content: center;
    }

    .news-card.featured .news-card-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .news-page-header {
        padding-top: 146px;
    }

    .news-filter-section {
        position: static;
    }

    .news-filter-bar,
    .news-empty-state {
        padding: 20px;
        border-radius: 22px;
    }

    .news-content,
    .news-card.featured .news-content {
        padding: 22px;
    }

    .news-breadcrumb {
        flex-wrap: wrap;
    }
}
