/* reasonremote.com — one stylesheet, dark only.
   Palette is the Elgato Marketplace listing art's (scripts/Render-ListingAssets.ps1 in the plugin
   repo): near-black background, a lifted panel, off-white ink, muted grey and the orange accent. */

:root {
  --bg: #101216;
  --bg-2: #181b21;
  --panel: #242830;
  --panel-2: #2d323b;
  --line: #333844;
  --ink: #f2f4f7;
  --ink-2: #c9ced6;
  --muted: #949aa4;
  --accent: #e87828;
  --accent-ink: #ff9a4d;
  --accent-soft: rgba(232, 120, 40, 0.14);
  --good: #56c07a;
  --info: #5aa9e6;
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 64px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;
  --mono: "Cascadia Code", "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;
  color-scheme: dark;
}

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

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffb27a;
}

:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.08em 0.35em;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.muted {
  color: var(--muted);
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--accent);
  color: #111;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.skip:focus {
  left: 16px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.wrap-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  max-width: 720px;
}

@media (min-width: 720px) {
  .wrap,
  .wrap-wide {
    padding: 0 28px;
  }
}

/* ------------------------------------------------------------------ header / footer */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 18, 22, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a:not(.btn) {
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current] {
  color: var(--ink);
  background: var(--panel);
}

@media (max-width: 520px) {
  .hide-sm {
    display: none;
  }
}

.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 48px 0 24px;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-brand img {
  border-radius: 6px;
}

.footer-head {
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 8px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 4px 0;
}

.site-footer a {
  color: var(--ink-2);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-ink);
}

.footer-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-legal p {
  margin: 4px 0;
}

/* ------------------------------------------------------------------ shared pieces */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--panel);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:hover {
  color: var(--ink);
  background: var(--panel-2);
  border-color: #464c59;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #15100b;
}

.btn-accent:hover {
  background: #f58a3c;
  border-color: #f58a3c;
  color: #15100b;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.92rem;
  margin-left: 6px;
}

.kicker {
  color: var(--accent-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 68ch;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.link-card {
  display: block;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.link-card h3 {
  color: var(--ink);
}

.badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: var(--panel);
}

.badge.full {
  color: var(--accent-ink);
  border-color: rgba(232, 120, 40, 0.5);
  background: var(--accent-soft);
}

.badge.lite {
  color: #8fd3a6;
  border-color: rgba(86, 192, 122, 0.45);
  background: rgba(86, 192, 122, 0.12);
}

/* ------------------------------------------------------------------ home */

.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(232, 120, 40, 0.12), transparent 60%),
    linear-gradient(160deg, #242830 0%, var(--bg) 55%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero {
    padding: 88px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 5fr 6fr;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  margin: 0 0 16px;
}

.hero h1::after,
.guide-article h1::after,
.not-found h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 18px;
  border-radius: 2px;
  background: var(--accent);
}

.hero .lede {
  font-size: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  background: var(--bg);
}

.frame img {
  display: block;
  width: 100%;
}

.section {
  padding: 72px 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin: 0 0 12px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.feature .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 14px;
}

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 980px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split.flip > :first-child {
    order: 2;
  }
}

.split h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.bullets li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.editions {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.edition {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.edition.featured {
  border-color: rgba(232, 120, 40, 0.6);
  box-shadow: 0 0 0 1px rgba(232, 120, 40, 0.25), 0 20px 40px rgba(0, 0, 0, 0.35);
}

.edition-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.edition-head img {
  border-radius: 12px;
}

.edition h3 {
  margin: 0;
  font-size: 1.3rem;
}

.price {
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 600;
  margin: 6px 0 4px;
}

.edition ul {
  margin: 12px 0 24px;
  flex: 1;
}

.edition .btn {
  align-self: flex-start;
}

.steps-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  counter-reset: step;
}

.steps-row .card {
  position: relative;
  padding-top: 58px;
}

.steps-row .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #15100b;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.req {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.req li {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.req strong {
  color: var(--ink);
  display: block;
}

/* ------------------------------------------------------------------ guide layout */

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 40px;
  padding-top: 24px;
}

@media (min-width: 960px) {
  .guide-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    padding-top: 40px;
  }
}

@media (min-width: 1260px) {
  .guide-layout {
    grid-template-columns: 240px minmax(0, 760px) 220px;
    justify-content: space-between;
  }
}

.guide-nav {
  font-size: 0.94rem;
}

@media (min-width: 960px) {
  .guide-nav {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow-y: auto;
    padding-right: 4px;
  }
}

.guide-menu {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.guide-menu summary {
  cursor: pointer;
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guide-menu summary::-webkit-details-marker {
  display: none;
}

.guide-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.15s;
}

.guide-menu[open] summary::after {
  transform: rotate(-135deg);
}

.guide-menu-body {
  padding: 0 8px 12px;
}

@media (min-width: 960px) {
  .guide-menu {
    background: none;
    border: 0;
    margin: 0;
  }

  .guide-menu summary {
    display: none;
  }

  .guide-menu-body {
    padding: 0;
  }
}

.nav-section {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 18px 8px 6px;
}

.nav-section a {
  color: inherit;
  text-decoration: none;
}

.nav-section a[aria-current] {
  color: var(--accent-ink);
}

.guide-nav ul,
.on-this-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-nav li a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  text-decoration: none;
  border-left: 2px solid transparent;
}

