/* =========================================================
   BERITA HIGHLIGHT
   ========================================================= */

.berita-highlight {
    position: relative;
    padding: 90px 6%;
    background: #EAF8EF;
    overflow: hidden;
}

.berita-highlight-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   HEADER SECTION
   ========================================================= */

.berita-highlight-header {
    text-align: center;
    margin-bottom: 35px;
}

.berita-highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff ;
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
}

.berita-highlight-header h2 {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;

    color: #247A4A;
}


/* =========================================================
   BANNER BERITA
   ========================================================= */

.berita-highlight-banner {
    width: 100%;

    padding: 40px 50px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(36, 122, 74, 0.10);
}


/* =========================================================
   JUDUL BERITA
   ========================================================= */

.berita-highlight-title {
    text-align: center;
    margin-bottom: 25px;
}

.berita-highlight-category {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #3AA875;
}

.berita-highlight-title h3 {
    max-width: 800px;
    margin: 0 auto;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.3;

    color: #247A4A;
}


/* =========================================================
   GAMBAR BERITA
   ========================================================= */

.berita-highlight-image {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    border-radius: 18px;
    overflow: hidden;

    background: #f5faf7;
}

.berita-highlight-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.6s ease;
}

.berita-highlight-banner:hover .berita-highlight-image img {
    transform: scale(1.02);
}


/* =========================================================
   DESKRIPSI BERITA
   ========================================================= */

.berita-highlight-description {
    max-width: 800px;

    margin: 25px auto 0;

    text-align: center;
}

.berita-highlight-description p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #6B7C73;
}


/* =========================================================
   TOMBOL — DI LUAR BANNER
   ========================================================= */

.berita-highlight-action {
    display: flex;
    justify-content: center;

    margin-top: 28px;
}

.berita-highlight-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 24px;

    border-radius: 50px;

    background: #3AA875;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(58, 168, 117, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.berita-highlight-button span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.berita-highlight-button:hover {
    background: #247A4A;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(36, 122, 74, 0.22);
}

.berita-highlight-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .berita-highlight {
        padding: 65px 5%;
    }

    .berita-highlight-banner {
        padding: 30px 22px;

        border-radius: 20px;
    }

    .berita-highlight-title {
        margin-bottom: 20px;
    }

    .berita-highlight-title h3 {
        font-size: 22px;
    }

    .berita-highlight-image {
        border-radius: 14px;
    }

    .berita-highlight-description {
        margin-top: 20px;
    }

    .berita-highlight-description p {
        font-size: 14px;
    }

}