.global-presence__map {
    position: relative;
    background: #07111f;
    overflow: hidden;
}

.global-presence__image {
    width: 100%;
    height: auto;
    display: block;
}

.office-label {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.office-label__button {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: transparent;
    border: 0;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
}

.office-label--left .office-label__button {
    flex-direction: row-reverse;
    text-align: right;
}

.office-label--right .office-label__button {
    flex-direction: row;
    text-align: left;
}

.office-label--top .office-label__button {
    /* flex-direction: column-reverse; */
    align-items: center;
    text-align: center;
}

.office-label--bottom .office-label__button {
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* White marker dot */
.office-label__marker {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 10px rgba(255,255,255,.9);
}

/* Vertical line */
.office-label__line {
    width: 2px;
    background: #ffffff;
    display: block;
    flex-shrink: 0;
    opacity: 1;
}

.office-label__text strong {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.office-label__text small {
    display: block;
    font-size: 15px;
    opacity: .85;
}

/* Popup overlay */
.office-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.office-popup.hidden {
    display: none;
}

/* Popup box */
.office-popup__content {
    background: #ffffff;
    width: min(500px, calc(100% - 32px));
    padding: 32px;
    border-radius: 16px;
    position: relative;
    color: #111827;
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

.office-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #374151;
}

.office-popup__continent {
    color: #455785;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 8px;
}

.office-popup__title {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
}

.office-popup__details {
    margin-bottom: 16px;
}

.office-popup__details p {
    margin: 0 0 10px;
}

.office-popup__email a {
    color: #0b63ce;
    text-decoration: none;
}

.office-popup__email a:hover {
    text-decoration: underline;
}