.flex-layout.offices_map {
    overflow: hidden;
    border-radius: 16px 0 16px 16px;
    background: #B8CCFF;
    margin-top:16px;
    margin-bottom:16px;
}

.offices_map .om-inner {
    display: flex;
    align-items: flex-start;
    gap: max(1rem, calc(3 * var(--su)));
    padding: 0px 0px 32px 32px
}

.offices_map .om-content {
    flex: 0 0 auto;
    width: min(50%, 520px);
    display: flex;
    flex-direction: column;
    gap: max(1rem, calc(1.25 * var(--su)));
    padding-top: max(3rem, calc(7.8 * var(--su)));
}

.offices_map .om-map-wrap {
    flex: 1;
    min-width: 0;
}

.offices_map .om-map {
    position: relative;
    width: 100%;
}

.offices_map .om-europe-svg {
    display: block;
    width: 100%;
    height: auto;
}

.offices_map .om-europe-svg path {
    fill: var(--color-midnight-blue, #0A0A44);
    stroke: #7b8dc7;
    stroke-width: 1.5;
    transition: fill 0.2s ease;
}

.offices_map .om-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.offices_map .om-dot-pulse {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-bright-yellow, #EFF757);
    box-shadow: 0 0 0 0 rgba(239, 247, 87, 0.6);
    animation: om-pulse 2s infinite;
}

.offices_map .om-dot[aria-expanded="true"] .om-dot-pulse {
    animation: none;
    box-shadow: 0 0 0 4px rgba(239, 247, 87, 0.35);
}

@keyframes om-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 247, 87, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(239, 247, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 247, 87, 0); }
}

.offices_map .om-popup {
    position: absolute;
    z-index: 10;
    border-radius: 16px 0 16px 16px;
    background: var(--Icy-white, #FAFDFF);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
    padding: max(1rem, calc(1.25 * var(--su)));
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(10, 10, 68, 0.14), 0 2px 8px rgba(10, 10, 68, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translate(-50%, calc(-100% - 20px));
}

.offices_map .om-popup[hidden] {
    display: none;
}

.offices_map .om-popup-close {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 2px;
    line-height: 0;
    transition: opacity 0.15s ease;
}

.offices_map .om-popup-close:hover {
    opacity: 1;
}

.offices_map .om-popup-name {
    color: var(--color-midnight-blue, #0A0A44);
    padding-right: 1.25rem;
    margin-bottom:16px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(184, 204, 255, 0.74);
}

.offices_map .om-popup-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: max(0.95rem, calc(1 * var(--su)));
    color: var(--color-midnight-blue, #0A0A44);
    text-decoration: none;
    line-height: 1.4;
}

.offices_map .om-popup-row svg {
    margin-top: 2px;
}

a.om-popup-row:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (min-width: 1600px) {
.offices_map .om-content {
        width: min(60%, 620px);
}
}

@media (max-width: 992px) {
    .offices_map .om-inner {
        flex-direction: column;
        padding: 0px 0px 32px 20px;
    }

    .offices_map .om-content {
        width: 100%;
    }

    .offices_map .om-map-wrap {
        width: 100%;
    }
}
