/* =========================
   STANDORTE - CLEAN & ROBUST
========================= */

/* =========================
   HERO
========================= */

.standorte-hero {
    padding: 80px 0;
    background: #fff;
}

.standorte-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.standorte-hero-inner {
    max-width: 100%;
}

.standorte-kicker {
    color: var(--primary-color);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.standorte-title {
    margin: 0 0 10px 0;
}

.standorte-text {
    color: var(--gray-color);
    line-height: 1.7;
}

/* =========================
   MAP
========================= */

.standorte-map {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.standorte-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* =========================
   LISTING GRID
========================= */

.standorte-listing {
    padding: 80px 0;
}

.standorte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* =========================
   CARD
========================= */

.standort-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e7ebf3;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.standort-card:hover {
    transform: translateY(-5px);
}

/* IMAGE WRAPPER */
.standort-image {
    position: relative;
    overflow: hidden;
}

.standort-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* =========================
   ICON OVERLAY (FIXED)
========================= */

.standort-icon {
    position: absolute;
    top: 177px;
    left: 16px;

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    z-index: 2;
}

/* =========================
   CONTENT
========================= */

.standort-content {
    padding: 24px;
}

.standort-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.standort-meta p {
    margin: 0;
    color: var(--gray-color);
    font-size: 14px;
    line-height: 22px;
}

/* LINK */
.standort-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .4px;
}

/* =========================
   USP SECTION
========================= */

.standorte-usp {
    background: var(--background-light);
}

.standorte-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.standorte-usp-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .standorte-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .standorte-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .standorte-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .standorte-grid {
        grid-template-columns: 1fr;
    }

    .standorte-usp-grid {
        grid-template-columns: 1fr;
    }
}