/* Container for the featured articles block */
.featured-articles-block {
    margin-bottom: 40px;

    background-color: #e2e3e4;
    padding: 30px 20px 20px 20px;
    margin-bottom: 20px;

    
}


h2.featured-articles-headline {
    color: #e03221;font-size: 2rem;
    text-align: center;
    margin-bottom: 0px;
}


p.featured-articles-subheadline {
    font-weight: bold;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    color: #000;
    padding: 0 20px;
    margin-bottom: 30px !important;
    font-family: 'Gabarito', sans-serif !important;
}

.featured-articles-block  .bylineSep {
    display: none;
}

.featured-articles-block .byline,.featured-articles-block .byline a {
    color: #df1f2d !important;
    font-size:13px;
}

/* Headline */
.featured-articles-headline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.featured-articles-headline a {
    text-decoration: none;
    color: inherit;
}


/* Subheadline */
.featured-articles-subheadline {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Featured image */
.featured-articles-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Articles grid */
.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px; /* Space between items */
}

/* Individual article items */
.featured-article-item {
    padding: 0;
}

/* Article title */
.featured-article-item .article-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.featured-article-item .article-title a {
    text-decoration: none;    
    font-family: 'Gabarito', sans-serif !important;
    color: #000 !important;
    font-size: 17px;
     margin-bottom:0px !important;
    font-weight: 900;
}

.featured-article-item .article-title a:hover {
    color: #0073aa; /* Optional hover color */
}

/* Article excerpt */
.featured-article-item .article-excerpt {
    font-size: 14px;
    color: #222222;
    margin: 0;
    font-family: 'Libre Caslon Text', serif !important;
  
   font-size: 16px !important;
   line-height: 28px !important;
   padding-bottom:0px;
}

/* Responsive: Stack articles on mobile */
@media (max-width: 768px) {
    .featured-articles-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}
