/* ESCORT LANGUAGE TABS */
.escort-language-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 12px;
    box-sizing: border-box;
}

/* TAB */
.escort-language-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 16px;
    background: #eaf2ff;
    color: #0066ff !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* HOVER */
.escort-language-tab:hover {
    background: #dbe9ff;
    color: #0052cc !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, .15);
}

/* TABLET */
@media (max-width: 768px) {
    .escort-language-tabs {
        gap: 8px;
        padding: 12px 10px;
    }

    .escort-language-tab {
        padding: 7px 13px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .escort-language-tabs {
        justify-content: flex-start;
        gap: 7px;
        padding: 10px 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .escort-language-tabs::-webkit-scrollbar {
        display: none;
    }

    .escort-language-tab {
        flex: 0 0 auto;
        min-height: 32px;
        padding: 6px 12px;
        font-size: 12px;
    }
}