.vorstand-page{
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 18px 60px;
}

/* Info-Box oben */
.info-box{
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 10px auto 22px;
    max-width: 80ch;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.info-box__link{
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.03);
    color: #0b2a4a;
}

.info-box__link:hover{
    background: rgba(0,0,0,0.06);
}

/* Grid */
.vorstand-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* Card */
.vorstand-card{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.vorstand-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Foto */
.vorstand-card__media{
    width: 150px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    margin-bottom: 10px;
}

.vorstand-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position */
.vorstand-card__position{
    font-weight: 700;
    color: #0b2a4a;
    margin: 6px 0;
}

.vorstand-card__position small{
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Name */
.vorstand-card__name{
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b2a4a;
    margin: 4px 0 8px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.7);
    padding-bottom: 8px;
    width: 100%;
}

/* Meta */
.vorstand-card__meta{
    width: 100%;
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

/* Zeilen */
.vorstand-row{
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.vorstand-row:last-child{
    border-bottom: none;
}

/* Label */
.vorstand-label{
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

/* Werte */
.vorstand-value{
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: break-word;
    user-select: text;
}

/* ============================= */
/* Responsive                    */
/* ============================= */

/* Mobile: Info-Box mittig */
@media (max-width: 520px){
    .info-box{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 18px 16px;
        line-height: 1.7;
    }

    .info-box__link{
        margin-top: 8px;
    }
}

@media (max-width: 420px){
    .vorstand-card__media{
        width: 130px;
        height: 130px;
    }
}
