/* ===== GLOBAL CONTAINER ===== */
.container{
    margin:auto;
    padding:60px 24px;
}

/* ===== GRID LAYOUT ===== */

.ethic-wrapper{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

/* ===== LEFT CONTENT ===== */
.ethic-content-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ethic-text h2{
    font-size:22.78px;
    font-weight: 600;
    color:#1f7a43;
    margin-bottom:12px;
    line-height:1.3;
}

.ethic-text p{
    color:#555;
    line-height:1.7;
    /* margin-bottom:16px; */
    font-size:16px;
}

/* ===== QUOTE BOX ===== */
.quote-box{
    background:#E6F0EB;
    padding:18px 20px;
    border-radius:8px;
    font-size:14px;
    color:#0B6839;
}
.quote-box b{
    font-weight:700;
    font-style: italic;
}

/* ===== IMAGE CARD ===== */
.ethic-image{
    position:relative;
    height:100%;
    min-height:420px;
    overflow:hidden;
    border-radius:16px;
}

.ethic-image img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ======================================
   CTA INFO BANNER (IMPROVED)
====================================== */

.cta-info{
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    
    text-align: center;
    color: #fff;
    overflow: hidden;

    background-image: url("https://konten.usu.ac.id/storage/satker/14/statis/komite-cta-bg-section.webp");
    background-size: cover;
    background-position: center 70%;
}

/* OVERLAY */
.cta-info::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        180deg,
        rgba(0,75,39,0.9),
        rgba(0,75,39,0.85)
    );
    z-index:1;
}

/* ORNAMENT */
.cta-info::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('https://konten.usu.ac.id/storage/satker/44/icons/flower-bgpritra.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80%;
    opacity: 0.25;
    z-index: 2;
}

/* INNER CONTENT */
.cta-info-inner{
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 100px 24px;
    z-index: 3;
}

/* TEXT */
.cta-eyebrow{
    display: block;
    font-weight: 600;
    color: #D9F99D;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.cta-info h2{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
}

/* BUTTONS */
.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* tombol jadi lebih konsisten */
.cta-buttons a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px){

    .cta-info-inner{
        padding: 80px 20px;
    }

    .cta-info h2{
        font-size: 28px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px){

    .cta-info-inner{
        padding: 70px 18px;
    }

    .cta-eyebrow{
        font-size: 14px;
    }

    .cta-info h2{
        font-size: 22px;
        margin-bottom: 22px;
    }

    /* tombol jadi stack */
    .cta-buttons{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons a{
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ========================================
ABOUT ETHIC SECTION (NEW NAMESPACE)
======================================== */
.about-ethic{
    display:grid;
    grid-template-columns: 360px 1fr;
    gap:40px;
    margin: 120px 0;
    align-items:start;
}

/* IMAGE */
.about-ethic-image{
    position:relative;
    width:100%;
    height:100%;
    min-height:420px;
    overflow:hidden;
}

.about-ethic-image img{
    position:absolute;
    border-radius:10px;
    inset:0;
    width:100%;
    height:100%;
    max-height: 500px;
    object-fit:cover;
    object-position:center;
}

/* TEXT */
.about-ethic-content h2{
    color:#1f7a43;
    font-size:26px;
    font-weight:600;
    margin-bottom:32px;
}

.about-ethic-content p{
    font-size:15.8px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:16px;
}

/* ===== TABLET ===== */
@media (max-width: 992px){
    .ethic-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .ethic-text h2{
        font-size:26px;
    }

    .container{
        padding:50px 20px;
    }
    .ethic-image{
        order: -1;
    }
    
    .about-ethic{
        grid-template-columns:1fr;
        padding:22px;
    }

    .about-ethic-image{
        order:-1;
        min-height:320px;
    }

    .about-ethic-content h2{
        font-size:24px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px){
    .ethic-text h2{
        font-size:22px;
    }

    .badge{
        font-size:12px;
        padding:5px 12px;
    }

    .ethic-text p{
        font-size:15px;
    }
    .about-ethic{
        padding:18px;
        gap:22px;
    }

    .about-ethic-image{
        min-height:240px;
    }

    .about-ethic-content h2{
        font-size:21px;
    }

    .about-ethic-content p{
        font-size:15px;
    }
}

/* BREADCRUMB
.breadcrumb-sub-layanan {
    position: absolute;
    z-index: 1000;
    margin: 10px 0 10px 50px;
    color: #005E45;
    display: flex;
    justify-content: start;
    font-weight: 500;
    font-size: 12px;
    align-items: center;
}

.breadcrumb-sub-layanan span {
    margin: 0 3px;
}

.breadcrumb-sub-layanan img {
    width: 12px;
    height: 27px;

}

.breadcrumb-sub-layanan a {
    color: #005E45;
    text-decoration: none;
}

@media screen and (max-width:600px) {
    .breadcrumb-sub-layanan {
        margin: 10px 0 6px 1px;
        justify-content: end;
        color: #005E45;
        font-weight: 500;
        font-size: 12px;
    }

    .breadcrumb-sub-layanan span {
        margin: 0 3px;
    }

    .breadcrumb-sub-layanan img {
        width: 10px;
        height: 10px;
    }

    .breadcrumb-sub-layanan {
        font-size: 0.8rem;
    }
} */