/* =========================================================================
   RateMyFete.org — design system
   A warm, printed-poster village-fete aesthetic: cream paper, navy ink,
   mustard-and-red accents, hard offset shadows and bunting everywhere.
   ========================================================================= */

:root {
  --paper: #fdf6e8;
  --paper-2: #f6ecd6;
  --card: #fffdf8;
  --ink: #2a2620;
  --navy: #1b2a4a;
  --navy-light: #5c6b8a;
  --mustard: #e8b13a;
  --mustard-dark: #c68f1c;
  --red: #c8443b;
  --teal: #2e6b5e;
  --line: #e7dabb;
  --shadow: #e3d3a8;      /* hard offset shadow, warm */
  --shadow-navy: rgba(27, 42, 74, 0.16);

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1120px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  /* bunting tile drawn as an inline SVG */
  --bunting: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='28'><rect width='120' height='3' fill='%231b2a4a'/><polygon points='2,3 32,3 17,26' fill='%23c8443b'/><polygon points='32,3 62,3 47,26' fill='%23e8b13a'/><polygon points='62,3 92,3 77,26' fill='%232e6b5e'/><polygon points='92,3 122,3 107,26' fill='%233a5ea8'/></svg>");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(var(--paper-2) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--navy); margin: 0 0 .5rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; font-optical-sizing: auto; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 2px; }
a:hover { color: var(--mustard-dark); }
img { max-width: 100%; display: block; }

:focus-visible { outline: 3px solid var(--mustard); outline-offset: 2px; border-radius: 3px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(2.4rem, 6vw, 4rem) 0; }
.section--tight { padding: clamp(1.6rem, 4vw, 2.6rem) 0; }
.center { text-align: center; }
.muted { color: var(--navy-light); }
.stack { display: flex; flex-direction: column; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  transform: rotate(-1.5deg);
  margin-bottom: .1rem;
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.see-all { font-weight: 700; white-space: nowrap; text-decoration: none; }
.see-all:hover { text-decoration: underline; }
.field-hint { font-size: .85rem; color: var(--navy-light); margin-top: .8rem; }
.page-title { font-size: clamp(1.9rem, 4vw, 2.7rem); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: .5rem; z-index: 200;
  background: var(--navy); color: var(--paper); padding: .6rem 1rem; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { left: .8rem; color: var(--paper); }

/* ---------- bunting ---------- */
.bunting { height: 26px; background: var(--bunting) repeat-x top left; background-size: 120px 26px; width: 100%; }
.bunting span { display: none; }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(253, 246, 232, 0.92); backdrop-filter: blur(6px); border-bottom: 2px solid var(--navy); }
.nav { display: flex; align-items: center; gap: 1rem; max-width: var(--maxw); margin-inline: auto; padding: .6rem clamp(1rem, 4vw, 2rem); }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; margin-right: auto; }
.brand img { width: 40px; height: auto; filter: drop-shadow(0 2px 0 var(--shadow)); }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--navy); letter-spacing: -0.02em; }
.brand-text small { color: var(--red); font-size: .78em; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a { font-weight: 700; color: var(--navy); text-decoration: none; padding: .5rem .8rem; border-radius: 999px; font-size: .98rem; }
.nav-links a:hover { background: var(--paper-2); color: var(--navy); }
.nav-links a[aria-current="page"] { background: var(--navy); color: var(--paper); }
.nav-cta { background: var(--mustard) !important; color: var(--navy) !important; border: 2px solid var(--navy); box-shadow: 0 3px 0 var(--navy); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 2px solid var(--navy); border-radius: 10px; color: var(--navy); width: 42px; height: 42px; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 100%; height: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem; line-height: 1;
  padding: .8rem 1.3rem; border-radius: 999px; border: 2px solid var(--navy);
  text-decoration: none; cursor: pointer; transition: transform .08s ease, box-shadow .08s ease;
  box-shadow: 0 4px 0 var(--navy);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--navy); }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--navy); }
