.contacts__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contacts__column {
    margin-bottom: -16px;
    width: calc(50% - 10px);
}

.contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: var(--bg-bg-button-chips);
    margin-bottom: 16px;
    break-inside: avoid;
}

.contacts__item-icon {
    --contacts-icon-color: var(--bg-bg-accent);

    width: 16px;
    height: 16px;
    flex: none;
}

.contacts__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
    padding-left: 20px;
    margin-top: -2px;
}

.contacts__item-icon + .contacts__item-content {
    padding-left: 0;
}

.contacts__item-title {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    padding-left: 2px;
}

.contacts__item-title--big {
    font-size: 16px;
    line-height: 120%;
}

.contacts__item-content .contacts__item-title {
    padding-left: 0;
}

.contacts__map:not(:first-child) {
    margin-top: 32px;
}

.map__inner {
    height: 630px;
}

.contacts__column--large {
    column-count: 2;
    column-gap: 20px;
}

.contacts__filters {
    margin-bottom: 32px;
}

.contacts__cities {
    width: 232px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .contacts__column {
        width: 100%;
    }

    .contacts__column:not(:first-child) {
        margin-bottom: -20px;
    }

    .contacts__column:not(:first-child) .contacts__item {
        margin-bottom: 20px;
    }

    .contacts__map:not(:first-child) {
        margin-top: 36px;
    }

    .map__inner {
        height: 286px;
    }

    .contacts__item-title--big {
        font-size: 14px;
        line-height: 100%;
    }

    .contacts__column--large {
        column-count: 1;
    }

    .contacts__filters {
        margin-bottom: 24px;
    }
}