/* ==========================================================================
   SMAU Garden & Pub — stílusrendszer
   ========================================================================== */

:root {
  /* Márkaszínek — hivatalos arculati CMYK értékekből (dark green + gold) */
  --green-950: #03110a;
  --green-900: #0a2818;
  --green-850: #0e3220;
  --green-800: #123a24;
  --green-700: #1b4d31;
  --green-600: #29663f;

  --gold-600: #b8940a;
  --gold-500: #e6bf0d;
  --gold-400: #eccb3a;
  --gold-300: #f1d768;
  --gold-100: #faf0c8;

  --cream-50: #faf6ec;
  --cream-100: #f4ecd8;
  --cream-200: #ece0c4;

  --ink-900: #1a1712;
  --ink-700: #392f22;
  --ink-500: #6b5f4e;

  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;

  --shadow-md: 0 12px 30px -12px rgba(10, 28, 18, 0.35);
  --shadow-lg: 0 24px 60px -20px rgba(10, 28, 18, 0.45);
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
/* picture is a transparent wrapper — without this, height:100% on the img
   can't resolve against an ancestor because <picture> has no intrinsic height
   of its own, leaving cover-fit images short inside fixed-aspect containers. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { display: block; }

html, body { height: 100%; }
body {
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---- Layout helpers --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 720px) {
  .container { padding-inline: 32px; }
}

.section { padding-block: 64px; }
.section--tight { padding-block: 40px; }
@media (min-width: 900px) {
  .section { padding-block: 100px; }
  .section--tight { padding-block: 56px; }
}

.section--dark {
  background: var(--green-900);
  color: var(--cream-100);
}
.section--gold {
  background: linear-gradient(160deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
}
.section--cream { background: var(--cream-100); }

.grid { display: grid; gap: 28px; }
@media (min-width: 780px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.stack { display: flex; flex-direction: column; gap: 16px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold-500); color: var(--green-950);
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---- Typography -------------------------------------------------------- */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: inherit;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.15rem; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-500);
  max-width: 58ch;
}
.section--dark .lead { color: var(--cream-200); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.section--dark .eyebrow, .section--green .eyebrow { color: var(--gold-400); }
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}

.font-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.text-gold { color: var(--gold-500); }
.text-cream { color: var(--cream-100); }
.max-prose { max-width: 62ch; }

/* ---- Flourish divider (ornamentika) ------------------------------------ */
.flourish {
  width: 84px;
  height: 28px;
  color: var(--gold-500);
  margin-block: 18px;
}
.flourish--center { margin-inline: auto; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold-500);
  color: var(--green-950);
}
.btn--gold:hover { background: var(--gold-400); }

.btn--outline {
  border-color: currentColor;
  color: var(--cream-100);
}
.btn--outline:hover { background: rgba(250, 246, 236, 0.1); }

.btn--dark-outline {
  border-color: var(--green-800);
  color: var(--green-900);
}
.btn--dark-outline:hover { background: var(--green-900); color: var(--cream-50); }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---- Header / Nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(230, 191, 13, 0.16);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -18px rgba(0,0,0,.6); }
/* backdrop-filter lives on a pseudo-element, not .site-header itself —
   a filter on the header would make it a containing block for its
   position:fixed descendants (the mobile nav panel), breaking it. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 40, 24, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-50);
}
.brand__logo {
  height: 42px;
  width: auto;
  display: block;
}
.brand__mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--gold-500);
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-200);
  font-weight: 600;
  display: none;
}
@media (min-width: 560px) { .brand__tag { display: inline; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(230,191,13,0.4);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 940px) { .nav-toggle { display: none; } }

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 84vw);
  background: var(--green-950);
  padding: 90px 26px 26px;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 90;
  overflow-y: auto;
}
.site-nav.is-open { transform: translateX(0); }

.nav-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(230,191,13,0.4);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
}
.nav-close svg { width: 20px; height: 20px; }

.site-nav__social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-nav__social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(230,191,13,0.3);
  border-bottom: 1px solid rgba(230,191,13,0.3);
  padding: 0;
}
.site-nav__social a svg { width: 18px; height: 18px; color: var(--gold-400); }
.site-nav__social a:hover { background: rgba(230,191,13,0.12); }

.site-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream-100);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-500); }

.site-nav__cta { margin-top: 18px; }
/* .site-nav a's own color/padding would otherwise win (higher specificity
   than .btn--gold/.btn--sm), leaving the CTA pill with cramped padding and
   the wrong (cream) text color instead of dark green on gold. */
