/* =========================================================
   BERITA PAGE
   ========================================================= */

.berita-page {
    background: #EAF8EF;
    color: #3A4A43;
    overflow: hidden;
}

.berita-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.berita-hero {
    position: relative;
    padding: 90px 6% 80px;

    background:
        linear-gradient(
            135deg,
            #EAF8EF 0%,
            #F7FCF8 50%,
            #E2F5EA 100%
        );
}

.berita-hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.berita-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #3AA875;
}

.berita-hero-content h1 {
    margin: 0 0 15px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;

    color: #247A4A;
}

.berita-hero-content p {
    max-width: 680px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #6B7C73;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.berita-featured,
.berita-list {
    padding: 80px 6%;
}

.berita-list {
    padding-top: 30px;
    padding-bottom: 100px;
}

.berita-section-heading {
    margin-bottom: 35px;
}

.berita-section-heading h2 {
    margin: 5px 0 10px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(27px, 4vw, 36px);
    line-height: 1.2;

    color: #247A4A;
}

.berita-section-heading p {
    max-width: 650px;
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #6B7C73;
}

.berita-small-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;

    color: #3AA875;
}


/* =========================================================
   BERITA UNGGULAN
   ========================================================= */

.berita-featured-content {
    width: 100%;
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.berita-featured-card {
    display: grid;

    grid-template-columns: 1.15fr 1fr;

    background: #ffffff;

    border-radius: 26px;
    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(36, 122, 74, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    margin-bottom: 30px;
}

.berita-featured-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 55px rgba(36, 122, 74, 0.14);
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.berita-featured-image {
    min-height: 390px;

    overflow: hidden;

    background: #F2F8F4;
}

.berita-featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.berita-featured-card:hover
.berita-featured-image img {
    transform: scale(1.03);
}


/* =========================================================
   FEATURED CONTENT
   ========================================================= */

.berita-featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 45px;
}

.berita-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 16px;
}

.berita-category {
    display: inline-flex;
    align-items: center;

    padding: 6px 12px;

    border-radius: 50px;

    background: #EAF8EF;

    font-size: 12px;
    font-weight: 700;

    color: #3AA875;
}

.berita-date {
    font-size: 12px;
    color: #8A9992;
}

.berita-platform {
    display: inline-flex;
    align-items: center;

    margin-left: auto;

    font-size: 11px;
    font-weight: 700;

    color: #8A9992;
}

.berita-featured-info h3 {
    margin: 0 0 16px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(23px, 3vw, 32px);
    line-height: 1.3;

    color: #247A4A;
}

.berita-featured-info p {
    margin: 0 0 25px;

    font-size: 15px;
    line-height: 1.8;

    color: #6B7C73;
}


/* =========================================================
   BERITA LAINNYA
   ========================================================= */

.berita-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;

    align-items: start;
}


/* =========================================================
   BUTTON
   ========================================================= */

.berita-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    width: fit-content;

    padding: 12px 20px;

    border-radius: 50px;

    background: #3AA875;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(58, 168, 117, 0.18);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.berita-button span {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.berita-button:hover {
    background: #247A4A;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(36, 122, 74, 0.20);
}

.berita-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY / ERROR
   ========================================================= */

.berita-empty {
    padding: 50px 20px;

    text-align: center;

    background: #ffffff;

    border-radius: 20px;

    color: #6B7C73;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.berita-reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.berita-reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   STRONG / BOLD FROM JSON
   ========================================================= */

.berita-featured-info p strong,
.berita-card-content p strong {
    font-weight: 700;
    color: #207f58;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .berita-featured-card {
        grid-template-columns: 1fr;
    }

    .berita-featured-image {
        min-height: auto;

        aspect-ratio: 16 / 9;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .berita-hero {
        padding: 65px 5%;
    }

    .berita-featured,
    .berita-list {
        padding: 60px 5%;
    }

    .berita-list {
        padding-top: 10px;
        padding-bottom: 75px;
    }

    .berita-featured-info {
        padding: 28px 23px;
    }

    .berita-featured-info h3 {
        font-size: 23px;
    }

    .berita-featured-info p {
        font-size: 14px;
    }

    .berita-featured-card {
        margin-bottom: 20px;
    }

}