/* Единый блок из трёх контактных телефонов */
.header-contacts.phone-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.header-contacts.phone-list .phone-link {
    width: 100%;
    padding: 4px 10px;
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: nowrap;
}

.header-contacts.phone-list .phone-primary {
    color: var(--primary-color, #ff6b8b);
}

.phone-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-stack a {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header-contacts.phone-list {
        display: none !important;
    }
}
