.section--white {
    background-color: var(--color-quaternary);
    color: var(--color-primary);
}

.location__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.location__title {
    margin-top: 12px;
}

.location__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
    margin-top: 80px;
}

.location-stat {
    min-width: 150px;
    flex: 1 1 0;
}

.location-stat__value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 48px;
    font-weight: 500;
    margin: 0;
}

.location-stat__unit {
    font-size: 20px;
    font-weight: 400;
}

.location-stat__label {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

.location__map {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.location__map-img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .location__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .location__stats {
        gap: 16px 24px;
    }

    .location-stat {
        flex: 1 1 calc(50% - 24px);
    }
}