/**
 * ============================================================================
 * TEAM GRID CSS - ZAW Iserlohn
 * Version: 1.5
 * Phase: 3c
 * ============================================================================
 * 
 * SCOPE: Nur #team .team-grid (keine globalen Selektoren)
 * DESIGN: Hochwertig, edel, elegant - ZAW CI konform
 * STYLE: Anthrazit-Box wie Teaser Slider, Bronze Name, weißer Text
 * BREAKPOINTS: 3 Spalten Desktop, 2 Tablet, 1 Mobile
 * 
 * ============================================================================
 */

/* ==========================================================================
   KATEGORIE-SEKTION
   ========================================================================== */

.team-category {
    margin-bottom: 4rem;
}

.team-category:last-child {
    margin-bottom: 0;
}

/* Kategorie-Überschrift: Variante 3 (Uppercase + Bronze-Linie) */
.team-category__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #444448;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.team-category__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c3ad8d;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   GRID LAYOUT
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 3rem;
}

/* Tablet: 2 Spalten */
@media (max-width: 960px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2.5rem;
    }
}

/* Mobile: 1 Spalte */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .team-category {
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   TEAM CARD (Bild überlappt Anthrazit-Box - 30/70 goldener Schnitt)
   ========================================================================== */

.team-card {
    position: relative;
}

/* Anthrazit-Box als Hintergrund - stark versetzt nach rechts */
.team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: -25px;
    height: 140px;
    background-color: #444448; /* Anthrazit wie Teaser */
    z-index: 1;
}

/* Bild-Container: 4:5 Aspect Ratio - IM VORDERGRUND */
.team-card__image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f5f5f5;
    z-index: 2;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover: Subtle Zoom */
.team-card:hover .team-card__image img {
    transform: scale(1.02);
}

/* ==========================================================================
   CARD INFO (Anthrazit-Box, Bronze Name, weißer Text)
   ========================================================================== */

.team-card__info {
    position: relative;
    background-color: #444448; /* Anthrazit */
    padding: 1rem 1.5rem 1.25rem;
    margin-left: 40px;
    margin-right: -25px;
    min-height: 70px;
    z-index: 1;
}

.team-card__name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #c3ad8d; /* Bronze */
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    text-align: left;
}

.team-card__role {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #ffffff; /* Weiß */
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 960px) {
    .team-card::before {
        left: 30px;
        right: -20px;
        height: 130px;
    }
    
    .team-card__info {
        margin-left: 30px;
        margin-right: -20px;
        padding: 1rem 1.25rem;
        min-height: 65px;
    }
}

@media (max-width: 600px) {
    .team-card::before {
        left: 25px;
        right: -15px;
        height: 120px;
    }
    
    .team-card__info {
        margin-left: 25px;
        margin-right: -15px;
        padding: 0.875rem 1rem;
        min-height: 55px;
    }
    
    .team-card__name {
        font-size: 0.9375rem;
    }
    
    .team-card__role {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY: Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .team-card__image img {
        transition: none;
    }
}

/* ==========================================================================
   END TEAM GRID CSS
   ========================================================================== */