/* ──────────────────────────────────────────────────────────────
   TicketHub base — chrome shared by every public page.

   Merged from the old base-dark.css (595 lines) + base-light.css (512),
   which were ~97% identical and differed almost only in their :root block.
   Colour now comes from tokens.css via data-surface, so a single page can
   run a black hero into a concrete band without swapping stylesheets.

   Load order: tokens.css -> fonts.css -> components.css -> base.css
   ────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* min-width:0 matters: body is a flex column, so main defaults to
   min-width:auto and refuses to shrink below its widest content. A
   horizontal scroller inside it (the browse filter row is overflow-x:auto
   and nowrap on mobile) would otherwise stretch main past the viewport and
   drag every sibling — including the events grid — wide with it. */
main {
  flex: 1;
  min-width: 0;
}

h1, h2, h3, h4 { color: var(--text); }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (max-width: 640px) {
  .page-wrap { padding: 70px 16px 80px; }
}

/* ══════════════════════════════════════════════════════════════
   Navigation
   ══════════════════════════════════════════════════════════════ */

/* Nav colour as one token set, switched by the data-nav attribute that
   base.html writes from the {% block nav_theme %} block.

   The light defaults sit on :root, not on .site-nav, because two pieces of
   nav render OUTSIDE <nav>: #mobileMenu and the .lang-toggle inside it are
   siblings of the bar, so a token declared only on .site-nav would resolve
   to nothing there. data-nav='ink' then overrides the set on the bar
   element alone — which is exactly why the floating panels (mobile menu,
   search results) stay light cards while the bar itself goes black. */
:root {
  --nav-bg:          var(--paper);
  /* The opaque companion to --nav-bg. The mobile search overlay covers the
     bar's own logo and links, so it can never be translucent even when the
     bar is — see the ink-clear variant below. */
  --nav-bg-solid:    var(--paper);
  --nav-fg:          var(--ink);
  --nav-line:        rgba(0, 0, 0, 0.08);
  --nav-shadow:      0 2px 24px rgba(0, 0, 0, 0.12);
  --nav-hover:       rgba(0, 0, 0, 0.06);
  --nav-field-bg:    #d9d9d9;
  --nav-field-bg-hi: #e6e6e6;
  --nav-field-line:  var(--ink);
  --nav-field-ph:    #3d3d3d;
  --nav-cta-bg:      var(--ink);
  --nav-cta-fg:      var(--paper-2);
  --nav-pill-bg:     var(--ink);
  --nav-pill-ring:   none;
}

/* ^= so the clear variant inherits the whole ink set and overrides only
   what it must; custom properties do not cascade between selectors. */
