.header__col-item--logo {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.header__col-item--logo .header__logo {
    flex-shrink: 0;
}

.header__contact-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 0;
}

.header__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header__contact-link:hover {
    color: #f69203;
}

.header__contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: currentColor;
}

.header__contact-text {
    display: none;
}

@media (min-width: 992px) {
    .header__contact-vertical {
        gap: 0.2rem;
    }

    .header__contact-link {
        font-size: 0.9375rem;
    }

    .header__contact-text {
        display: inline;
    }
}

@media (min-width: 1200px) {
    .header__contact-icon {
        width: 1.375rem;
        height: 1.375rem;
    }

    .header__contact-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header__contact-vertical {
        gap: 0.375rem;
        margin-left: 0.5rem;
    }

    .header__contact-icon {
        width: 1rem;
        height: 1rem;
    }
}
