/* Contacts: restore styles for "Офисы в других городах". */
.region-offices {
    margin-bottom: 80px;
}

.region-offices__title {
    font-weight: 500;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.05em;
    margin: 0 0 40px;
    text-transform: none;
}

.region-offices__phone {
    font-weight: 400;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.04em;
    display: flex;
    justify-content: space-between;
    gap: 12px 40px;
    margin-bottom: 40px;
    padding: 32px;
    background-color: #1f324a;
    text-decoration: none;
    border-bottom: 0;
}

.region-offices__phone:hover,
.region-offices__phone:focus,
.region-offices__phone:active,
.region-offices__phone:visited {
    text-decoration: none;
    border-bottom: 0;
}

.region-offices__phone-title {
    color: #9ea5ad;
}

.region-offices__phone-value {
    color: #fff;
    transition: color 0.3s;
}

.region-offices__phone:hover .region-offices__phone-value {
    color: #00afec;
}

.region-offices__phone:active .region-offices__phone-value {
    opacity: 0.7;
}

.region-offices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.contact-region-button {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.54px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 32px;
    font-family: inherit;
    color: #9ea5ad;
    border: 0;
    background-color: #1f324a;
    transition: color 0.3s, background-color 0.3s;
}

.contact-region-button:disabled {
    cursor: default;
    background-color: #121c29;
}

.contact-region-button__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.04em;
    color: #fff;
    transition: color 0.3s;
}

.contact-region-button:hover:not(:disabled) .contact-region-button__title {
    color: #00afec;
}

.contact-region-button:active:not(:disabled) {
    opacity: 0.7;
}

@media (max-width: 1279px) {
    .region-offices__title {
        font-size: 56px;
        line-height: 56px;
        margin-bottom: 32px;
    }

    .contact-region-button__title {
        font-size: 24px;
        line-height: 40px;
    }

    .region-offices__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .region-offices {
        margin-bottom: 60px;
    }

    .region-offices__title {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 16px;
    }

    .region-offices__phone {
        font-size: 24px;
        line-height: 32px;
        flex-direction: column;
        margin-bottom: 16px;
        padding: 20px;
    }

    .region-offices__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
