﻿.map__flex {
    display: flex;
    flex-direction: row;
    background: #000000c9
}

.map__content {
    left: 80px;
}

.map__content-wrap {
    flex: 1 1 550px;
    min-width: 0;
    max-width: 550px; /* Adjust as needed */
    display: flex;
    align-items: flex-start;
}

.map__map-wrap {
    flex: 2 1 0%;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

/* Make the map fill its column */
.map__holder {
    width: 100%;
    overflow: hidden;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 1199.9px) {
    .map__flex {
        gap: 3rem;
        flex-direction: column;
        background: transparent;
    }

    .map__content-wrap,
    .map__map-wrap {
        max-width: 100%;
        width: 100%;
        flex: 1;
    }
}
