.customer-service-tabs {
    width: 100%;
    margin: 0 0 50px;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid #222;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.customer-service-tabs::-webkit-scrollbar {
    display: none;
}

.customer-service-tabs__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
}

.customer-service-tabs__item {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 52px;
    padding: 10px 8px;
    border: 1px solid transparent;
    border-bottom: 0;
    background: #f2f4f5;
    color: #777;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.customer-service-tabs__item + .customer-service-tabs__item {
    border-left-color: #fff;
}

.customer-service-tabs__item:hover,
.customer-service-tabs__item:focus-visible {
    color: #01b954;
    background: #fff;
}

.customer-service-tabs__item.active {
    position: relative;
    z-index: 1;
    margin-bottom: -1px;
    border-color: #222;
    border-bottom: 1px solid #fff;
    background: #fff;
    color: #01b954;
}

.customer-service-tabs__item--kakao {
    gap: 6px;
}

.customer-service-tabs__item--kakao img {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

@media (max-width: 1024px) {
    .customer-service-tabs__item {
        font-size: 13px;
        padding-right: 6px;
        padding-left: 6px;
    }
}

@media (max-width: 768px) {
    .customer-service-tabs {
        margin-bottom: 30px;
        scroll-snap-type: x proximity;
    }

    .customer-service-tabs__list {
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
    }

    .customer-service-tabs__item {
        flex: 0 0 auto;
        min-width: 132px;
        min-height: 48px;
        padding: 8px 12px;
        font-size: 13px;
        scroll-snap-align: center;
    }

    .customer-service-tabs__item--kakao {
        min-width: 142px;
    }
}
