.container.news-page, .container.news-detail-page {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    display: flex !important;
    gap: 2rem !important;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0ee 100%) !important;
}

.news-main, .news-detail-main {
    flex: 3 !important;
    background: #fff !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.news-main h2, .news-detail-main h2 {
    font-size: 2rem !important;
    color: #333 !important;
    margin-bottom: 1.5rem !important;
}

.news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
}

.news-item {
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.news-item:hover {
    transform: scale(1.03) !important;
}

.news-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

.news-item h3, .news-detail-main h3 {
    font-size: 1.2rem !important;
    color: #333 !important;
    margin: 1rem !important;
}

.news-date, .news-category {
    font-size: 0.9rem !important;
    color: #666 !important;
    margin: 0 1rem !important;
}

.news-item p, .news-detail-main p {
    font-size: 1rem !important;
    color: #333 !important;
    margin: 0 1rem 1rem !important;
}

.news-link, .news-back-link {
    display: inline-block !important;
    color: #004022 !important;
    text-decoration: none !important;
    margin: 0 1rem 1rem !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.news-link:hover, .news-back-link:hover {
    color: #003018 !important;
}

.pagination {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 2rem !important;
}

.pagination a {
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    color: #004022 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.pagination a:hover {
    background: #005b2e !important;
    color: #fff !important;
}

.pagination a.active {
    background: #004022 !important;
    color: #fff !important;
    font-weight: bold !important;
}

.news-sidebar {
    flex: 1 !important;
    background: #fff !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.news-sidebar h3 {
    font-size: 1.6rem !important;
    color: #333 !important;
    margin-bottom: 1rem !important;
}

.news-sidebar ul {
    list-style: none !important;
    padding: 0 !important;
}

.news-sidebar ul li {
    margin-bottom: 0.5rem !important;
}

.news-sidebar ul li a {
    color: #004022 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.news-sidebar ul li a:hover {
    color: #003018 !important;
}

.news-sidebar ul li a.active {
    color: #004022 !important;
    font-weight: bold !important;
    background: #e8f0ee !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
}

.news-detail-main .main-image {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-bottom: 1rem !important;
}

.news-detail-main .news-content {
    font-size: 1.1rem !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.news-detail-main .news-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.news-detail-main .gallery-image {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}