.map_block .map-container {
    width: 100%;
    height: 720px;
    position: relative;
}
.map_block .marker {
    width: 24px;
    height: 30px;
    background-image: url(/wp-content/uploads/2026/06/location-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transform: translate(-50%, -100%);
}
.map_block .mapboxgl-popup-content {
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.26);
    text-align: center;
    min-width: 200px;
}
.map_block .location-title {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 5px;
    font-weight: 600;
    color: #092064;
}
.map_block .location-state {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
    color: #092064;
    font-weight: 600;
}

.map_block .mapboxgl-popup-close-button {
    position: absolute;
    font-size: 28px;
    right: 10px;
    top: 8px;
    font-weight: 700;
    color: #092064;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.map_block .mapboxgl-popup-close-button:hover {
    color: #e74c3c;
}

/* Hide Mapbox Attribution & Logo */
.mapboxgl-ctrl-attrib-inner,
a.mapboxgl-ctrl-logo {
    display: none !important;
    visibility: hidden !important;
}

.map_block .mapboxgl-popup {
    pointer-events: auto;
    z-index: 10;
}

.map_block .mapboxgl-marker {
    z-index: 5;
}

.map_block .marker:hover {
    filter: brightness(1.1);
    transform: translate(-50%, -100%) scale(1.1);
    transition: transform 0.2s ease;
}