/* ======================================
   GENERAL NEWS PAGE LAYOUT
====================================== */

.news-article {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2c61;
    line-height: 1.4;
}

.news-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Paragraph styling */
.news-article p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1rem;
}

/* ======================================
   LEFT & RIGHT SIDEBARS
====================================== */

.sidebar-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a2c61;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Sidebar links */
.sidebar-links,
.latest-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li,
.latest-news-list li {
    margin-bottom: 10px;
}

.sidebar-links a,
.latest-news-list a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-links a:hover,
.latest-news-list a:hover {
    color: #0a4db3;
    text-decoration: underline;
}

/* ======================================
   NEWS IMAGE GALLERY
====================================== */

.news-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ======================================
   FEATURED IMAGE (OPTIONAL)
====================================== */

.news-featured-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ======================================
   RESPONSIVE TWEAKS
====================================== */

@media (max-width: 991px) {
    .news-article {
        padding: 20px;
    }

    .news-title {
        font-size: 1.5rem;
    }
}
