.news-list-a0009146 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #f4f6fa;
    padding: 20px;
}
.news-item {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}
.news-image-wrap {
    width: 60%;
    position: relative;
    z-index: 1;
    overflow: hidden; /* For hover animations */
    border-radius: 8px; /* Default border radius */
}
.news-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.news-content-box {
    width: 50%;
    background: #ffffff;
    padding: 40px;
    position: relative;
    z-index: 2;
    margin-left: -10%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px; /* Default border radius */
    transition: box-shadow 0.3s ease;
}
.news-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}
.news-title {
    margin: 0;
    font-size: 24px;
    color: #111827;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.news-excerpt {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}
.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 13px;
}
.news-date svg, .news-date i {
    width: 14px;
    height: 14px;
}

/* Pagination Styles */
.news-pagination-a0009146 {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.news-pagination-a0009146 .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #ffffff;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.news-pagination-a0009146 .page-numbers:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #d1d5db;
}
.news-pagination-a0009146 .page-numbers.current {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.2);
}
.news-pagination-a0009146 .page-numbers.prev,
.news-pagination-a0009146 .page-numbers.next {
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    .news-image-wrap {
        width: 100%;
    }
    .news-content-box {
        width: 90%;
        margin-left: 0;
        margin-top: -30px;
        padding: 25px;
    }
}