.site-nav a.site-nav__cta {
  color: var(--green-950);
  padding: 10px 18px;
  border-bottom: none;
}
.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta[aria-current="page"] { color: var(--green-950); }
.site-nav a.site-nav__cta::after { display: none; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(3, 17, 10, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 85;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (min-width: 940px) {
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    background: transparent;
    padding: 0;
    transform: none;
    gap: 28px;
  }
  .site-nav a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: none;
    padding: 6px 2px;
    position: relative;
  }
  .site-nav a::after {
    content: '';
    position: absolute; left: 0; right: 100%; bottom: -2px;
    height: 2px; background: var(--gold-500);
    transition: right .2s ease;
  }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
  .nav-backdrop { display: none; }
  .site-nav__cta { margin-top: 0; margin-left: 6px; }
  .nav-close, .site-nav__social { display: none; }
}

body.nav-locked { overflow: hidden; }

/* ---- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-50);
  overflow: hidden;
}
.hero--tall { min-height: 92svh; }
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(3,17,10,0.94) 0%, rgba(3,17,10,0.55) 42%, rgba(3,17,10,0.25) 68%, rgba(3,17,10,0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  padding-block: 64px 56px;
  width: 100%;
}
.hero__title { max-width: 16ch; }
.hero__lead { color: var(--cream-200); margin-top: 18px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.18);
  font-size: 0.88rem;
  color: var(--cream-200);
}
.hero__meta strong { color: var(--gold-400); display: block; font-family: var(--font-display); font-size: 1rem; }

/* Small page hero (subpages) */
.page-hero { min-height: 46svh; }
.page-hero .hero__content { padding-block: 46px 40px; }

/* ---- Cards / feature blocks ------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,23,18,0.05);
}
.card--dark {
  background: var(--green-850);
  color: var(--cream-100);
  border: 1px solid rgba(230,191,13,0.14);
}
.card__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--green-900);
  margin-bottom: 18px;
}
.card--dark .card__icon { background: rgba(230,191,13,0.16); color: var(--gold-400); }
.card__icon svg { width: 22px; height: 22px; }

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.media-card--wide img { aspect-ratio: 16/10; }
.media-card__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(3,17,10,0.88), transparent);
  color: var(--cream-50);
}

.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split--reverse .split__media { order: 2; }
}
.split__media img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split__media--duo img { width: 100%; height: auto; }

/* ---- Pills / tags -------------------------------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid var(--cream-200);
}
.section--dark .pill {
  background: rgba(250,246,236,0.06);
  color: var(--cream-100);
  border-color: rgba(230,191,13,0.22);
}

.tag-gold {
  display: inline-block;
  background: var(--gold-500);
  color: var(--green-950);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---- Quote / slogan strip ---------------------------------------------- */
.slogan-strip {
  text-align: center;
  padding-block: 20px;
}
.slogan-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

/* ---- Menu highlight list -------------------------------------------------- */
.menu-list { border-top: 1px solid var(--cream-200); }
.menu-list__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-200);
}
.menu-list__row h4 { font-size: 1.02rem; margin-bottom: 2px; }
.menu-list__row p { color: var(--ink-500); font-size: 0.92rem; }
.menu-list__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-600);
  white-space: nowrap;
}
.section--dark .menu-list, .section--dark .menu-list__row { border-color: rgba(250,246,236,0.14); }
.section--dark .menu-list__price { color: var(--gold-400); }

