/* Premium news & updates styling */

.news-page-section {
    background-color: #f8fafc;
}

/* Modern News Card */
.modern-news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(13, 31, 45, 0.03) !important;
    box-shadow: 0 4px 15px rgba(13, 31, 45, 0.03) !important;
}

.modern-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(13, 31, 45, 0.08) !important;
}

.news-img-wrap img {
    transition: transform 0.6s ease;
}

.modern-news-card:hover .news-img-wrap img {
    transform: scale(1.04);
}

.news-content-wrap {
    text-align: left;
}

.news-title {
    transition: color 0.2s ease;
}

.modern-news-card:hover .news-title {
    color: #1964a2 !important;
}

/* Gap helper for listing */
.gap-4 {
    gap: 1.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

/* Responsive viewports */
@media (max-width: 768px) {
    .news-img-wrap {
        height: 220px !important;
    }
}