.btn-primary { background: var(--mustard); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: 0 4px 0 var(--shadow); }
.btn-ghost:hover { box-shadow: 0 6px 0 var(--shadow); }
.btn-ghost:active { box-shadow: 0 1px 0 var(--shadow); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: 0 4px 0 var(--navy); }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, var(--paper-2), var(--paper)); padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem); border-bottom: 2px dashed var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero-grid--top { align-items: flex-start; }
.hero-tag { display: block; font-size: .5em; color: var(--navy-light); font-weight: 600; letter-spacing: .02em; }
.accent { color: var(--red); }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 54ch; color: #4a4436; }
.hero-badge-graphic { display: grid; place-items: center; }
.hero-badge-graphic img { width: min(300px, 70%); animation: sway 6s ease-in-out infinite; transform-origin: top center; }
.hero-photo img { border-radius: var(--radius); border: 3px solid var(--navy); box-shadow: 0 8px 0 var(--shadow); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--paper-2); }
@keyframes sway { 0%, 100% { transform: rotate(-2.5deg); } 50% { transform: rotate(2.5deg); } }

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.3rem 0; }
.hero-stats { display: flex; gap: 1.8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.hero-stat span { font-size: .82rem; color: var(--navy-light); }

/* ---------- search ticket ---------- */
.search-ticket { background: var(--card); border: 2px solid var(--navy); border-radius: var(--radius); padding: 1rem; box-shadow: 0 6px 0 var(--shadow); margin-top: 1.4rem; position: relative; }
.search-form { display: flex; gap: .8rem; align-items: flex-end; flex-wrap: wrap; }
.field { display: flex; flex-direction: column; gap: .3rem; flex: 1 1 220px; min-width: 0; }
.field.full { flex-basis: 100%; }
.field label { font-weight: 700; font-size: .85rem; color: var(--navy); }
.field .hint { font-weight: 500; color: var(--navy-light); font-size: .78rem; }
input[type="text"], input[type="email"], input[type="date"], input[type="search"], select, textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .7rem .8rem; border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(232, 177, 58, .35); }
textarea { resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M2 4l5 6 5-6' fill='none' stroke='%231b2a4a' stroke-width='2'/></svg>"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.2rem; }

/* ---------- panels & cards ---------- */
.panel { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.fete-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }

.fete-card { display: flex; flex-direction: column; background: var(--card); border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: 0 5px 0 var(--shadow); transition: transform .1s ease, box-shadow .1s ease; }
.fete-card:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--shadow); }
.fete-card .thumb { aspect-ratio: 16 / 10; background: var(--paper-2) center/cover no-repeat; border-bottom: 2px solid var(--navy); }
.fete-card .body { padding: .9rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.fete-card h3 { margin: 0; font-size: 1.12rem; }
.locale { font-size: .82rem; color: var(--navy-light); font-weight: 600; }
.score-row { display: flex; align-items: center; gap: .5rem; margin-top: .2rem; }
.score-pill { display: inline-block; background: var(--navy); color: var(--paper); font-weight: 800; font-size: .82rem; padding: .18rem .55rem; border-radius: 999px; }
.rank-chip { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: .95rem; }

.county-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.county-card { box-shadow: 0 4px 0 var(--shadow); }
.county-card .body { padding: 1rem 1.15rem; }
.county-count { margin: 0; font-size: .82rem; color: var(--navy-light); }

/* ---------- how it works trio ---------- */
.trio .panel { border-color: var(--navy); box-shadow: 0 5px 0 var(--shadow); }
.step-emoji { font-size: 2rem; line-height: 1; margin-bottom: .3rem; }

/* ---------- scoring explainer / list ---------- */
.score-list { gap: 1rem; list-style: none; padding: 0; margin: 0; }
.score-list .panel { border-color: var(--line); }
.score-list strong { color: var(--navy); }

/* ---------- scorecard (rating form) ---------- */
.scorecard { background: var(--navy); color: var(--paper); border-radius: var(--radius); padding: 1.4rem clamp(1rem, 3vw, 1.8rem); border: 3px solid var(--navy); box-shadow: 0 7px 0 var(--shadow); }
.scorecard h3 { color: var(--mustard); font-size: 1.3rem; }
.scorecard .sub { color: rgba(253, 246, 232, .8); font-size: .9rem; margin-bottom: 1rem; }
.coconut-row { display: grid; grid-template-columns: 2rem 1fr 3.2rem; align-items: center; gap: .6rem 1rem; padding: .6rem 0; border-bottom: 1px dashed rgba(253, 246, 232, .18); }
.coconut-icon { font-size: 1.4rem; text-align: center; }
.coconut-row label { display: flex; flex-direction: column; font-weight: 700; color: var(--paper); font-size: .98rem; }
.coconut-row label .hint { font-weight: 500; font-size: .76rem; color: rgba(253, 246, 232, .7); }
.coconut-row .val { font-family: var(--font-head); font-weight: 800; color: var(--mustard); text-align: right; font-size: 1.05rem; }
.coconut-row input[type="range"] { grid-column: 2 / 4; width: 100%; margin: 0; accent-color: var(--mustard); background: transparent; }

.scorecard-total { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.stamp { display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: var(--red); color: var(--paper); font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; border: 3px dashed rgba(253, 246, 232, .7); box-shadow: 0 0 0 3px var(--red); transform: rotate(-6deg); }
.stamp small { display: block; font-family: var(--font-body); font-size: .5rem; letter-spacing: .12em; }
.verdict { font-family: var(--font-script); font-size: 1.7rem; color: var(--mustard); }

/* ---------- score breakdown ---------- */
.breakdown { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.breakdown-item { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 1rem .6rem; text-align: center; }
.breakdown-item .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--red); line-height: 1; }
.breakdown-item .label { font-size: .78rem; color: var(--navy-light); font-weight: 600; margin-top: .35rem; }

/* ---------- fete detail bits ---------- */
.breadcrumb { font-size: .85rem; margin-bottom: .9rem; color: var(--navy-light); }
.breadcrumb a { color: var(--navy-light); }
.fete-title { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
.fete-meta { font-size: .9rem; color: var(--navy-light); }
.verdict-sub { font-size: 1.15rem; color: var(--navy-light); font-family: var(--font-body); font-weight: 700; }
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: .9rem 0; }
.badge { background: var(--paper-2); border: 2px solid var(--line); color: var(--navy); font-weight: 700; font-size: .8rem; padding: .3rem .7rem; border-radius: 999px; }

/* ---------- reviews ---------- */
.reviews { display: flex; flex-direction: column; gap: 1.1rem; }
.review { display: grid; grid-template-columns: 46px 1fr; gap: .9rem; padding-bottom: 1.1rem; border-bottom: 1px dashed var(--line); }
.review:last-child { border-bottom: none; padding-bottom: 0; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: var(--paper); display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); }
.review .name { font-weight: 800; color: var(--navy); margin-right: .5rem; }
.review .date { color: var(--navy-light); font-size: .8rem; margin-left: .5rem; }
.review p { margin: .4rem 0 0; }

