/* ===============================
   HERO
================================ */
.hero {
    min-height: calc(100vh - 128px);         
    display: block;              
    /* background: linear-gradient(135deg, #0B3C89, #1E88E5); */
    /* color: #fff; */
    padding: 48px 0 64px; 
}


.hero-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #d1d5db;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111827;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    padding-top: 0;
    margin-top: 0;
}

.hero-left h1 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
}

.hero-right {
    align-self: start;
}

.hero-desc {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.ringkasan-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ringkasan-mini div {
    background: rgba(255,255,255,0.9);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
}

.ringkasan-mini span {
    font-size: 12px;
    color: #6b7280;
}

.ringkasan-mini strong {
    font-size: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* ===============================
   HERO CARD
================================ */
.hero-card {
    background: #fff;
    color: #1F2937;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    max-width: 100%;
    width: 100%;
    max-height: 420px;
    overflow: auto;
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

/* ===============================
   MINI CARD GRID
================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mini-card {
    background: #f7f9fb;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}

.mini-card span {
    font-size: 12px;
    color: #6b7280;
}

.mini-card strong {
    display: block;
    font-size: 22px;
    margin: 6px 0;
}

.mini-card small {
    font-size: 12px;
    color: #374151;
}

.hero-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.hero-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

    .hero {
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-card {
        max-height: none; 
        overflow: visible;
    }

    .hero h1 {
        font-size: 28px;
    }

    .actions {
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

}

.admin-sidebar-toggle {
    display: none;
}