.global-map-block {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;

    @media screen and (max-width: 1024px) {
        /* min-height: auto; */
    }

    &::before {
        content: "";
        position: absolute;
        width: 1111px;
        max-width: 80%;
        height: 293px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -324px;
        background: radial-gradient(
                    ellipse at 13.08% 81.13%, 
                    #4500F9 0%, 
                    #8752FA 30.29%, 
                    #CD83FF 67.31%, 
                    #FF5001 100%
                    ), #D9D9D9;
        filter: blur(150px);
        z-index: 1;
    }

}

.global-map-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 80px;
    align-items: center;

    @media screen and (max-width: 990px) {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.global-map-content {
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media screen and (max-width: 990px) {
        gap: 16px;
    }
}

.global-map-title {
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin: 0;

    @media screen and (max-width: 990px) {
        font-size: 4.8rem;
    }

    @media screen and (max-width: 600px) {
        font-size: 3.6rem;
    }
}

.global-map-subheading {
    max-width: 680px;
    margin-top: 0;
}

.global-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin-top: 48px;

    @media screen and (max-width: 990px) {
        max-width: 100%;
        margin-top: 24px;
    }
}

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

/* Map dots */
.map-dots rect {
    transition: opacity 0.3s ease, fill 0.3s ease;
}

.map-dots rect.highlight {
    /* opacity: 1;
    fill: #a78bfa; */
}

/* Crosshairs */
.map-crosshairs {
    pointer-events: none;
}

.crosshair-horizontal,
.crosshair-vertical {
    stroke: #6366f1;
    stroke-width: 1;
    opacity: 0.6;
}

.crosshair-center {
    fill: none;
    stroke: #6366f1;
    stroke-width: 2;
    opacity: 0.8;
}

/* City list */
.global-map-cities {
    position: relative;
    z-index: 1;
    align-self: flex-end;

    @media screen and (min-width: 990px) {
        column-count: 1;
    }
}

.city-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    gap: 0;

    @media screen and (max-width: 990px) {
      column-count: 2;
      display: block;
    }
}

.city-button {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 2rem;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 500;
    /* padding: 8px 16px 8px 0; */
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    font-family: inherit;

    @media screen and (max-width: 990px) {
        font-size: 2rem;
    }
}

.location-note {
    color: #6b7280;
    font-size: 1.2rem;
}

.city-button::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #6366f1;
    transition: height 0.3s ease;
}

.city-button:hover,
.city-button:focus {
    color: #ffffff;
    outline: none;
}

.city-button:hover::before,
.city-button:focus::before {
    height: 80%;
}

.city-button.active {
    color: #ffffff;
    font-weight: 600;
}

.city-button.active::before {
    height: 100%;
}

/* Hide script tag */
.city-data {
    display: none;
}