/* Выравнивание номеров телефонов в футере */
@media (max-width: 445px) {
    .footer_phone {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        width: 100%;
        align-items: center;
    }
    
    .footer_phone span:first-child {
        margin-right: 20px;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 100px; /* Фиксированная ширина для подписей */
    }
    
    .footer_phone span:last-child {
        text-align: right;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .footer_phone a {
        display: inline-block;
        text-align: right;
        width: 100%;
        white-space: nowrap;
    }
}
