/* Local360Hub — small custom CSS on top of Tailwind Play CDN */

[x-cloak] { display: none !important; }

html { -webkit-font-smoothing: antialiased; }

/* Typography polish for prose blocks */
.prose :where(h2,h3) { letter-spacing: -0.02em; }
.prose :where(a) { color: #c2410c; text-decoration: none; }
.prose :where(a):hover { color: #9a3412; text-decoration: underline; }
.prose :where(code) { background: #f1f5f9; padding: 0 .25rem; border-radius: 4px; font-size: .9em; }

/* Subtle scrollbar in admin */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15,23,42,.2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,23,42,.35); }

/* Hide focus rings on click but keep for keyboard nav */
:focus:not(:focus-visible) { outline: none !important; box-shadow: none !important; }

/* Line clamp fallback */
.line-clamp-1 { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:1; overflow:hidden; }
.line-clamp-2 { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden; }
