.news-banner {
    position: relative;
    overflow: hidden;
    padding: 48px 0 42px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #083985 0%, #0b4db1 54%, #0d5ad0 100%);
}

.news-banner::before,
.news-banner::after {
    position: absolute;
    content: '';
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.news-banner::before {
    top: -140px;
    left: -80px;
    width: 360px;
    height: 360px;
}

.news-banner::after {
    right: -110px;
    bottom: -190px;
    width: 420px;
    height: 420px;
}

.news-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    text-align: center;
}

.news-banner-graphic {
    width: min(100%, 360px);
    color: rgba(255, 255, 255, 0.96);
}

.news-banner-graphic-image {
    display: block;
    width: 100%;
    height: auto;
}

.news-banner-title {
    margin: 0;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.news-list-section {
    padding: 34px 0 72px;
    background: #fff;
}

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

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.news-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.news-card-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(180deg, #eef4ff 0%, #d8e6ff 100%);
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.04);
}

.news-card-link:hover .news-card {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.news-card-body {
    display: flex;
    flex: 1;
    min-height: 190px;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.news-card-category {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #edf4ff;
    color: #0c4fb5;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card-excerpt {
    display: -webkit-box;
    margin: 10px 0 0;
    overflow: hidden;
    color: #5b6474;
    font-size: 16px;
    line-height: 1.7;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card-date {
    margin-top: auto;
    padding-top: 16px;
    color: #0b4db1;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.news-pagination-link {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7deea;
    border-radius: 999px;
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-pagination-link:hover,
.news-pagination-link.is-active {
    border-color: #0b4db1;
    background: #0b4db1;
    color: #fff;
}

.news-empty-state {
    padding: 40px 16px;
    text-align: center;
}

.news-empty-title {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
}

.news-empty-text {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
}

.news-banner--detail {
    padding: 42px 0 36px;
}

.news-banner-content--detail {
    min-height: 160px;
    align-items: center;
    text-align: center;
}

.news-detail-section {
    padding: 20px 0 72px;
    background: #fff;
}

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

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.news-detail-date {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
}

.news-detail-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #0b4db1;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.news-detail-title {
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #2f61b8;
    color: #1e3a8a;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
}

.news-detail-featured {
    margin-top: 26px;
}

.news-detail-featured-image {
    display: block;
    width: 100%;
    border-radius: 4px;
}

.news-detail-content {
    margin-top: 24px;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    margin: 1.5em 0 0.65em;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.35;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote {
    margin: 0 0 1em;
}

.news-detail-content ul,
.news-detail-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-detail-content ul {
    list-style-type: disc;
}

.news-detail-content ol {
    list-style-type: decimal;
}

.news-detail-content li {
    margin-bottom: 0.5rem;
}

.news-detail-content a {
    color: #0b4db1;
    text-decoration: underline;
}

.news-detail-related {
    max-width: 1140px;
    margin: 54px auto 0;
}

.news-detail-related-title {
    margin: 0 0 18px;
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.news-detail-related-carousel {
    position: relative;
    padding: 0 34px;
}

.news-detail-related-track {
    display: flex;
    gap: 18px;
    will-change: transform;
}

.news-detail-related-slide {
    flex: 0 0 calc((100% - 36px) / 3);
}

.news-detail-related-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-detail-related-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(180deg, #eef4ff 0%, #d8e6ff 100%);
}

.news-detail-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-detail-related-card:hover .news-detail-related-image {
    transform: scale(1.04);
}

.news-detail-related-card-title {
    display: -webkit-box;
    margin: 10px 0 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-detail-related-card-excerpt {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-detail-related-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #d7deea;
    border-radius: 999px;
    background: #fff;
    color: #1e3a8a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    transition: all 0.2s ease;
}

.news-detail-related-nav:hover {
    background: #0b4db1;
    border-color: #0b4db1;
    color: #fff;
}

.news-detail-related-nav--prev {
    left: -8px;
}

.news-detail-related-nav--next {
    right: -8px;
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail-related-slide {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 640px) {
    .news-banner {
        padding: 34px 0 28px;
    }

    .news-banner-content {
        min-height: 250px;
    }

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

    .news-card-title {
        font-size: 18px;
    }

    .news-banner-content--detail {
        min-height: 110px;
    }

    .news-detail-title {
        font-size: 26px;
    }

    .news-detail-content {
        font-size: 16px;
    }

    .news-detail-related-carousel {
        padding: 0 26px;
    }

    .news-detail-related-slide {
        flex-basis: 100%;
    }

    .news-detail-related-nav {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .news-detail-related-nav--prev {
        left: -2px;
    }

    .news-detail-related-nav--next {
        right: -2px;
    }
}