.news-list-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.news-list-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.news-list-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    background-color: #f8f9ff;
}

.news-list-item:hover .item-title {
    color: #001488;
}

.news-list-item .item-date {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 8px 0;
    border-right: 2px solid #001488;
}

.news-list-item .item-date .day {
    font-size: 28px;
    font-weight: 700;
    color: #001488;
    line-height: 1.1;
}

.news-list-item .item-date .year-month {
    font-size: 12px;
    color: #999999;
    margin-top: 4px;
}

.news-list-item .item-title {
    flex: 1;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.pagination a:hover {
    color: #001488;
    border-color: #001488;
    background-color: #f0f2ff;
}

.pagination .active {
    background-color: #001488;
    color: #ffffff;
    border-color: #001488;
}

.pagination .disabled {
    color: #cccccc;
    border-color: #eeeeee;
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .news-list-section {
        padding: 30px 15px;
    }

    .news-list-item {
        padding: 15px 0;
    }

    .news-list-item .item-date {
        flex: 0 0 65px;
        margin-right: 15px;
    }

    .news-list-item .item-date .day {
        font-size: 24px;
    }

    .news-list-item .item-title {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .news-list-section {
        padding: 20px 10px;
    }

    .news-list-item {
        padding: 12px 0;
    }

    .news-list-item .item-date {
        flex: 0 0 55px;
        margin-right: 12px;
        padding: 6px 0;
    }

    .news-list-item .item-date .day {
        font-size: 20px;
    }

    .news-list-item .item-date .year-month {
        font-size: 11px;
    }

    .news-list-item .item-title {
        font-size: 14px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .pagination a,
    .pagination span {
        min-width: 30px;
        height: 30px;
        font-size: 13px;
    }
}