.cks-chip-strip {
    width: 100%;
    overflow: hidden;
}

.cks-chip-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cks-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cks-chip:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.cks-chip--manual {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.cks-chip--model {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.cks-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.cks-chip__label {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cks-chip-strip__inner {
        gap: 8px;
    }

    .cks-chip {
        padding: 9px 12px;
        font-size: 13px;
    }
}