.site-nav[data-nav^='ink'] {
  --nav-bg:          var(--ink);
  --nav-bg-solid:    var(--ink);
  --nav-fg:          var(--paper-2);
  --nav-line:        rgba(255, 255, 255, 0.14);
  --nav-shadow:      0 2px 24px rgba(0, 0, 0, 0.55);
  --nav-hover:       rgba(255, 255, 255, 0.10);
  --nav-field-bg:    #1e1e1e;
  --nav-field-bg-hi: #2a2a2a;
  --nav-field-line:  rgba(255, 255, 255, 0.22);
  --nav-field-ph:    #9a9a9a;  /* 6.4:1 on --nav-field-bg */
  --nav-cta-bg:      var(--paper-2);
  --nav-cta-fg:      var(--ink);
  /* The ink pill would vanish into an ink bar, so it lifts one step and
     takes a hairline ring. inset box-shadow, not a border: a border would
     add 2px to a pill that is 3px of padding around 0.72rem type. */
  --nav-pill-bg:     #242424;
  --nav-pill-ring:   inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

/* Fully transparent bar: no fill, no scroll shadow, no hairline — the page
   runs straight under it and only the type and icons sit on top. Used by
   checkout and the event shop, both of which open on a blurred poster.

   No backdrop blur either: a blur with no fill still lays down a visible
   frosted band with a hard bottom edge, which is the darkening this variant
   exists to remove. --nav-bg-solid stays opaque ink (inherited from the ink
   set) because the mobile search overlay covers the bar's own logo and links
   and can never be see-through.

   The trade: contrast is now whatever scrolls underneath. Both pages are ink
   surfaces with dark cards, so --nav-fg holds; the one bright thing that
   passes under is the event-shop sidebar poster, where white type lands
   around 4.5:1. A light page opting into this variant would need its own
   scrim. */
.site-nav[data-nav='ink-clear'] {
  --nav-bg:     transparent;
  --nav-shadow: none;
  --nav-line:   transparent;
}

/* Same clear-while-at-rest treatment as ink-lift, but for pages that open on
   a light (paper) surface instead of a dark one — the :root light token set
   already gives --nav-fg: ink, so this only needs to drop the fill, shadow
   and hairline while unscrolled. base.html adds .scrolled at scrollY >= 10,
   at which point this stops matching and the bar falls back to the solid
   paper set (white fill, dark text). */
.site-nav[data-nav='paper-clear']:not(.scrolled) {
  --nav-bg:     transparent;
  --nav-shadow: none;
  --nav-line:   transparent;
}

/* Same clear bar, but only while the page is at rest: base.html adds
   .scrolled at scrollY >= 10, and from there this rule stops matching and the
   bar falls back to the plain ink set above — fill, hairline and shadow all
   return together. Used by the event shop, where the poster shows through at
   the top but content passing underneath needs a solid ground behind it.

   Written as :not(.scrolled) rather than a .scrolled override so the ink
   state stays defined in exactly one place. Specificity works out: this is
   three classes against [data-nav^='ink']'s two. */
.site-nav[data-nav='ink-lift']:not(.scrolled) {
  --nav-bg:     transparent;
  --nav-shadow: none;
  --nav-line:   transparent;
}

/* The mark is two-tone by design (an #f7f8f8 half against #0b0b0b halves),
   so on the concrete bar its light half already reads as negative space.
   Inverting preserves that figure/ground split on ink; flattening it to
   solid white (brightness(0) invert(1)) would close the mark into a blob. */
.site-nav[data-nav^='ink'] .nav-logo-mark img,
.site-nav[data-nav^='ink'] .nav-logo-mark svg { filter: invert(1); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease),
    border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}

.site-nav.scrolled {
  box-shadow: var(--nav-shadow);
  border-bottom-color: var(--nav-line);
}

.site-nav.nav-hidden { transform: translateY(-100%); }

/* The bar carries its own colour, whatever the page surface below it. */
.site-nav,
.site-nav * { color: var(--nav-fg); }

.nav-inner {
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 28px);
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.nav-logo-mark img,
.nav-logo-mark svg { width: 100%; height: 100%; display: block; }
.nav-logo:hover .nav-logo-mark { transform: rotate(-5deg) scale(1.08); }

.nav-brand {
  font-family: var(--font-hero);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--nav-fg);
}
.nav-brand em { color: var(--red); font-style: normal; }

/* ── Search ── */
.nav-search-wrap {
  position: relative;
  flex: 0 1 380px;
  min-width: 0;
}
.nav-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nav-fg);
  font-size: 0.95rem;
  pointer-events: none;
}
.nav-search-input {
  width: 100%;
  height: 40px;
  background: var(--nav-field-bg);
  border: 1.5px solid var(--nav-field-line);
  border-radius: var(--radius-pill);
  color: var(--nav-fg);
  padding: 0 16px 0 42px;
  font-family: var(--font-hero);
  font-size: 0.85rem;
  outline: none;
  transition: background var(--dur) var(--ease);
}
.nav-search-input::placeholder { color: var(--nav-field-ph); opacity: 1; }
.nav-search-input:focus { background: var(--nav-field-bg-hi); }

/* ── Links ── */
.nav-desktop-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 26px);
  margin-left: auto;
}

.nav-link-plain {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 2px;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-stretch: 88%;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--nav-fg);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link-plain::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--dur) var(--ease);
}
.nav-link-plain:hover::after { width: 100%; }

