/* =========================================================
   TEAM
========================================================= */

.team-photo {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 18px;
    background: var(--cream);
    padding: 8px;
}


/* Team Cards */

.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}


/* Team Card */

.team-card {
    background: white;
    border: 1px solid var(--line);
    padding: 25px 18px 22px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(11, 23, 48, .06);
    transition: .2s;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #d9c18e;
}


/* Foto Anggota */

.team-member-photo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--cream);
    border: 4px solid #f3ead2;
    padding: 4px;
}


/* Nama */

.team-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 0 0 7px;
    font-size: 1.08rem;
    line-height: 1.3;
}


/* Jabatan */

.team-card .role {
    display: inline-block;
    color: #8a6815;
    background: #f3ead2;
    border-radius: 20px;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.3;
}


/* Deskripsi */

.team-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
