.news-hero {
    position: relative;
    height: 480px;
    margin-top: 81px;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-hero-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.news-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 22, 40, 0.76) 0%, rgba(1, 22, 40, 0.28) 58%, rgba(1, 22, 40, 0.16) 100%);
}

.news-list-section {
    padding: 96px 0 120px;
    background: #F5F7FA;
}

.news-list-wrap {
    width: min(1540px, calc(100% - 80px));
    margin: 0 auto;
    transition: opacity 0.25s ease;
}

.news-list-wrap.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.news-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.news-section-en {
    margin: 12px 0 0;
    font-size: 28px;
    letter-spacing: 6px;
    color: #999999;
}

.news-section-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.12;
    color: #111111;
}

.news-section-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    max-width: 640px;
    margin: 0;
}

.news-section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #D6DCE3;
    font-size: 16px;
    color: #666666;
    transition: all 0.3s ease;
}

.news-section-link:hover,
.news-section-link.is-active {
    border-color: #0D3F78;
    background: #0D3F78;
    color: #FFFFFF;
}

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

.news-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 18px 54px rgba(10, 34, 58, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 34, 58, 0.14);
}

.news-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #0D3F78 0%, #0581B7 100%);
    aspect-ratio: 488 / 320;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.06);
}

.news-card-media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 26px 32px;
}

.news-card-title {
    margin: 0 0 16px;
}

.news-card-title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #111111;
}

.news-card-title a:hover {
    color: #0581B7;
}

.news-card-desc {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 17px;
    line-height: 1.9;
    color: #5C6670;
}

.news-pagination {
    margin-top: 56px;
}

.news-pagination .pagination {
    margin-bottom: 0;
}

@media (max-width: 1440px) {
    .news-list {
        gap: 24px;
    }

    .news-card-body {
        padding: 24px 22px 28px;
    }

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

@media (max-width: 1199px) {
    .news-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-section-desc {
        max-width: none;
        justify-content: flex-start;
    }

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

    .news-card-media {
        aspect-ratio: 1.4 / 1;
    }
}

@media (max-width: 767px) {
    .news-hero {
        margin-top: 64px;
        display: block;
        height: auto;
        min-height: 0;
        overflow: hidden;
        background: none !important;
        line-height: 0;
    }

    .news-hero-image {
        display: block;
        width: 120%;
        height: auto;
        max-width: none;
        margin-left: -10%;
        object-fit: contain;
        object-position: center top;
    }

    .news-list-section {
        padding: 68px 0 84px;
    }

    .news-list-wrap {
        width: calc(100% - 32px);
    }

    .news-section-en {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .news-section-title {
        font-size: 32px;
    }

    .news-section-desc,
    .news-card-desc {
        font-size: 16px;
    }

    .news-section-link {
        width: 160px;
        height: 40px;
        padding: 0 16px;
        font-size: 15px;
    }

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

    .news-card-media {
        aspect-ratio: 1.45 / 1;
    }

    .news-card-body {
        padding: 28px 22px 32px;
    }

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