/* ── Login pill ── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.62em 1.4em;
  background: var(--nav-cta-bg);
  color: var(--nav-cta-fg);
  border-radius: var(--radius-pill);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-stretch: 88%;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--red); }

/* ── EN / SR toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--nav-pill-bg);
  box-shadow: var(--nav-pill-ring);
  border-radius: var(--radius-pill);
  padding: 3px;
  flex-shrink: 0;
}
.lang-toggle button,
.lang-toggle a {
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-stretch: 88%;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang-toggle .is-active {
  background: var(--paper-2);
  color: var(--ink);
}

/* ── Mobile ── */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--nav-fg);
  font-size: 1.05rem;
  cursor: pointer;
}
.nav-icon-btn:hover { background: var(--nav-hover); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  right: var(--gutter);
  width: 240px;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  z-index: 199;
  padding: 6px 0;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.mobile-menu.open { display: flex; }

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--ink);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-stretch: 88%;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-menu-link:last-child { border-bottom: none; }
.mobile-menu-link:hover { background: var(--paper-3); color: var(--red); }

/* ── Mobile search overlay ── */
.mobile-search-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--nav-bg-solid);
  align-items: center;
  gap: 10px;
  padding: 0 var(--gutter);
  z-index: 10;
}
.mobile-search-overlay.open { display: flex; }

.mobile-search-input-mob {
  flex: 1;
  height: 40px;
  background: var(--nav-field-bg);
  border: 1.5px solid var(--nav-field-line);
  border-radius: var(--radius-pill);
  color: var(--nav-fg);
  padding: 0 16px 0 42px;
  font-family: var(--font-hero);
  font-size: 0.9rem;
  outline: none;
}
.mobile-search-input-mob::placeholder { color: var(--nav-field-ph); }

.mobile-search-btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--nav-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

#searchBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 197;
}

#mobileSearchResults {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 62px;
  max-width: 90%;
  margin: 0 auto;
  background: var(--paper-2);
  z-index: 198;
  max-height: 60vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ink);
}

.mobile-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.15s var(--ease);
}
.mobile-search-result:last-child { border-bottom: none; }
.mobile-search-result:hover { background: var(--paper-3); }

.mobile-search-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.mobile-search-name { font-family: var(--font-hero); font-size: 0.95rem; }
.mobile-search-date { font-size: 0.78rem; color: #666; }
.mobile-search-empty { padding: 14px 20px; color: #666; font-size: 0.9rem; }

/* ── Account dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  z-index: 300;
  overflow: hidden;
}
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--ink);
  font-family: var(--font-hero);
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s var(--ease);
}
.nav-dropdown__menu a:hover { background: var(--paper-3); }
.nav-dropdown__menu a.is-danger { color: var(--red); border-top: 1px solid rgba(0, 0, 0, 0.1); }

.mobile-menu-lang {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .mobile-hide { display: none !important; }
  .nav-search-wrap { display: none; }
  .nav-desktop-links { display: none; }
  .nav-mobile-actions { display: flex; }
  #userNavDropdown,
  #makerNavDropdown { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════════════ */

.site-footer {
  /* Texture goes straight on the background rather than via a ::before: the
     footer is not a .section, so it never picked up the ink surface texture and
     used to be the one flat-black band on the page. A pseudo-element here would
     have to be z-index-managed against the footer's own children; this does not. */
  background: var(--ink) var(--tex-smoke) center / cover no-repeat;
  color: var(--paper-2);
  margin-top: auto;
  padding: clamp(48px, 6vw, 88px) 0 32px;
}

.footer-inner {
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
}

.footer-mark {
  width: 74px;
  height: 74px;
  border: 3px solid var(--paper-2);
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 10px;
}
.footer-mark img,
.footer-mark svg { width: 100%; height: auto; display: block; }

.footer-heading {
  font-family: var(--font-hero);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper-2);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  padding: 6px 0;
  color: var(--paper-2);
  font-family: var(--font-hero);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-link:hover { color: var(--red); }
.footer-link em { color: var(--red); font-style: normal; }

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  color: var(--paper-2);
  font-family: var(--font-hero);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.35;
}
.footer-contact i,
.footer-contact svg { color: var(--red); margin-top: 2px; flex-shrink: 0; }
a.footer-contact:hover { color: var(--red); }

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 56px);
}

