/* News Page Styles */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 80px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px !important;
    font-weight: 800;
    display: inline-block;
    color: #1a1a1a;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E0EFCA 0%, #B4E8D7 100%);
    border-radius: 2px;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.widget-title {
    background-color: #E0EFCA;
    color: #1a1a1a;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #f1f3f5;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: block;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

.category-item a:hover {
    background-color: #f8f9fa;
    padding-left: 25px;
    color: #0d9488;
}

.category-item.active a {
    background-color: #B4E8D7;
    color: #1a1a1a;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #0056b3;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.page-item:hover {
    background-color: #e9ecef;
}

.page-item.active {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

@media (max-width: 992px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-banner {
        padding: 40px 0;
    }
}
