/* ================================================================
   ACREDIÓTICA — Design System
   Base: Tailwind CDN (loaded in HTML)
   Fonts: Inter (body) + Playfair Display (display)
   Colors: #FECD01 (yellow) / #333333 (dark) / #F5F4F0 (cream)
   ================================================================ */

/* ---- Hide Scrollbar Utility ---- */
.hide-scroll::-webkit-scrollbar {
  display: none;
}
.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---- Selection ---- */
::selection {
  background: #FECD01;
  color: #333333;
}
