/* Atlas POI Recommender — Tailwind complement */

/* Thin scrollbars for horizontal galleries */
.thin-scroll {
    scrollbar-width: thin;
    scrollbar-color: #d6dae3 transparent;
}
.thin-scroll::-webkit-scrollbar {
    height: 6px;
}
.thin-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.thin-scroll::-webkit-scrollbar-thumb {
    background-color: #d6dae3;
    border-radius: 9999px;
}
.thin-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #b2bacb;
}

/* Fallback styling for broken city cover images */
.city-fallback {
    background: linear-gradient(135deg, #434a5e 0%, #1c1f29 100%);
}

/* Multi-line truncation (Tailwind Play CDN ships line-clamp, this is a safety net) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
