.rs-tags-card {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rs-tags-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rs-tags-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.rs-tags-header-icon i {
    font-size: 28px;
}

.rs-tags-header-icon svg {
    width: 28px;
    height: 28px;
}

.rs-tags-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.rs-tags-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0 28px;
}

.rs-tags-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rs-tag-pill {
    --rs-tag-color: currentColor;
    --rs-tag-bg: transparent;
    --rs-tag-border: currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    border: 1px solid var(--rs-tag-border, currentColor);
    background: var(--rs-tag-bg, transparent);
    color: var(--rs-tag-color, currentColor);
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    will-change: transform;
}

.rs-tag-pill:hover,
.rs-tag-pill:focus {
    color: var(--rs-tag-color, currentColor);
    text-decoration: none;
    filter: saturate(1.08);
}

.rs-tag-pill:focus-visible {
    outline: 3px solid rgba(23, 141, 135, .2);
    outline-offset: 3px;
}

.rs-tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: inherit;
    line-height: 1;
}

.rs-tag-icon svg {
    fill: currentColor;
}

.rs-tag-label {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.rs-tags-empty {
    color: #6b7787;
    font-size: 15px;
}

@media (max-width: 767px) {
    .rs-tags-title {
        font-size: 25px;
    }

    .rs-tag-label {
        font-size: 16px;
    }
}
