/* =========================================================
   HUMAS NAVBAR
   ========================================================= */

.humas-navbar {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #e5ece8;

    box-shadow:
        0 4px 20px rgba(15, 43, 35, 0.05);
}

.humas-navbar .container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.humas-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #0f2b23;

    text-decoration: none;

    font-size: 17px;
    font-weight: 800;
}

.humas-logo img {
    width: 46px !important;
    height: 46px !important;

    max-width: 46px;
    max-height: 46px;

    object-fit: contain;
}

.humas-nav-home {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 10px 16px;

    border-radius: 10px;

    color: #0d9668;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.humas-nav-home:hover {
    background: #e8f5ef;
    color: #0a7a55;
}


i.mobile-nav-toggle {
    display: none;
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    flex-shrink: 0;
}
/* =========================================================
   MAIN
   ========================================================= */

.humas-main {
    padding: 55px 0 90px;
}


/* =========================================================
   BACK
   ========================================================= */

.humas-back {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-bottom: 30px;

    color: #0d9668;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.humas-back:hover {
    color: #0a7a55;
}


/* =========================================================
   PROFILE HUMAS
   ========================================================= */

.humas-profile {
    display: grid;

    grid-template-columns:
        300px minmax(0, 1fr);

    gap: 45px;

    align-items: center;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2ebe6;

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(15, 43, 35, 0.06);
}

.humas-profile-photo {
    width: 100%;

    aspect-ratio: 0.90;

    overflow: hidden;

    border-radius: 20px;

    background: #eef5f1;
}

.humas-profile-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.humas-profile-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #0d9668;

    font-size: 80px;
}

.humas-profile-content {
    padding: 10px 10px 10px 0;
}

.humas-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #0d9668;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.humas-profile-content h1 {
    margin: 0 0 10px;

    color: #0f2b23;

    font-size: clamp(34px, 5vw, 54px);

    line-height: 1.15;

    font-weight: 800;
}

.humas-profile-content h2 {
    margin: 0 0 16px;

    color: #0d9668;

    font-size: 22px;

    font-weight: 700;
}

.humas-profile-content p {
    max-width: 750px;

    margin: 0;

    color: #5f6e68;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   LOKER SECTION
   ========================================================= */

.humas-loker-section {
    margin-top: 60px;
}

.humas-section-heading {
    margin-bottom: 25px;
}

.humas-section-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #0d9668;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.humas-section-heading h2 {
    margin: 0 0 8px;

    color: #0f2b23;

    font-size: 32px;

    font-weight: 800;
}

.humas-section-heading p {
    margin: 0;

    color: #7d8a85;

    font-size: 14px;
}


/* =========================================================
   LOKER GRID
   ========================================================= */

.humas-loker-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   LOKER CARD
   ========================================================= */

.humas-loker-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2ebe6;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15, 43, 35, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.humas-loker-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(15, 43, 35, 0.10);
}


/* =========================================================
   LOKER IMAGE
   ========================================================= */

/*
   Gambar tidak lagi menempel ke border card.
   Ada jarak di kiri, kanan, dan atas.
*/

.humas-loker-image {
    width: 100%;

    height: 220px;

    padding: 12px 12px 0;

    box-sizing: border-box;

    overflow: hidden;

    background: #ffffff;
}

.humas-loker-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 13px;
}


/* =========================================================
   LOKER PLACEHOLDER
   ========================================================= */

.humas-loker-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eaf5ef;

    color: #0d9668;

    font-size: 48px;
}


/* =========================================================
   LOKER CONTENT
   ========================================================= */

.humas-loker-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 18px;
}

.humas-loker-label {
    display: block;

    margin-bottom: 6px;

    color: #0d9668;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.humas-loker-content h3 {
    margin: 0;

    color: #0f2b23;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 800;
}

.humas-loker-content p {
    margin: 10px 0 16px;

    color: #6d7b75;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   LOKER BUTTON
   ========================================================= */

.humas-loker-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: auto;

    padding: 10px 13px;

    box-sizing: border-box;

    border-radius: 10px;

    background: #0d9668;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.humas-loker-button:hover {
    background: #0a7a55;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   EMPTY
   ========================================================= */

.humas-loker-empty {
    padding: 55px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e2ebe6;

    border-radius: 18px;
}

.humas-loker-empty > i {
    display: block;

    margin-bottom: 12px;

    color: #0d9668;

    font-size: 42px;
}

.humas-loker-empty h3 {
    margin: 0 0 7px;

    color: #0f2b23;

    font-size: 20px;

    font-weight: 800;
}

.humas-loker-empty p {
    margin: 0;

    color: #7d8a85;

    font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .humas-profile {
        grid-template-columns:
            240px minmax(0, 1fr);

        gap: 30px;
    }

    .humas-loker-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .humas-navbar .container {
        min-height: 70px;
    }

    .humas-logo img {
        width: 40px !important;
        height: 40px !important;

        max-width: 40px;
        max-height: 40px;
    }

    .humas-logo {
        font-size: 14px;
    }

    .humas-nav-home {
        padding: 9px 12px;

        font-size: 13px;
    }

    .humas-main {
        padding: 105px 0 65px;
    }

    .humas-profile {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 18px;
    }

    .humas-profile-photo {
        max-width: 250px;

        margin: 0 auto;
    }

    .humas-profile-content {
        padding: 0;

        text-align: center;
    }

    .humas-profile-content p {
        font-size: 14px;
    }

    .humas-loker-section {
        margin-top: 45px;
    }

    .humas-loker-grid {
        grid-template-columns: 1fr;
    }

    /* GAMBAR LOKER HP */

    .humas-loker-image {
        height: 215px;

        padding: 10px 10px 0;
    }

    .humas-loker-image img,
    .humas-loker-placeholder {
        border-radius: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .humas-main {
        padding: 95px 0 65px;
    }

    .humas-logo {
        gap: 8px;

        font-size: 13px;
    }

    .humas-nav-home span {
        display: none;
    }

    .humas-profile-content h1 {
        font-size: 32px;
    }

    .humas-profile-content h2 {
        font-size: 19px;
    }

    .humas-section-heading h2 {
        font-size: 28px;
    }

    .humas-loker-image {
        height: 200px;
        padding: 9px 9px 0;
    }

}

/* =========================================================
   TOMBOL KEMBALI - MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .humas-back {
        width: 100%;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        min-height: 46px;

        padding: 11px 16px;

        margin-bottom: 24px;

        border: 1px solid #d9e9e2;
        border-radius: 12px;

        background: #ffffff;

        box-shadow: 0 5px 15px rgba(15, 43, 35, 0.06);

        font-size: 13px;
        line-height: 1.3;

        box-sizing: border-box;
    }

    .humas-back i {
        font-size: 14px;
        flex-shrink: 0;
    }

    .humas-back:hover,
    .humas-back:focus {
        background: #e8f5ef;
        color: #0a7a55;

        transform: none;
    }
}


@media (max-width: 480px) {

    .humas-back {
        min-height: 44px;

        margin-bottom: 20px;

        padding: 10px 14px;

        font-size: 12.5px;

        border-radius: 11px;
    }
}