.cew-pt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.cew-pt-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cew-pt-tabs::-webkit-scrollbar {
    display: none;
}

.cew-pt-tab {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid #E5E7EB;
    background: var(--color-grey-97, #F6F7FA);
    color: #5C6574;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.cew-pt-tab:hover {
    background: rgba(255,255,255,0.08);
}

.cew-pt-tab.is-active {
    color: #fff;
    border: 1px solid var(--SPW-0, #58CBE6);
    background: var(--SPW-0, #58CBE6);
}

.cew-pt-count-text {
    color: #5C6574;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1024px) {
    .cew-pt-count-text{
        display: none;
    }

    .cew-pt-wrap {
        padding-bottom: 10px;
        overflow-x: auto;
    }
}


@media (max-width: 767px) {
    .cew-pt-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .cew-pt-tab {
        font-size: 12px;
        padding: 6px 13px;
    }
}
