.newsSection {
    /*padding: 80px 20px;*/
    /*background-color: var(--white);*/
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.newsSection .news-header {
    margin-bottom: 50px;
}

.newsSection .subtitle {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    /*letter-spacing: 1.5px;*/
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .news-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .highlight {
    color: var(--primary-color);
}

/* Featured Story Layout */
.newsSection .featured-news {
    display: flex;
    background: var(--bg-gray);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .featured-image {
    flex: 1.5;
}

.newsSection .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsSection .featured-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .category {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    width: fit-content;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .featured-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* News Grid Layout */
.newsSection .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-height: 600px;
    overflow-y: auto; /* Use 'auto' so it only shows when needed */

    /* Firefox Support */
    scrollbar-width: thin;
    scrollbar-color: #ef9a3e #f1f1f1;
}

/* Webkit Browsers (Chrome, Safari, Edge) */
.newsSection .news-grid::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
}

.newsSection .news-grid::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the tracking area */
    border-radius: 10px;
}

.newsSection .news-grid::-webkit-scrollbar-thumb {
    background: #ef9a3e; /* Color of the scrolling handle */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Creates padding effect around thumb */
}

.newsSection .news-grid::-webkit-scrollbar-thumb:hover {
    background: #ef9a3e !important; /* Color when hovering over the handle */
}

.newsSection .news-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.newsSection .news-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.newsSection .card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.newsSection .card-body {
    padding: 25px;
}

.newsSection .date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.newsSection .card-body h3 {
    margin: 15px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-family: 'Helvetica Neue', sans-serif;
}

.newsSection .card-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}


.newsSection .newsSectionGridArea{
    margin: 0 25px;
    display: grid;
    grid-template-columns: auto 75px auto;
}





.newsSection .newsSectionGridArea .spacer_divider{
    border-left: 1px solid #ef9a3e;
    margin: 0 auto;
}





/* Responsive Rules */
@media (max-width: 992px) {
    .newsSection .featured-news {
        flex-direction: column;
    }
    .newsSection .featured-content {
        padding: 30px;
    }

    .newsSection .newsSectionGridArea{
        display: block;
    }
}

@media (max-width: 600px) {
    .newsSection .news-header h2 {
        font-size: 2rem;
    }
    .newsSection .featured-content h1 {
        font-size: 1.6rem;
    }
}