.contact-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #e8e5df;
    border: 1px solid var(--line);
    border-radius: 20px;
    isolation: isolate;
}

.contact-map::before,
.contact-map::after {
    display: none;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.72) contrast(.96);
}

.contact-map .map-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    width: min(340px, calc(100% - 48px));
    padding: 22px;
    color: var(--black);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(24, 25, 27, .1);
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(24, 25, 27, .15);
    backdrop-filter: blur(14px);
}

.map-label-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #72757a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.map-label-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
}

.contact-map .map-label strong {
    display: block;
    max-width: 260px;
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.map-route-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
}

.map-route-link span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
}

.map-route-link:hover {
    color: var(--red);
}

@media (max-width: 700px) {
    .contact-map {
        min-height: 450px;
        border-radius: 16px;
    }

    .contact-map .map-label {
        left: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        padding: 18px;
    }

    .contact-map .map-label strong {
        margin-bottom: 14px;
        font-size: 20px;
    }
}
