/* =========================================
   RADIATORI.KZ — города и контакты
   ========================================= */

.radiatori-city-links-block {
    margin: 28px 0;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(19, 79, 164, .045);
}

.radiatori-city-head {
    margin-bottom: 14px;
}

.radiatori-city-head h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 800;
    color: #111827;
}

.radiatori-city-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #667085;
}

.radiatori-city-list {
    border-top: 1px solid #edf2f7;
}

.radiatori-city-row {
    display: grid;
    grid-template-columns: 1.15fr 1.9fr 1fr;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 4px 0;
    border-bottom: 1px solid #edf2f7;
    transition: background .18s ease;
}

.radiatori-city-row:hover {
    background: #f8fbff;
}

.radiatori-city-name,
.radiatori-city-address,
.radiatori-city-phone {
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.3;
}

.radiatori-city-name {
    font-weight: 800;
    color: #111827 !important;
}

a.radiatori-city-name:hover {
    color: #005bd8 !important;
}

.radiatori-city-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151 !important;
}

.radiatori-city-address:hover {
    color: #005bd8 !important;
}

.radiatori-city-address img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 16px;
    opacity: .9;
}

.radiatori-city-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.radiatori-city-phone {
    color: #005bd8 !important;
    font-weight: 600;
    white-space: nowrap;
}

.radiatori-city-phone:hover {
    text-decoration: underline !important;
}

.radiatori-city-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    text-decoration: none !important;
    transition: transform .15s ease;
}

.radiatori-city-wa:hover {
    transform: scale(1.08);
}

.radiatori-city-wa img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Экспорт */

.radiatori-export-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
    line-height: 1.3;
}

.radiatori-export-icon {
    width: 16px;
    flex: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* Планшет / мобильный */

@media (max-width: 991px) {

    .radiatori-city-row {
        grid-template-columns: 1fr;
        gap: 3px;
        min-height: auto;
        padding: 9px 0;
    }

    .radiatori-city-contact {
        justify-content: flex-start;
        gap: 6px;
    }
}

/* Телефон */

@media (max-width: 640px) {

    .radiatori-city-links-block {
        margin: 20px 0;
        padding: 18px;
        border-radius: 12px;
    }

    .radiatori-city-head {
        margin-bottom: 12px;
    }

    .radiatori-city-head h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .radiatori-city-head p {
        font-size: 13px;
    }

    .radiatori-city-name,
    .radiatori-city-address,
    .radiatori-city-phone,
    .radiatori-export-label {
        font-size: 13px;
    }

    .radiatori-city-wa {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .radiatori-city-wa img {
        width: 21px;
        height: 21px;
    }
}