.dkl-locations {
    display: grid;
    float: none;
    gap: clamp(72px, 8vw, 120px);
    padding-bottom: clamp(72px, 8vw, 120px);
}

.dkl-location {
    display: grid;
    gap: clamp(24px, 3vw, 40px);
    min-width: 0;
}

.dkl-location .top-part,
.dkl-location .top-part.is-other-position {
    float: none;
    margin: 0;
}

.dkl-map-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 42px rgba(15, 42, 68, 0.1);
}

.dkl-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
}

.dkl-map-heading {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: #0F2A44;
}

.dkl-map-heading strong {
    overflow-wrap: anywhere;
    font-size: 22px;
    line-height: 1.25;
}

.dkl-map-eyebrow {
    color: #3886D4;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dkl-map-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(15, 42, 68, 0.2);
    border-radius: 999px;
    color: #0F2A44;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.dkl-map-link:hover,
.dkl-map-link:focus-visible {
    border-color: #3886D4;
    background: #3886D4;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.dkl-map-link:focus-visible {
    outline: 3px solid rgba(56, 134, 212, 0.3);
    outline-offset: 3px;
}

.dkl-map-frame {
    position: relative;
    width: 100%;
    height: clamp(340px, 34vw, 460px);
    background: #DDE6ED;
}

.dkl-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 900px) {
    .dkl-locations {
        gap: 64px;
        padding-bottom: 80px;
    }

    .dkl-location {
        gap: 22px;
    }

    .dkl-location .top-part,
    .dkl-location .top-part.is-other-position {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .dkl-location .left-top-part {
        order: 1;
        width: 100%;
        padding: 0;
    }

    .dkl-location .left-top-part img {
        display: block;
        width: 100%;
        height: clamp(300px, 58vw, 470px);
        object-fit: cover;
    }

    .dkl-location .right-top-part,
    .dkl-location .top-part.is-other-position .right-top-part {
        position: relative;
        inset: auto;
        order: 2;
        width: 100%;
        min-height: 0;
        padding: 28px;
        border-radius: 0 0 16px 16px;
        background: #FFFFFF;
        box-shadow: 0 14px 34px rgba(15, 42, 68, 0.1);
    }

    .dkl-map-frame {
        height: 360px;
    }
}

@media screen and (max-width: 650px) {
    .dkl-locations {
        gap: 48px;
        padding-bottom: 64px;
    }

    .dkl-location .left-top-part img {
        height: 260px;
    }

    .dkl-location .right-top-part,
    .dkl-location .top-part.is-other-position .right-top-part {
        padding: 22px 18px;
    }

    .dkl-map-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 20px 18px;
    }

    .dkl-map-heading strong {
        font-size: 19px;
    }

    .dkl-map-link {
        width: 100%;
        min-height: 48px;
        box-sizing: border-box;
    }

    .dkl-map-frame {
        height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dkl-map-link {
        transition: none;
    }
}
