.contacts-locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 8px 0 28px;
}

.contacts-location {
    position: relative;
    display: flex;
    gap: 16px;
    min-width: 0;
    padding: 22px;
    border: 1px solid #dce7ea;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(12, 52, 66, 0.06);
}

.contacts-location__marker {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 2px solid #f4c431;
    border-radius: 50%;
    color: #0c3442;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    place-items: center;
}

.contacts-location__body {
    min-width: 0;
}

.contacts-location .contacts-location__address,
.contacts-location .contacts-location__meta {
    margin: 0;
    color: #314b54;
    font-size: 15px;
    line-height: 1.55;
}

.contacts-location .contacts-location__address {
    margin-bottom: 13px;
}

.contacts-location .contacts-location__address strong {
    display: block;
    margin-top: 4px;
    color: #0c3442;
    font-weight: 700;
}

.contacts-location .contacts-location__meta {
    padding-top: 13px;
    border-top: 1px solid #e4ecef;
    color: #6b8088;
}

.contacts-location__phone {
    display: inline-block;
    margin-top: 7px;
    color: #168ca8;
    font-size: 18px;
    text-decoration: none;
}

.contacts-location__phone:hover {
    color: #0c3442;
}

.contacts-gallery {
    margin: 34px 0 46px !important;
}

.contacts-gallery__title {
    margin-bottom: 18px !important;
    color: #0c3442 !important;
    font-size: 27px !important;
}

.contacts-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.contacts-gallery__item {
    border: 1px solid #dce7ea;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(12, 52, 66, 0.08) !important;
}

.contacts-gallery__item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(12, 52, 66, 0.14) !important;
}

@media (max-width: 900px) {
    .contacts-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contacts-location {
        gap: 12px;
        padding: 17px 14px;
        border-radius: 10px;
    }

    .contacts-location__marker {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        font-size: 10px;
    }

    .contacts-location .contacts-location__address,
    .contacts-location .contacts-location__meta {
        font-size: 14px;
    }

    .contacts-location__phone {
        font-size: 17px;
    }

    .contacts-gallery__title {
        font-size: 23px !important;
    }

    .contacts-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .contacts-gallery__item {
        border-radius: 8px !important;
    }
}
