<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.serp-chips {
    position: relative;
    display: flex;
    gap: .5rem;
    mask-mode: alpha;
    mask-image: linear-gradient(to right, black calc(100% - 1.5rem), transparent);
}

.serp-chips__list {
    display: flex;
    gap: .5rem;
    padding-left: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    padding-right: 1rem;
}

.serp-chips__item {
    display: block;
}

.serp-chips__item a {
    font-size: .875rem;
    line-height: 1.5;
    display: block;
    color: var(--greyColor20);
    background-color: var(--secondaryColorLight);
    border-radius: .75rem;
    white-space: nowrap;
    padding: .1875rem .75rem;
    text-decoration: none;
}

.serp-chips__item a:hover {
    text-decoration: underline;
}
</pre></body></html>