/* ---------- forms ---------- */
.form-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 1.4rem; margin-top: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form-grid .field.full { grid-column: 1 / -1; }
.form-success { margin-top: 1rem; background: #e7f3ec; border: 2px solid var(--teal); color: #1f4d40; border-radius: var(--radius-sm); padding: .8rem 1rem; font-weight: 600; }
.form-error { margin: .4rem 0 1rem; background: #fbe7e5; border: 2px solid var(--red); color: #8f2a23; border-radius: var(--radius-sm); padding: .7rem 1rem; font-weight: 600; }
.form-error[hidden], .form-success[hidden] { display: none; }

/* file upload */
.filedrop { border: 2px dashed var(--navy-light); border-radius: var(--radius-sm); padding: 1.1rem; text-align: center; background: var(--paper); cursor: pointer; transition: border-color .15s, background .15s; }
.filedrop:hover, .filedrop.drag { border-color: var(--mustard-dark); background: var(--paper-2); }
.filedrop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.filedrop .fd-hint { font-size: .85rem; color: var(--navy-light); margin: .3rem 0 0; }
.filedrop-preview { margin-top: .8rem; border-radius: var(--radius-sm); border: 2px solid var(--navy); max-height: 220px; object-fit: cover; width: 100%; }

/* tag chips (checkboxes) */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip label { display: inline-block; border: 2px solid var(--line); background: var(--paper); color: var(--navy); font-weight: 700; font-size: .85rem; padding: .4rem .8rem; border-radius: 999px; cursor: pointer; user-select: none; }
.chip input:checked + label { background: var(--mustard); border-color: var(--navy); }
.chip input:focus-visible + label { outline: 3px solid var(--mustard); outline-offset: 2px; }

/* ---------- leaderboard ---------- */
.leaderboard { display: flex; flex-direction: column; gap: .7rem; }
.leaderboard-row { display: grid; grid-template-columns: 2.4rem 64px 1fr auto; align-items: center; gap: .9rem; background: var(--card); border: 2px solid var(--navy); border-radius: var(--radius); padding: .7rem .9rem; text-decoration: none; color: var(--ink); box-shadow: 0 4px 0 var(--shadow); transition: transform .1s, box-shadow .1s; }
.leaderboard-row:hover { transform: translateX(3px); box-shadow: 0 4px 0 var(--mustard); }
.leaderboard-row .rank { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--red); text-align: center; }
.leaderboard-row .thumb { width: 64px; height: 48px; border-radius: 8px; background: var(--paper-2) center/cover no-repeat; border: 2px solid var(--navy); }
.leaderboard-row .info b { display: block; color: var(--navy); font-size: 1.02rem; }
.leaderboard-row .info span { font-size: .8rem; color: var(--navy-light); }
.leaderboard-row .total { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--navy); }
.leaderboard-row .total small { font-size: .7rem; color: var(--navy-light); font-family: var(--font-body); display: block; text-align: right; }

