.sekolah-page-wrapper {
    padding-top: 130px !important;
    padding-bottom: 70px !important;
    background-color: #f8fafc;
}

/* Unit School Hero Banner Card */
.unit-hero-banner {
    position: relative;
    background-color: var(--warna-card, #136c34);
    border-radius: 26px;
    padding: 36px 45px;
    min-height: 240px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unit-hero-banner .unit-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 26px;
    z-index: 1;
}

.unit-hero-banner .unit-arc-1 {
    position: absolute;
    top: -50px;
    left: 48%;
    transform: translateX(-50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 1;
}

.unit-hero-banner .unit-arc-2 {
    position: absolute;
    top: 0px;
    left: 48%;
    transform: translateX(-50%);
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

/* Top Right Logo Badge */
.unit-logo-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.unit-logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Left Text Info */
.unit-banner-text-col {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.unit-banner-title-profil {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 2px;
}

.unit-banner-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
}

.unit-banner-unit-name {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: #ffffff;
}

/* Right Banner Info (Desktop Only) */
.unit-banner-info-col {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    margin-right: 50px;
}

.btn-banner-orange {
    background-color: #ff9a00 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    font-size: 0.82rem !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}
.btn-banner-orange:hover {
    background-color: #e68a00 !important;
    color: #000000 !important;
    transform: translateY(-1px);
}

.btn-banner-outline-white {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border: 1.5px solid #ffffff !important;
    border-radius: 50px !important;
    padding: 7px 16px !important;
    font-size: 0.82rem !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
}
.btn-banner-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Photos Container (Center on Desktop) */
.unit-photos-container {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
    bottom: 0;
    top: 0;
    width: 310px;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.unit-photo-left {
    position: absolute;
    bottom: 0;
    left: -10px;
    max-height: 220px;
    width: auto;
    z-index: 3;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
    object-fit: contain;
}

.unit-photo-right {
    position: absolute;
    bottom: 0;
    right: -10px;
    max-height: 205px;
    width: auto;
    z-index: 2;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
    object-fit: contain;
}

.unit-photo-single {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 220px;
    width: auto;
    z-index: 3;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
    object-fit: contain;
}

/* Bottom Fade Gradient (Mobile Only) */
.unit-bottom-fade-gradient {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    background: linear-gradient(to top, var(--warna-card, #136c34) 0%, rgba(0,0,0,0) 100%);
    z-index: 6;
    pointer-events: none;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
}

@media (max-width: 991.98px) {
    .unit-hero-banner {
        padding: 28px 24px;
        min-height: 210px;
        justify-content: flex-start;
    }
    .unit-photos-container {
        left: auto;
        right: 35px;
        transform: none;
        width: 260px;
    }
    .unit-photo-left {
        max-height: 185px;
        left: 10px;
    }
    .unit-photo-right {
        max-height: 170px;
        right: 10px;
    }
    .unit-photo-single {
        max-height: 185px;
    }
    .unit-arc-1, .unit-arc-2 {
        left: auto;
        right: -20px;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .unit-hero-banner {
        padding: 22px 18px;
        min-height: 195px;
    }

    .unit-bottom-fade-gradient {
        display: block !important;
    }

    .unit-bg-overlay {
        display: none !important;
    }

    .unit-logo-badge {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        padding: 3px;
        z-index: 10;
    }

    .unit-banner-subtitle {
        margin-bottom: 18px;
        font-size: 0.92rem;
    }

    .unit-banner-text-col {
        z-index: 10 !important;
    }

    .unit-photos-container {
        right: 0px;
        width: 215px;
        z-index: 4;
    }
    .unit-photo-left {
        max-height: 170px;
        left: -18px;
    }
    .unit-photo-right {
        max-height: 158px;
        right: -10px;
    }
    .unit-photo-single {
        max-height: 170px;
    }
}

/* Custom CTA Buttons */
.btn-cta-daftar-primary {
    background: linear-gradient(135deg, #07171d 0%, #176572 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 13px 26px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.02rem !important;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 22px rgba(23, 101, 114, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}
.btn-cta-daftar-primary:hover {
    background: linear-gradient(135deg, #176572 0%, #2ccbb7 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(44, 203, 183, 0.4) !important;
}

.btn-cta-tatacara-secondary {
    background: #ffffff !important;
    color: #176572 !important;
    border: 2px solid #176572 !important;
    padding: 12px 26px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}
.btn-cta-tatacara-secondary:hover {
    background: #f0fdfa !important;
    color: #0e343d !important;
    border-color: #0e343d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08) !important;
}

.rich-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    font-size: 1.02rem;
    line-height: 1.8;
    color: #334155;
}
.rich-content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 16px 0;
}

/* Quill Formatting Classes Support */
.rich-content-card .ql-align-center,
.ql-align-center {
    text-align: center !important;
}
.rich-content-card .ql-align-right,
.ql-align-right {
    text-align: right !important;
}
.rich-content-card .ql-align-justify,
.ql-align-justify {
    text-align: justify !important;
}
.rich-content-card .ql-size-small {
    font-size: 0.75em !important;
}
.rich-content-card .ql-size-large {
    font-size: 1.5em !important;
}
.rich-content-card .ql-size-huge {
    font-size: 2.25em !important;
}

.sidebar-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
