/* =========================================
   TERMIN-SEITE: Filialauswahl
   (Minimal, nur das was die PHP nutzt)
========================================= */

/* Grid der Standort-Karten */
.kontakt-standorte {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Einzelne Karte */
.kontakt-card {
    background: #fff;
    padding: 0 0 20px 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 320px;
    overflow: hidden;
    text-align: center;
    display: block;
}

/* Standort-Bild */
.kontakt-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Titel */
.kontakt-card h3 {
    margin: 15px 0 12px 0;
    font-size: 22px;
    color: #96BA3B;
    text-align: center;
}

/* Beschreibung */
.kontakt-card p {
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
    font-size: 16px;
}

/* Link-Hover-Effekt */
.kontakt-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: block;
}

.kontakt-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