/* Footer sits on ink, so the solid pill must be light-on-dark */
.site-footer .pill-btn--solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.site-footer .pill-btn--solid:hover { background: var(--red); border-color: var(--red); color: var(--paper-2); }
.site-footer .pill-btn--outline { color: var(--paper-2); border-color: var(--paper-2); }
.site-footer .pill-btn--outline:hover { background: var(--paper-2); color: var(--ink); }

/* ── Payment + security marks ──
   Required by the acquirer, so they stay in the footer even though the mockup
   omits them. Deliberately understated: small, low-contrast labels, sitting
   below the main footer body. */
.footer-payment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: flex-end;
  margin-top: clamp(32px, 4vw, 56px);
}

.footer-payment__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-payment__label {
  width: 100%;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-stretch: 90%;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d6d6d;
  margin-bottom: 2px;
}

.footer-payment img { height: 24px; width: auto; display: block; }

.footer-payment__processor {
  height: 38px !important;
  padding: 4px 8px;
  background: var(--paper-2);
  border-radius: 4px;
  opacity: 0.9;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-payment__processor:hover { opacity: 1; transform: scale(1.04); }

.footer-rule {
  border: 0;
  border-top: 2px solid var(--paper-2);
  margin: clamp(24px, 3vw, 40px) 0 18px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-hero);
  font-size: 0.85rem;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 32px);
}
.footer-legal a {
  color: var(--paper-2);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--red); }
.footer-legal .dot { color: var(--red); }

.social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--paper-2);
  border-radius: 50%;
  color: var(--paper-2);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.social-btn:hover { background: var(--paper-2); color: var(--ink); }

.divider { border: none; border-top: 1px solid var(--line); }

/* ══════════════════════════════════════════════════════════════
   Legacy button + badge classes

   Still referenced by unmigrated templates and the dashboards. Recoloured
   onto the new palette; Phase 4 replaces the usages with .pill-btn.
   ══════════════════════════════════════════════════════════════ */

.btn-primary,
.btn-outline,
.btn-green,
.btn-blue,
.btn-dashboard {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.btn-primary { background: var(--red); color: var(--paper-2); border-color: var(--red); }
.btn-primary:hover:not(:disabled) { background: var(--red-bright); border-color: var(--red-bright); }
.btn-primary:disabled {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: var(--surface-2);
  cursor: not-allowed;
}

.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--paper-2); }

.btn-green { background: var(--green); color: var(--ink); border-color: var(--green); }
.btn-green:hover { background: #2bb85c; border-color: #2bb85c; }

.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: #2563eb; border-color: #2563eb; }

.btn-dashboard {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--border-hover);
  font-weight: 500;
}
.btn-dashboard:hover { border-color: var(--red); color: var(--red); }

.badge-accent,
.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-accent {
  background: var(--accent-glow);
  border: 1px solid rgba(202, 51, 51, 0.25);
  color: var(--red);
}
.badge-green {
  background: rgba(51, 204, 103, 0.1);
  border: 1px solid rgba(51, 204, 103, 0.25);
  color: var(--green);
}

.card-hover:hover { border-color: var(--red); box-shadow: var(--shadow-accent); }

.text-muted-th { color: var(--text-dim); }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.border-th { border-color: var(--line); }

/* ══════════════════════════════════════════════════════════════
   Utility classes formerly supplied by Tailwind.

   tailwind.css built to 0 bytes, so these hand-written rules were what
   actually made the nav and footer markup work. Tailwind has now been
   removed; these stay until Phase 4 finishes replacing the class names.
   ══════════════════════════════════════════════════════════════ */

.hidden { display: none !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
