/* =========================================
   STAFF PAGE STYLES
   ========================================= */

.role-section {
    margin-top: 50px;
    margin-bottom: 30px;
}

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.staff-card {
    /* Flexibilität */
    flex: 1;
    min-width: 250px; 
    max-width: 320px;
    
    /* Design */
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    /* border-top-color wird inline gesetzt via PHP */
    border-top-width: 4px;
    border-top-style: solid;
    
    text-align: center;
    position: relative; /* Wichtig für interne Positionierung */
    display: flex;
    flex-direction: column;
    height: 100%;
    
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.staff-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: var(--twitch-purple);
}

.staff-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid var(--bg-body);
    object-fit: cover;
    /* box-shadow wird inline gesetzt wegen der Farbe */
}

.staff-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-top: 10px;
}

.staff-name-link {
    text-decoration: none;
    transition: opacity 0.2s;
    color: var(--text-main);
    font-weight: 800;
}

.staff-name-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.staff-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 10px;
}

.staff-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 5px;
}

/* Social Icons unten auf der Karte */
.staff-socials-inline {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.staff-socials-inline a {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: 0.2s;
    color: var(--text-muted);
    z-index: 5;
}

.staff-socials-inline a:hover {
    opacity: 1;
    transform: scale(1.2);
    color: var(--twitch-purple);
}