.guide-nav li a:hover {
  background: var(--panel);
  color: var(--ink);
}

.guide-nav li a[aria-current] {
  color: var(--ink);
  background: var(--accent-soft);
  border-left-color: var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.on-this-page {
  display: none;
}

@media (min-width: 1260px) {
  .on-this-page {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    font-size: 0.88rem;
  }

  .on-this-page .nav-section {
    margin-top: 0;
  }

  .on-this-page a {
    display: block;
    padding: 4px 10px;
    color: var(--muted);
    text-decoration: none;
    border-left: 1px solid var(--line);
  }

  .on-this-page a:hover,
  .on-this-page a.active {
    color: var(--ink);
    border-left-color: var(--accent);
  }
}

.guide-article {
  min-width: 0;
}

.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 8px;
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--accent-ink);
}

.guide-article h1 {
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  margin: 0 0 14px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.85rem;
  padding-bottom: 20px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--line);
}

.index-group {
  margin-top: 40px;
}

.index-group .kicker {
  font-size: 0.8rem;
}

/* ------------------------------------------------------------------ prose */

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 1.55rem;
  margin: 48px 0 12px;
  padding-top: 8px;
}

.prose h3 {
  font-size: 1.18rem;
  margin: 32px 0 8px;
}

.prose h2 .anchor,
.prose h3 .anchor {
  margin-left: 10px;
  color: var(--muted);
  text-decoration: none;
  opacity: 0;
  font-weight: 400;
  transition: opacity 0.15s;
}

.prose h2:hover .anchor,
.prose h3:hover .anchor,
.prose .anchor:focus {
  opacity: 1;
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 16px;
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin: 6px 0;
}

.prose li::marker {
  color: var(--accent);
}

.prose strong {
  color: var(--ink);
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

ol.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
}

ol.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin: 14px 0;
  min-height: 28px;
}

ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #15100b;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

kbd.key {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.84em;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  background: linear-gradient(#343944, #262a32);
  border: 1px solid #4a505d;
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 0.05em 0.5em;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.table-wrap th,
.table-wrap td {
  text-align: left;
  vertical-align: top;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.table-wrap th {
  color: var(--ink);
  background: var(--panel);
  font-weight: 600;
  white-space: nowrap;
}

.table-wrap tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin: 20px 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--info);
  background: rgba(90, 169, 230, 0.07);
}

.callout p {
  margin: 0 0 8px;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout.tip {
  border-left-color: var(--good);
  background: rgba(86, 192, 122, 0.07);
}

.callout.important {
  border-left-color: var(--accent);
  background: var(--accent-soft);
}

.callout.full {
  border-left-color: var(--accent);
  background: rgba(232, 120, 40, 0.07);
}

.callout.lite {
  border-left-color: var(--good);
  background: rgba(86, 192, 122, 0.07);
}

.code {
  position: relative;
  margin: 0 0 20px;
}

.code pre {
  margin: 0;
  padding: 16px 18px;
  padding-right: 84px;
  overflow-x: auto;
  background: #0b0d10;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.55;
}

.code code {
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  overflow-wrap: normal;
  white-space: pre;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font: 600 0.78rem var(--font);
  color: var(--ink-2);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
}

.copy-btn:hover {
  color: var(--ink);
  border-color: var(--accent);
}

figure.shot {
  margin: 24px 0;
}

figure.shot img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

figcaption {
  margin-top: 10px;
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* The deck block: real key art in a 4x2 grid, dial assignments underneath. */

figure.deck {
  margin: 24px 0 28px;
}

.deck-face {
  background: linear-gradient(160deg, #2a2e36, #17191e);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  max-width: 520px;
}

.deck-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dk {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #0a0b0d;
  border: 1px solid #3a3f4a;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.dk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dk.empty {
  background: #0c0d10;
  border-style: dashed;
  border-color: #2b2f37;
}

.dk.drawn span {
  color: var(--ink);
  font-size: clamp(0.62rem, 2.4vw, 0.85rem);
  font-weight: 600;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}

.dk.hl {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.deck-strip {
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3a3f4a;
}

.deck-strip img {
  display: block;
  width: 100%;
}

.deck-dials {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.deck-dials li {
  background: #0c0d10;
  border: 1px solid #2f343d;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: clamp(0.62rem, 2.2vw, 0.8rem);
  line-height: 1.3;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.dial-no {
  color: var(--accent-ink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9em;
}

.dial-label kbd.key {
  white-space: normal;
}

/* The navigation map on Getting around. */

.navmap {
  margin: 24px 0 28px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.navmap {
  overflow-x: auto;
}

/* Below ~620px the labels would shrink past legible; scroll inside the box instead. */
.navmap svg {
  display: block;
  width: 100%;
  min-width: 620px;
  height: auto;
}

.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pager a {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.pager a:hover {
  border-color: var(--accent);
}

.pager span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pager .next {
  text-align: right;
  grid-column: 2;
}

.not-found {
  padding: 96px 16px 0;
}

.not-found h1 {
  font-size: 2.4rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.scroll-hint {
  margin: -16px 0 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (min-width: 700px) {
  .scroll-hint {
    display: none;
  }
}
