/* InmateGuide custom styles layered on top of Tailwind CDN */

:root {
  --ig-navy:  #0f172a;  /* slate-900 */
  --ig-ink:   #020617;  /* slate-950 */
  --ig-amber: #fcd34d;  /* amber-300 */
  --ig-gold:  #b45309;  /* amber-700 */
  --ig-stone: #f5f5f4;
}

html { scroll-behavior: smooth; }

body { font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: #1e293b; }

.font-serif, .font-slab {
  font-family: 'Roboto Slab', Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.prose-ig p   { line-height: 1.75; margin-bottom: 1rem; color: #334155; }
.prose-ig h2  { font-family: 'Roboto Slab', Georgia, serif; font-weight: 700; font-size: 1.5rem; margin: 2rem 0 .75rem; color: var(--ig-ink); }
.prose-ig h3  { font-family: 'Roboto Slab', Georgia, serif; font-weight: 700; font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--ig-ink); }
.prose-ig ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-ig li  { margin-bottom: .35rem; color: #334155; }
.prose-ig a   { color: var(--ig-gold); text-decoration: underline; text-decoration-color: rgba(180,83,9,.35); }
.prose-ig a:hover { color: var(--ig-navy); }

.facility-card {
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.facility-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px -10px rgba(15,23,42,.35);
  border-color: var(--ig-amber);
}

.adsense-slot {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-size: .75rem;
  text-align: center;
  padding: 1rem;
  border-radius: .5rem;
  margin: 1.25rem 0;
}
