html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}


.swal-above-modal {
    z-index: 20000 !important;
}


.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* wrapper link */
.news-link {
    display: block;
    height: 100%;
}

/* card tetap full height */
.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* konten dorong ke bawah biar rapi */
.news-content {
    flex-grow: 1;
}


/* DETAIL BERITA */
.berita-detil-hero {
    min-height: 60vh !important;
}

.judul-berita-detail {
    font-size: 45px !important;
}

.berita-detail-date {
    background: none !important;
    font-size: 15px !important;
    display: flex;
    gap: 10px; 
    align-items: center;
    justify-content: center;
}

.berita-detail-date-2 {
    background: none !important;
    font-size: 15px !important;
    display: flex;
    gap: 10px; 
    align-items: center;
    margin-top: -10px;
}



/* FORCE about jadi 1 kolom */
/* container */
.about-stack .about-container-2 {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* 🔥 ganti center */
    width: 60vw;
    gap: 0; /* jaga-jaga */
}

/* gambar */
.about-stack .about-image.detail-images-berita {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

/* img */
.about-stack .about-image.detail-images-berita img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* konten */
.about-stack .about-content-2 {
    width: 100%;
    text-align: left;
    margin-top: 0;
    padding-top: 0;
}

/* 🔥 WAJIB: reset margin heading */
.about-stack .about-content-2 h2 {
    margin-top: 10;
}


/* ========================= */
/* TABLET */
/* ========================= */


@media (max-width: 992px) {

    /* gambar */
    .about-stack .about-image.detail-images-berita {
        width: 100%;
        height: 450px;
        overflow: hidden;
    }

    .about-stack .about-image.detail-images-berita img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

}



/* ========================= */
/* MOBILE FIX (IMPORTANT) */
/* ========================= */
@media (max-width: 768px) {

    .about-stack .about-container.about-container-2 {
        width: 95vw !important;   /* 🔥 WAJIB */
        max-width: 100%;
        min-height: auto;          /* reset */
        padding: 0 16px;           /* biar nggak mepet */
        box-sizing: border-box;
    }

    .about-stack .detail-images-berita {
        height: 260px; /* optional, biar proporsional */
    }

    /* gambar */
    .about-stack .about-image.detail-images-berita {
        width: 100%;
        height: 350px;
        overflow: hidden;
    }

    .about-stack .about-image.detail-images-berita img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .judul-berita-detail {
        font-size: 25px !important;
    }



}