/* ---- Opening hours / info table --------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 10px 0; border-bottom: 1px dashed rgba(250,246,236,0.18); }
.info-table td:first-child { color: var(--cream-200); font-weight: 500; }
.info-table td:last-child { text-align: right; font-weight: 700; color: var(--cream-50); }

/* ---- Gallery ------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--green-800);
  border: 0;
  padding: 0;
}
.gallery-grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }
.gallery-grid__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(3,17,10,0.35), transparent 45%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-grid__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(3,10,7,0.94);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(250,246,236,0.08);
  border: 1px solid rgba(230,191,13,0.3);
  color: var(--cream-50);
  border-radius: 999px;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav svg, .lightbox__close svg { width: 20px; height: 20px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 700px) {
  .lightbox__prev { left: 26px; }
  .lightbox__next { right: 26px; }
}

/* ---- CTA banner ---------------------------------------------------------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--cream-50);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230,191,13,0.2);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: -40% -10% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(230,191,13,0.25), transparent 70%);
}
@media (min-width: 780px) { .cta-banner { padding: 64px 60px; } }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.cta-banner__badge { width: 96px; height: auto; margin: 0 auto 18px; display: block; position: relative; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--green-950);
  color: var(--cream-200);
  padding-block: 60px 28px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand__logo { height: 58px; width: auto; display: block; }
.footer-brand__tag { margin-top: 14px; color: var(--cream-200); max-width: 32ch; font-size: 0.94rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--gold-400); }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(230,191,13,0.3);
}
.social-row a:hover { background: rgba(230,191,13,0.12); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(250,246,236,0.1);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--cream-200);
  opacity: 0.85;
}
.footer-compliance { display: flex; align-items: center; gap: 10px; opacity: 1; }
.footer-compliance img {
  height: 40px; width: auto;
  border-radius: 6px;
  background: var(--cream-50);
  padding: 4px 8px;
}

/* ---- Menu category art (extracted from the printed itallap/étlap) -------- */
.heading-art { max-width: 100%; height: auto; display: block; }
.heading-art--md { max-height: 90px; width: auto; }
.heading-art--sm { max-height: 64px; width: auto; }
.heading-art--lg { max-height: 130px; width: auto; }

/* ---- Misc: badges (VIP/family) ------------------------------------------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ---- Map embed wrapper --------------------------------------------------- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---- Contact strip -------------------------------------------------------- */
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row__icon {
  width: 42px; height: 42px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(230,191,13,0.14);
  color: var(--gold-400);
}
.contact-row__icon svg { width: 20px; height: 20px; }

/* ---- Premier League meccs-sáv --------------------------------------------- */
.match-ticker-wrap {
  background: var(--green-950);
  border-bottom: 1px solid rgba(230, 191, 13, 0.16);
  overflow: hidden;
}
.match-ticker { overflow: hidden; }
.match-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: match-ticker-scroll 55s linear infinite;
}
.match-ticker:hover .match-ticker__track,
.match-ticker:focus-within .match-ticker__track {
  animation-play-state: paused;
}
@keyframes match-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.match-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--cream-100);
  white-space: nowrap;
  border-right: 1px solid rgba(230, 191, 13, 0.14);
  flex: none;
}
.match-card__date {
  color: var(--gold-400);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-right: 4px;
}
.match-card__team { display: inline-flex; align-items: center; gap: 6px; }
.match-card__team img { width: 20px; height: 20px; object-fit: contain; flex: none; }
.match-card__vs { color: var(--cream-200); opacity: 0.55; margin: 0 2px; }
.match-ticker__empty {
  padding: 13px 20px;
  color: var(--cream-200);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---- Utility spacing ------------------------------------------------------ */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
