/* ============================================================
   Section News — Elevated Cards with Green Accent (Option 1)
   Scoped to #section-news
   ============================================================ */

/* --- Section background --- */
#section-news {
    background: #f7f9f7;
    padding: 60px 0 50px;
}

/* --- Header --- */
#section-news .news-header {
    text-align: center;
    margin-bottom: 40px;
}

#section-news .news-kicker {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,133,62,0.08);
    color: #00853e;
    margin-bottom: 10px;
}

#section-news .news-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

#section-news .news-header hr {
    border: none;
    height: 3px;
    width: 80px;
    background: #00853e;
    margin: 0 auto 16px;
    border-radius: 2px;
}

/* --- Card grid --- */
#section-news .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- Individual card --- */
#section-news .news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border-top: 4px solid #00853e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

#section-news .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,133,62,0.15);
}

/* --- Card image --- */
#section-news .news-card .blog-post {
    margin-top: 0;
}

#section-news .news-card .thumbnail-1 {
    padding: 0;
    border: none;
    background: none;
    max-width: none;
    margin: 0;
}

#section-news .news-card .thumbnail-mod-2 {
    max-width: none;
    margin: 0;
}

#section-news .news-card .blog-post > a {
    display: block;
    overflow: hidden;
}

#section-news .news-card .blog-post > a > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#section-news .news-card:hover .blog-post > a > img {
    transform: scale(1.05);
}

/* --- Card body / caption --- */
#section-news .news-card .caption {
    padding: 20px 22px 24px;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --- Date --- */
#section-news .news-card .blog-post-time {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    margin-top: 0;
}

#section-news .news-card .blog-post-time::before {
    font-family: 'FontAwesome';
    content: '\f073';
    margin-right: 6px;
    color: #ccc;
}

/* --- Title --- */
#section-news .news-card .blog-post-title {
    margin-bottom: 10px;
}

#section-news .news-card .blog-post-title h4 {
    font-size: 16px;
    font-weight: 700;
    color: #282e3e !important;
    line-height: 1.4;
    margin: 0;
}

#section-news .news-card .blog-post-title h4 a {
    color: #282e3e !important;
    text-decoration: none;
    transition: color 0.2s;
}

#section-news .news-card .blog-post-title h4 a:hover {
    color: #00853e !important;
}

/* --- Body / excerpt --- */
#section-news .news-card .blog-post-body {
    margin-top: 0;
    flex: 1;
}

#section-news .news-card .blog-post-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

#section-news .news-card .blog-post-body .blog-post-body-height {
    margin-bottom: 10px;
}

/* --- Keep reading link --- */
#section-news .news-card .blog-post-body p a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00853e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s;
}

#section-news .news-card .blog-post-body p a::after {
    font-family: 'FontAwesome';
    content: '\f061';
    font-size: 11px;
    transition: transform 0.2s;
}

#section-news .news-card .blog-post-body p a:hover {
    gap: 10px;
    color: #00853e;
}

/* --- CTA button --- */
#section-news .news-cta {
    text-align: center;
    margin-top: 36px;
}

#section-news .news-cta a {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #00853e;
    color: #00853e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: none;
}

#section-news .news-cta a:hover {
    background: #00853e;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    #section-news .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    #section-news .news-grid {
        grid-template-columns: 1fr;
    }
}
