/* ==========================================
   PERSONNEL - HERO
========================================== */

.personnel-hero {

    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        url("assets/images/personnel/personnel-bg.jpg")
        center / cover no-repeat;

    overflow: hidden;
}


.personnel-hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(17, 17, 17, 0.62);

}


.personnel-hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    padding: 40px 20px;

    color: var(--white);

}


.personnel-hero-subtitle {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-family: var(--font-text);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.personnel-hero h1 {

    margin: 0 0 20px;

    font-family: var(--font-title);

    font-size: clamp(42px, 6vw, 68px);

    font-weight: 600;

}


.personnel-hero p {

    max-width: 680px;

    margin: auto;

    font-family: var(--font-text);

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);

}


/* ==========================================
   PERSONNEL SECTION
========================================== */

.personnel-section {

    padding: 90px 0;

    background: var(--off-white);
}


.personnel-header {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.personnel-header .section-subtitle {

    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: var(--font-text);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.personnel-header .section-title {

    margin-bottom: 18px;

    font-family: var(--font-title);

    color: var(--black);

    font-size: 38px;

    font-weight: 600;
}


.personnel-header .section-line {

    width: 60px;

    height: 2px;

    margin: 0 auto 25px;

    background: var(--gold);
}


.personnel-header p {

    margin: 0;

    color: var(--gray-700);

    font-family: var(--font-text);

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================
   PERSONNEL GRID
========================================== */

.personnel-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}

/* ==========================================
   PERSONNEL CARD
========================================== */

.personnel-card {

    background: var(--white);

    border: 1px solid var(--gray-200);

    overflow: hidden;

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.personnel-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}


/* ==========================================
   PHOTO
========================================== */

.personnel-photo-wrapper {

    padding: 35px 30px 20px;

    background: var(--off-white);

    text-align: center;
}


.personnel-photo {

    width: 190px;

    height: 220px;

    object-fit: cover;

    border-radius: 0;

    border: none;

    outline: none;

    box-shadow: none;

    display: block;

    margin: 0 auto;

    transition:
        transform 0.4s ease;
}


.personnel-card:hover .personnel-photo {

    transform: scale(1.03);
}


/* ==========================================
   INFORMATION
========================================== */

.personnel-info {

    padding: 25px 20px 30px;

    text-align: center;
}


.personnel-role {

    display: block;

    margin-bottom: 8px;

    color: var(--gold-dark);

    font-family: var(--font-text);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.personnel-info h3 {

    margin: 0;

    color: var(--black);

    font-family: var(--font-title);

    font-size: 24px;

    font-weight: 600;
}


/* ==========================================
   CONTACT
========================================== */

.personnel-contact {

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding-top: 18px;

    border-top: 1px solid var(--gray-200);
}


.personnel-contact div {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: var(--gray-700);

    font-family: var(--font-text);

    font-size: 13px;
}


.personnel-contact i {

    width: 18px;

    color: var(--gold);

    font-size: 13px;
}


/* ==========================================
   EMPTY
========================================== */

.personnel-empty {

    max-width: 600px;

    margin: auto;

    padding: 70px 30px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--gray-200);
}


.personnel-empty i {

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 45px;
}


.personnel-empty h3 {

    margin-bottom: 10px;

    font-family: var(--font-title);

    font-size: 25px;

    color: var(--black);
}


.personnel-empty p {

    color: var(--gray-700);

    line-height: 1.7;

    font-family: var(--font-text);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .personnel-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 650px) {

    .personnel-hero {

        min-height: 360px;

    }


    .personnel-section {

        padding: 65px 20px;

    }


    .personnel-header .section-title {

        font-size: 31px;

    }


    .personnel-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .personnel-photo {

        width: 135px;

        height: 135px;

    }

}