/* SERVICES SECTION */
.news-section {
    position: relative;
    width: 100%;
    background-color: #bfc4d4cb;   /* matches your dark theme */
    padding: 10px 0;
    height: 85vh;            /* premium spacing */
    scroll-snap-align: start;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-title {
    font-family: 'BPG Arial', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0A1025;   /* gold */
    
    text-align: left;
    margin-bottom: 150px;
}

/* GRID of 6 CARDS */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 170px;

}

/* EACH CARD */
.news-card {
    background-color: #ffffff;        /* white card */
    border: 2px solid #C8A046;        /* gold border */
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* CARD TITLE */
.news-card h3 {
    font-family: 'BPG Arial', sans-serif;
    font-size: 22px;
    color: #0A1025;   /* dark navy text */
    margin: 0;
}

/* HOVER EFFECT */
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}


@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* 1 COLUMN — MOBILE */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    .news-card {
        width: 80%;
        margin: 0 auto;
    }
    .news-section {
        height: auto;
        align-items: center;
    }
}