/* rank medals for top 3 */
.leaderboard-row:nth-child(1) .rank { color: #b8860b; }
.leaderboard-row:nth-child(2) .rank { color: #8a94a6; }
.leaderboard-row:nth-child(3) .rank { color: #a9662e; }

/* ---------- tabs (leaderboards) ---------- */
.tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tab { font-weight: 800; border: 2px solid var(--navy); background: var(--card); color: var(--navy); padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer; box-shadow: 0 3px 0 var(--shadow); }
.tab[aria-selected="true"] { background: var(--navy); color: var(--paper); box-shadow: 0 3px 0 var(--mustard); }

/* ---------- empty states ---------- */
.empty { padding: 2.6rem 1.5rem; }
.empty-head { font-family: var(--font-script); font-size: 1.7rem; color: var(--red); margin-bottom: .2rem; }

/* ---------- map (search) ---------- */
.search-layout { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
#map { height: 420px; border-radius: var(--radius); border: 3px solid var(--navy); box-shadow: 0 6px 0 var(--shadow); background: var(--paper-2); z-index: 1; }
.view-toggle { display: flex; gap: .5rem; margin-bottom: 1rem; }
.results-meta { font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.leaflet-popup-content { font-family: var(--font-body); }
.leaflet-popup-content a { font-weight: 800; }

/* ---------- prose (about/terms/privacy) ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--paper); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 1.6rem; padding: 2.4rem 0 1.6rem; }
.footer-grid h4 { color: var(--mustard); margin-bottom: .7rem; }
.footer-grid a { display: block; color: rgba(253, 246, 232, .82); text-decoration: none; padding: .18rem 0; font-size: .92rem; }
.footer-grid a:hover { color: var(--paper); text-decoration: underline; }
.footer-blurb { color: rgba(253, 246, 232, .78); font-size: .9rem; max-width: 34ch; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(253, 246, 232, .18); padding: 1rem 0 1.6rem; font-size: .8rem; color: rgba(253, 246, 232, .7); }
.footer-sponsor { display: inline-flex; align-items: center; gap: .55rem; color: rgba(253, 246, 232, .82); text-decoration: none; background: rgba(253, 246, 232, .08); border: 1px solid rgba(253, 246, 232, .18); border-radius: 999px; padding: .3rem .8rem .3rem .35rem; transition: background .15s ease, color .15s ease; }
.footer-sponsor:hover { background: rgba(253, 246, 232, .16); color: var(--paper); }
.footer-sponsor img { width: 34px; height: 34px; border-radius: 50%; background: var(--paper); object-fit: contain; padding: 2px; }
.footer-sponsor strong { color: var(--mustard); font-weight: 700; }

/* ---------- skeleton loaders ---------- */
.skeleton { background: linear-gradient(90deg, var(--paper-2) 25%, #efe4c8 37%, var(--paper-2) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--radius); }
.sk-card { height: 220px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-badge-graphic { order: -1; }
  .hero-badge-graphic img { width: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .breakdown { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--paper); border-bottom: 2px solid var(--navy);
    padding: .6rem clamp(1rem, 4vw, 2rem) 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem .8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .breakdown { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .leaderboard-row { grid-template-columns: 2rem 1fr auto; }
  .leaderboard-row .thumb { display: none; }
  .scorecard-total { flex-direction: row; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
