.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.vorstand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
}

.vorstand-foto-wrap {
    margin-bottom: 8px;
}

.vorstand-foto {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F5C200;
    display: block;
}

.vorstand-foto-placeholder {
    background: #EEEBE3;
}

.vorstand-rolle {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F5C200;
}

.vorstand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

.vorstand-email {
    font-size: 0.8rem;
    color: #6B6B6B;
    text-decoration: none;
}
.vorstand-email:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .vorstand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vorstand-grid {
        grid-template-columns: 1fr;
    }
}
