/* ============================================
   HEC Contact Phones Widget
   ============================================ */

.hec-contact-phones {
    width: 100%;
    box-sizing: border-box;
    background: #EEEEB6;
    border-radius: 12px;
    padding: 40px;
}

.hec-contact-phones__title {
    margin: 0 0 32px;
    color: #212121;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.hec-contact-phones__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.hec-contact-phones__socials {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.hec-contact-phones__social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FDFCFB;
    color: #4E5B31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hec-contact-phones__social:hover {
    background: #EDE8DA;
    color: #212121;
    transform: translateY(-1px);
}

.hec-contact-phones__social:focus {
    outline: none;
}

.hec-contact-phones__social:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.hec-contact-phones__social svg {
    width: 22px;
    height: 22px;
    display: block;
}

.hec-contact-phones__phones {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hec-contact-phones__phone {
    color: #4E5B31;
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.hec-contact-phones__phone:hover {
    color: #212121;
}

@media (max-width: 1024px) {
    .hec-contact-phones {
        padding: 32px 28px;
    }

    .hec-contact-phones__row {
        gap: 22px;
    }

    .hec-contact-phones__phones {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .hec-contact-phones {
        padding: 28px 20px;
    }

    .hec-contact-phones__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hec-contact-phones__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hec-contact-phones__phones {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}