.news-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.news-section .container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #001488;
}

.section-header .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #001488;
    letter-spacing: 2px;
    position: relative;
    padding-left: 14px;
}

.section-header .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background-color: #001488;
}

.section-header .more-link {
    color: #999999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-header .more-link:hover {
    color: #001488;
}

.news-content {
    display: flex;
    gap: 30px;
}

.news-carousel {
    flex: 0 0 60%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.news-carousel .swiper-slide {
    position: relative;
    overflow: hidden;
}

.news-carousel .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-carousel .swiper-slide:hover img {
    transform: scale(1.05);
}

.news-carousel .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
}

.news-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.news-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #FFEA00;
}

.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 380px;
    overflow: hidden;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f8f9ff;
}

.news-item:hover .news-title {
    color: #001488;
}

.news-date {
    flex: 0 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    padding: 6px 0;
}

.news-date .day {
    font-size: 28px;
    font-weight: 700;
    color: #001488;
    line-height: 1.1;
}

.news-date .year-month {
    font-size: 12px;
    color: #999999;
    margin-top: 2px;
}

.news-title {
    flex: 1;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

@media screen and (max-width: 992px) {
    .news-section {
        padding: 30px 15px;
    }

    .section-header .section-title {
        font-size: 20px;
    }

    .news-content {
        gap: 20px;
    }

    .news-carousel {
        flex: 0 0 55%;
        height: 300px;
    }

    .news-carousel .swiper-slide img {
        height: 300px;
    }

    .news-list {
        height: 300px;
    }

    .news-date {
        flex: 0 0 60px;
        margin-right: 12px;
    }

    .news-date .day {
        font-size: 24px;
    }

    .news-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .news-content {
        flex-direction: column;
    }

    .news-carousel {
        flex: none;
        width: 100%;
        height: 220px;
    }

    .news-carousel .swiper-slide img {
        height: 220px;
    }

    .news-list {
        flex: none;
        width: 100%;
        height: auto;
    }

    .news-item {
        padding: 12px 0;
    }

    .news-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media screen and (max-width: 480px) {
    .news-section {
        padding: 25px 10px;
    }

    .section-header .section-title {
        font-size: 18px;
    }

    .section-header .more-link {
        font-size: 13px;
    }

    .news-carousel {
        height: 180px;
    }

    .news-carousel .swiper-slide img {
        height: 180px;
    }

    .news-date {
        flex: 0 0 50px;
        margin-right: 10px;
    }

    .news-date .day {
        font-size: 20px;
    }

    .news-date .year-month {
        font-size: 11px;
    }

    .news-title {
        font-size: 13px;
    }
}