/* === ListingHighlightChips — horizontal chip row for top property features. Variables from app.css only. Zero inline styles. === */

.lst-highlights {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75em;
    overflow-x: auto;
    padding: 0.25em 0 1em;
    margin-bottom: 0.5rem;
    scrollbar-width: none;
}

.lst-highlights::-webkit-scrollbar { display: none; }

.lst-highlights__chip {
    display: flex;
    align-items: center;
    gap: 0.4em;
    border: 1px solid var(--antologa-light-gray);
    border-radius: 999rem;
    padding: 0.35em 0.85em;
    white-space: nowrap;
    background: var(--antologa-white);
    flex-shrink: 0;
}

.lst-highlights__chip-icon {
    color: var(--antologa-primary) !important;
    font-size: 1.15rem !important;
}

.lst-highlights__chip-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    color: var(--antologa-dark);
}
