.miqr-location-map {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    color: #1f3634;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.miqr-location-map *,
.miqr-location-map *::before,
.miqr-location-map *::after {
    box-sizing: border-box;
}

.miqr-location-map__intro {
    align-items: center;
    background: #e9e9e9;
    border-bottom: 1px solid #d6d6d6;
    display: block;
    min-height: 0;
    padding: 10px 25px;
}

.miqr-location-map__eyebrow {
    color: #111111;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.miqr-location-map--heading-normal .miqr-location-map__eyebrow {
    font-size: 18px;
}

.miqr-location-map--heading-xl .miqr-location-map__eyebrow {
    font-size: 22px;
}

.miqr-location-map__title {
    color: #1f3634;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 6px 0 0;
    max-width: none;
}

.miqr-location-map__visual {
    align-items: center;
    background: #ffffff;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-height: 0;
    padding: 8px 10px 16px;
    position: relative;
}

.miqr-location-map__canvas {
    aspect-ratio: 1 / 1;
    background: transparent;
    border-radius: 0;
    flex: 0 0 auto;
    margin: 0 auto;
    max-width: 540px;
    overflow: visible;
    position: relative;
    width: 100%;
}

.miqr-location-map__image {
    display: block;
    height: 100%;
    max-height: none;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    width: 100%;
    z-index: 1;
}

.miqr-location-map__pin {
    align-items: center;
    color: #1f3634;
    display: inline-flex;
    gap: 8px;
    left: 50%;
    line-height: 1;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translate(-10px, -10px);
    z-index: 4;
}

.miqr-location-map__pin:focus {
    outline: 2px solid #1f3634;
    outline-offset: 5px;
}

.miqr-location-map__pin-dot {
    background: var(--miqr-location-map-pin, #a52445);
    border: 3px solid #ffffff;
    border-radius: 999px;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--miqr-location-map-pin, #a52445) 28%, transparent);
    display: block;
    flex: 0 0 auto;
    height: 20px;
    position: relative;
    width: 20px;
}

.miqr-location-map__pin-dot::after {
    background: #ffffff;
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
}

.miqr-location-map__pin-label {
    background: #ffffff;
    border: 1px solid #dfe7e5;
    box-shadow: 0 10px 24px rgba(31, 54, 52, 0.1);
    color: #1f3634;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    padding: 6px 8px;
    pointer-events: none;
    transform: translateX(-4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    white-space: nowrap;
}

.miqr-location-map__pin:hover .miqr-location-map__pin-label,
.miqr-location-map__pin:focus .miqr-location-map__pin-label,
.miqr-location-map__pin[aria-current="true"] .miqr-location-map__pin-label {
    opacity: 1;
    transform: translateX(0);
}

.miqr-location-map__pin[aria-current="true"] .miqr-location-map__pin-dot {
    background: var(--miqr-location-map-pin-active, #1f6962);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--miqr-location-map-pin-active, #1f6962) 30%, transparent);
}

.miqr-location-map__teaser {
    background: #ffffff;
    border: 1px solid #dfe7e5;
    bottom: 24px;
    box-shadow: 0 10px 24px rgba(31, 54, 52, 0.12);
    left: 24px;
    margin-top: 0;
    max-width: min(240px, calc(100% - 48px));
    padding: 10px 12px;
    position: absolute;
    z-index: 5;
}

.miqr-location-map__teaser-kicker {
    color: var(--miqr-location-map-accent, #a52445);
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.miqr-location-map__teaser h3 {
    color: #1f3634;
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
}

.miqr-location-map__teaser p:not(.miqr-location-map__teaser-kicker) {
    color: #536765;
    font-size: 14px;
    line-height: 1.45;
    margin: 8px 0 0;
}

.miqr-location-map__teaser a {
    color: var(--miqr-location-map-accent, #a52445);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    text-decoration: none;
}

.miqr-location-map__teaser a:hover,
.miqr-location-map__teaser a:focus {
    color: var(--miqr-location-map-pin-active, #1f6962);
}

.miqr-location-map__list {
    display: none;
}

.section.box-line .miqr-location-map {
    min-height: 590px;
}

@media (max-width: 900px) {
    .section.box-line .miqr-location-map {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .miqr-location-map__visual {
        align-items: center;
        display: block;
        padding: 10px 10px 16px;
    }

    .miqr-location-map__canvas {
        max-width: 360px;
    }

    .miqr-location-map__pin-label {
        display: none;
    }

    .miqr-location-map__teaser {
        bottom: auto;
        left: auto;
        margin-top: 12px;
        max-width: none;
        position: static;
    }
}
