/* ============================================================================
   Staff & Employees Grid Component
   Include:  /themes/plutonium6_default/includes/staff-grid.php
   Plutonium CMS 6.2
   ============================================================================ */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 300px));
    gap: var(--Space6);
    padding: var(--Space4) 0 var(--Space8);
    width: 90%;
    margin: 0 auto;
}

/* ============================================================================
   Card
   ============================================================================ */

.staff-card {
    background: hsla(var(--White), 1);
    border-radius: var(--RadiusMD, 8px);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: var(--Space6) var(--Space4) var(--Space5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--Space2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* ============================================================================
   Profile image
   ============================================================================ */

.staff-card__photo-wrap {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    overflow: hidden;
    background: hsla(var(--ColorBrand), 0.08);
    flex-shrink: 0;
    margin-bottom: var(--Space3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-card__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.staff-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(var(--Gray90), 1);
    color: hsla(var(--Gray60), 1);
    font-size: 2.5rem;
}

/* ============================================================================
   Text fields
   ============================================================================ */

.staff-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: hsla(var(--Gray10), 1);
    line-height: 1.25;
    margin: 0;
}

.staff-card__credentials {
    font-size: 0.78rem;
    font-weight: 500;
    color: hsla(var(--ColorBrand), 1);
    letter-spacing: 0.03em;
    margin: 0;
}

.staff-card__title {
    font-size: 0.85rem;
    color: hsla(var(--Gray40), 1);
    margin: 0;
    line-height: 1.4;
}

/* ============================================================================
   Bio (optional, hidden by default — reveal via JS/CSS if needed)
   ============================================================================ */

.staff-card__bio {
    font-size: 0.82rem;
    color: hsla(var(--Gray30), 1);
    line-height: 1.6;
    margin-top: var(--Space2);
    text-align: left;
}

/* ============================================================================
   Responsive — Mobile
   ============================================================================ */

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}
