/* Staff section styles extracted from staff.html */
.staff-section {
    padding: 48px 0 64px 0;
    background: #fafbfc;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.staff-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 220px;
    padding: 20px 10px 16px 10px;
    margin-bottom: 0;
}
.staff-photo {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}
.staff-info {
    text-align: center;
}
.staff-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2196f3;
    margin-bottom: 6px;
}
.staff-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #183153;
}
@media (max-width: 1100px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }
    .staff-card {
        max-width: 260px;
    }
}
@media (max-width: 700px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
    }
    .staff-card {
        max-width: 98vw;
    }
}
