/* =========================================================
   PT GMT HUSADA INDONESIA - DETAIL & EDUCATION STYLESHEET
========================================================= */

/* Hero Detail dengan Overlay Dinamis */
.hero-detail {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    color: white;
    position: relative;
}

/* Tipografi untuk Membaca Materi (Education Mode) */
.content-reading {
    font-size: 1.15rem;
    line-height: 2;
    color: #2d3748;
    text-align: justify;
}

.content-reading h4 {
    color: var(--medical-blue);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-reading p {
    margin-bottom: 1.8rem;
}

/* Floating Sidebar (Menu Melayang di Kanan) */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Badge & Elemen Dekoratif */
.info-box-edu {
    border-left: 5px solid var(--logo-orange);
    background-color: var(--medical-light);
    transition: transform 0.3s ease;
}

.info-box-edu:hover {
    transform: translateX(5px);
}

/* Penyesuaian Responsif untuk Mobile */
@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: static;
        margin-top: 3rem;
    }
    .hero-detail {
        padding: 80px 0 50px 0;
    }
}