/* ========================================= */
/*  Vorstand – Kartenlayout                  */
/* ========================================= */

/* Grid für alle Vorstandskarten */
.doc-grid-flex-gr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 5px;
    margin-top: 5px;
} 

/* Einzelne Karte */
.vorstand-card {
    background: #ffffff;
    border: 1px solid rgba(11, 79, 46, 0.08);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

/* Bild */
.vorstand-bild {
    width: 80%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5px;
}

/* Name (h3 kommt aus main.css) */

/* Rolle */
.vorstand-role {
    font-weight: 200;
    color: var(--blue);
    margin: 0 0 0 0;
}

/* Kontakt */
.vorstand-contact a {
    color: var(--green);
    font-weight: 400;
}

.vorstand-contact a:hover {
    color: var(--orange);
}

/* Mobile */
@media (max-width: 600px) {
    .doc-grid-flex-gr {
        grid-template-columns: 1fr;
    }

    .vorstand-bild {
        height: 68%;
    }
}
.vorstand-contact a {
    color: var(--green);
    font-weight: 300;
    overflow-wrap: anywhere; /* automatischer Zeilenumbruch */
}

span.vorstand-contact {
    font-size: 12px;
}
span.vorstand-role {
    font-size: 15px;
}
h4 {
    margin-top: 0;
    color: var(--blue);
    margin-top: 10px;
    margin-bottom: 0px;
}
