/* =========================================
   ARTICLE HERO
========================================= */

.article-hero {
    position: relative;

    min-height: 430px;
margin-top: 117px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(3, 131, 36, 0.96),
            rgba(3, 131, 36, 0.82)
        );

    overflow: hidden;
}


/* Decorative red shape */

.article-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -130px;

    border-radius: 50%;

    background: rgba(228, 34, 40, 0.18);
}


.article-hero-content {
    position: relative;

    max-width: 900px;

    padding: 90px 0;

    z-index: 2;
}


/* Back button */

.article-back {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: 0.25s ease;
}

.article-back:hover {
    color: #ffffff;

    text-decoration: none;

    transform: translateX(-3px);
}


/* Category */

.article-category {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 14px;

    border-radius: 30px;

    background: #e42228;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Title */

.article-hero h1 {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 700;
}


/* Meta */

.article-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 13px;
}

.article-meta span {
    display: flex;

    align-items: center;

    gap: 8px;
}


/* =========================================
   ARTICLE SECTION
========================================= */

.article-section {
    padding: 80px 0 90px;

    background: #ffffff;
}


/* Article */

.article-content {
    color: #626262;

    font-size: 16px;

    line-height: 1.9;
}


/* Main image */

.article-image {
    width: 100%;

    height: 450px;

    margin-bottom: 45px;

    overflow: hidden;

    border-radius: 14px;

    background: #f5f7f6;
}

.article-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* Lead */

.article-lead {
    margin-bottom: 35px;

    color: #038324;

    font-size: 21px;

    line-height: 1.7;

    font-weight: 500;
}


/* Headings */

.article-content h2 {
    margin: 45px 0 18px;

    color: #303030;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;
}

.article-content h3 {
    margin: 35px 0 15px;

    color: #303030;

    font-size: 22px;

    line-height: 1.4;

    font-weight: 700;
}


/* Paragraph */

.article-content p {
    margin-bottom: 20px;
}


/* =========================================
   ARTICLE CTA
========================================= */

.article-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 55px;

    padding: 30px 35px;

    border-radius: 12px;

    background: #f4f8f5;

    border-left: 4px solid #038324;
}

.article-cta span {
    color: #777777;

    font-size: 13px;
}

.article-cta h3 {
    margin: 5px 0 0;

    color: #303030;

    font-size: 22px;
}

.article-cta-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 22px;

    border-radius: 5px;

    background: #e42228;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.article-cta-button:hover {
    background: #c91c22;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);
}


/* =========================================
   RELATED ARTICLES
========================================= */

.related-articles {
    padding: 80px 0;

    background: #f8faf9;
}

.related-heading {
    margin-bottom: 40px;
}

.related-heading span {
    color: #038324;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.related-heading h2 {
    margin: 8px 0 0;

    color: #303030;

    font-size: 32px;
}


/* Related card */

.related-card {
    display: block;

    height: 100%;

    overflow: hidden;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid #e8ece9;

    text-decoration: none;

    transition: 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


/* Related image */

.related-image {
    height: 190px;

    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.3s ease;
}

.related-card:hover img {
    transform: scale(1.04);
}


/* Related content */

.related-content {
    padding: 20px;
}

.related-content span {
    color: #038324;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.related-content h3 {
    margin: 8px 0 0;

    color: #333333;

    font-size: 17px;

    line-height: 1.45;
}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width: 991px) {

    .article-hero {
        min-height: 380px;
    }

    .article-hero-content {
        padding: 75px 0;
    }

    .article-hero h1 {
        font-size: 40px;
    }

    .article-image {
        height: 400px;
    }

    .article-section {
        padding: 65px 0 75px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 767px) {

    .article-hero {
        min-height: 350px;
    }

    .article-hero-content {
        padding: 65px 0;
    }

    .article-hero h1 {
        font-size: 31px;
    }

    .article-meta {
        gap: 12px;

        flex-direction: column;
    }

    .article-section {
        padding: 50px 0 60px;
    }

    .article-image {
        height: 260px;

        margin-bottom: 30px;

        border-radius: 10px;
    }

    .article-content {
        font-size: 15px;

        line-height: 1.8;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-content h2 {
        font-size: 25px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }

    .related-articles {
        padding: 60px 0;
    }

    .related-heading h2 {
        font-size: 27px;
    }

    .related-card {
        margin-bottom: 20px;
    }

}