/* Grid – 1 Spalte mobil, 2 Spalten Desktop */
.gruene-person-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gruene-person-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Karten-Layout */
.gruene-person-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gruene-person-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gruene-person-body {
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Typografie – weitgehend vom Theme geerbt, nur leicht verstärkt */

.gruene-person-name {
    margin: 0;
    font-weight: 700;
    /* leichte Betonung, Größe geht vom Theme aus */
    font-size: 1.15em;
}

.gruene-person-role p,
.gruene-person-gremien p,
.gruene-person-excerpt {
    margin: 0;
}

.gruene-person-role p + p,
.gruene-person-excerpt {
    margin-top: 0.35rem;
}

.gruene-person-role a,
.gruene-person-gremien a {
    text-decoration: none;
}

.gruene-person-role a:hover,
.gruene-person-gremien a:hover {
    text-decoration: underline;
}

/* Social Icons */

.gruene-person-social {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.gruene-person-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.08);
    color: #111111;
    background-color: #ffffff;
    transition:
        border-color 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.gruene-person-social-link svg {
    width: 19px;
    height: 19px;
}

.gruene-person-social-link:hover {
    color: #007A33;
    border-color: rgba(0,122,51,0.35);
    box-shadow: 0 0 0 1px rgba(0,122,51,0.12);
    background-color: #f3faf5;
}

/* Glossar */

.gruene-glossar {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gruene-glossar-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.gruene-glossar-item {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.gruene-glossar-item.is-odd {
    background: #ffffff;
}

.gruene-glossar-item.is-even {
    background: #f4f8f5;
}

.gruene-glossar-term {
    margin: 0 0 0.3rem;
    font-weight: 600;
}

.gruene-glossar-desc {
    margin-bottom: 0.3rem;
}

.gruene-glossar-personen {
    margin-top: 0.3rem;
    font-size: 0.95em;
}