/* RunnerEdit — editorial desk for free match-3 boards */

:root {
  --re-ink: #00063d;
  --re-paper: #ffffff;
  --re-bone: #f9f9f9;
  --re-wash: #e7e3f7;
  --re-accent: #7c5ac4;
  --re-muted: #5e5d5f;
  --re-rule: rgba(0, 6, 61, 0.14);
  --re-rule-strong: rgba(0, 6, 61, 0.28);

  --re-serif: "DM Serif Display", Didot, Georgia, "Times New Roman", serif;
  --re-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --re-radius: 4px;
  --re-shell: 1200px;
  --re-gap-4: 4px;
  --re-gap-8: 8px;
  --re-gap-12: 12px;
  --re-gap-16: 16px;
  --re-gap-20: 20px;
  --re-gap-24: 24px;
  --re-gap-32: 32px;
  --re-gap-40: 40px;
  --re-gap-48: 48px;
  --re-band-y: clamp(56px, 8vw, 100px);
}

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

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

body {
  margin: 0;
  background: var(--re-paper);
  color: var(--re-ink);
  font-family: var(--re-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--re-accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--re-serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--re-accent);
  outline-offset: 3px;
}

/* ---------- layout primitives ---------- */

.re-shell {
  width: 100%;
  max-width: var(--re-shell);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.re-slab { padding-block: var(--re-band-y); }
.re-slab--tight { padding-block: clamp(40px, 6vw, 72px); }
.re-slab--ruled { border-top: 1px solid var(--re-rule); }

.re-eyebrow {
  font-family: var(--re-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--re-accent);
  margin: 0 0 var(--re-gap-16);
}

.re-title { font-size: clamp(30px, 4.4vw, 54px); }
.re-title--lg { font-size: clamp(38px, 7vw, 80px); line-height: 1; letter-spacing: -0.03em; }
.re-title--sm { font-size: clamp(24px, 3vw, 38px); }

.re-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--re-ink);
  max-width: 66ch;
  margin-top: var(--re-gap-24);
}

.re-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--re-muted);
  max-width: 74ch;
}

.re-head { margin-bottom: clamp(32px, 4vw, 56px); }
.re-head__text { max-width: 62ch; }
.re-head--mid { text-align: center; }
.re-head--mid .re-head__text { margin-inline: auto; }

.re-hidden { display: none !important; }

.re-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--re-ink);
  color: var(--re-paper);
  padding: 10px 16px;
  z-index: 60;
}
.re-skip:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */

.re-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--re-gap-8);
  font-family: var(--re-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-ink);
  background: var(--re-paper);
  color: var(--re-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.re-act:hover { border-color: var(--re-accent); color: var(--re-accent); text-decoration: none; }
.re-act--solid { background: var(--re-ink); color: var(--re-paper); }
.re-act--solid:hover { background: var(--re-accent); border-color: var(--re-accent); color: var(--re-paper); }
.re-act--wide { width: 100%; }

.re-acts { display: flex; flex-wrap: wrap; gap: var(--re-gap-12); }
.re-acts--mid { justify-content: center; }

.re-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--re-accent);
  border-bottom: 1px solid var(--re-accent);
  padding-bottom: 2px;
}
.re-link:hover { text-decoration: none; border-bottom-color: var(--re-ink); color: var(--re-ink); }
.re-link svg { width: 14px; height: 14px; }

/* ---------- masthead ---------- */

.re-masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--re-paper);
  border-bottom: 1px solid var(--re-rule);
}

.re-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--re-gap-16);
  min-height: 68px;
}

.re-mark {
  font-family: var(--re-serif);
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--re-ink);
  text-decoration: none;
  white-space: nowrap;
}
.re-mark:hover { text-decoration: none; }
.re-mark__b { color: var(--re-accent); }

.re-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  list-style: none;
}
.re-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--re-ink);
  letter-spacing: -0.01em;
}
.re-nav__link:hover { color: var(--re-accent); text-decoration: none; }

.re-masthead__act { display: none; }

.re-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--re-paper);
  border: 1px solid var(--re-ink);
  border-radius: var(--re-radius);
  color: var(--re-ink);
  cursor: pointer;
}
.re-burger svg { width: 20px; height: 20px; }
.re-burger__close { display: none; }
.re-burger.is-open .re-burger__open { display: none; }
.re-burger.is-open .re-burger__close { display: block; }

@media (max-width: 959px) {
  .re-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--re-paper);
    border-bottom: 1px solid var(--re-rule);
    padding: var(--re-gap-16) 0 var(--re-gap-32);
    display: none;
  }
  .re-nav.is-open { display: block; }
  .re-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: var(--re-shell);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 40px);
  }
  .re-nav__list li { width: 100%; border-bottom: 1px solid var(--re-rule); }
  .re-nav__link { display: block; padding: 14px 0; font-size: 17px; }
}

@media (min-width: 960px) {
  .re-burger { display: none; }
  .re-masthead__act { display: inline-flex; }
}

/* ---------- hero (lede) ---------- */

.re-lede {
  text-align: center;
  padding-block: clamp(52px, 8vw, 104px) clamp(40px, 6vw, 80px);
}
.re-lede__text { max-width: 20ch; margin-inline: auto; }
.re-lede .re-lead { margin-inline: auto; max-width: 60ch; }
.re-lede .re-acts { margin-top: var(--re-gap-32); }

.re-lede__strip {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: var(--re-gap-32);
  border-top: 1px solid var(--re-rule);
}
.re-lede__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  list-style: none;
}
.re-lede__icons img {
  width: clamp(46px, 6vw, 62px);
  height: auto;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-rule);
}
.re-lede__cap {
  margin-top: var(--re-gap-16);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--re-muted);
}

/* ---------- figures ---------- */

.re-figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--re-rule);
  border-left: 1px solid var(--re-rule);
}
.re-figures__cell {
  border-right: 1px solid var(--re-rule);
  border-bottom: 1px solid var(--re-rule);
  padding: clamp(20px, 3vw, 32px);
}
.re-figures__num {
  font-family: var(--re-serif);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.re-figures__lab {
  margin-top: var(--re-gap-12);
  font-size: 14px;
  line-height: 1.45;
  color: var(--re-muted);
}
@media (min-width: 760px) {
  .re-figures { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- method ---------- */

.re-steps {
  display: grid;
  gap: 0;
  list-style: none;
}
.re-steps__item {
  display: grid;
  gap: var(--re-gap-12);
  padding-block: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--re-rule);
}
.re-steps__item:last-child { border-bottom: 1px solid var(--re-rule); }
.re-steps__ico {
  width: 34px;
  height: 34px;
  color: var(--re-accent);
}
.re-steps__ico svg { width: 100%; height: 100%; }
.re-steps__t { font-size: clamp(21px, 2.4vw, 28px); }
.re-steps__d { font-size: 16px; line-height: 1.55; color: var(--re-muted); max-width: 64ch; }
@media (min-width: 860px) {
  .re-steps__item {
    grid-template-columns: 60px minmax(0, 22ch) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
  }
}

/* ---------- faq ---------- */

.re-faq__list { border-top: 1px solid var(--re-ink); }
.re-faq__item { border-bottom: 1px solid var(--re-rule); }
.re-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--re-gap-16);
  width: 100%;
  padding: clamp(18px, 2.4vw, 26px) 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--re-serif);
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--re-ink);
}
.re-faq__q:hover { color: var(--re-accent); }
.re-faq__sign {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--re-accent);
  transition: transform 0.2s ease;
}
.re-faq__sign svg { width: 100%; height: 100%; }
.re-faq__q[aria-expanded="true"] .re-faq__sign { transform: rotate(45deg); }
.re-faq__a {
  padding: 0 0 clamp(20px, 2.4vw, 28px);
  font-size: 16px;
  line-height: 1.6;
  color: var(--re-muted);
  max-width: 82ch;
}
.re-faq__a p + p { margin-top: var(--re-gap-12); }

/* ---------- catalogue ---------- */

.re-entry {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(32px, 5vw, 64px);
  border-top: 1px solid var(--re-rule);
  align-items: center;
}
.re-entry:last-child { border-bottom: 1px solid var(--re-rule); }

@media (min-width: 900px) {
  .re-entry { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .re-entry--flip .re-entry__media { order: 2; }
}

.re-entry__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  background: var(--re-bone);
  border: 1px solid var(--re-rule);
  border-radius: var(--re-radius);
  padding: clamp(18px, 2.6vw, 32px);
}
.re-entry--flip .re-entry__media { background: var(--re-wash); }

.re-entry__frame {
  aspect-ratio: 405 / 720;
  width: min(58%, 268px);
  border: 1px solid var(--re-rule-strong);
  border-radius: var(--re-radius);
  overflow: hidden;
  flex: none;
}
.re-entry__frame--small { width: min(34%, 152px); }
.re-entry__frame img { width: 100%; height: 100%; object-fit: cover; }

.re-entry__id {
  display: flex;
  align-items: center;
  gap: var(--re-gap-16);
}
.re-entry__icon {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-rule);
}
.re-entry__t { font-size: clamp(24px, 3vw, 38px); }
.re-entry__dev { font-size: 14px; color: var(--re-muted); margin-top: 4px; }

.re-entry__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--re-gap-8) var(--re-gap-16);
  margin-top: var(--re-gap-20, 20px);
  padding-block: var(--re-gap-12);
  border-top: 1px solid var(--re-rule);
  border-bottom: 1px solid var(--re-rule);
  font-size: 14px;
  color: var(--re-muted);
}
.re-entry__rate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--re-ink);
  font-size: 15px;
}
.re-entry__body {
  margin-top: var(--re-gap-16);
  font-size: 16px;
  line-height: 1.6;
  color: var(--re-ink);
  max-width: 60ch;
}
.re-entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--re-gap-8);
  list-style: none;
  margin-top: var(--re-gap-16);
}
.re-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--re-radius);
  background: var(--re-wash);
  color: var(--re-ink);
}
.re-entry__acts { margin-top: var(--re-gap-24); }

.re-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--re-accent); }
.re-stars svg { width: 15px; height: 15px; }

/* ---------- band (wide frames) ---------- */

.re-band__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 800px) {
  .re-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.re-band__frame {
  aspect-ratio: 900 / 506;
  border: 1px solid var(--re-rule-strong);
  border-radius: var(--re-radius);
  overflow: hidden;
}
.re-band__frame img { width: 100%; height: 100%; object-fit: cover; }
.re-band__cap {
  margin-top: var(--re-gap-12);
  font-size: 15px;
  line-height: 1.55;
  color: var(--re-muted);
}
.re-band__cap b { color: var(--re-ink); font-weight: 700; }

/* ---------- genres ---------- */

.re-grid3 {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  list-style: none;
}
.re-tile {
  background: var(--re-wash);
  border-radius: var(--re-radius);
  padding: clamp(22px, 2.6vw, 32px);
}
.re-tile--bone { background: var(--re-bone); }
.re-tile__ico { display: inline-flex; width: 22px; height: 22px; color: var(--re-accent); }
.re-tile__ico svg { width: 100%; height: 100%; }
.re-tile__t { font-size: clamp(20px, 2.2vw, 24px); margin-top: var(--re-gap-16); }
.re-tile__d { margin-top: var(--re-gap-8); font-size: 15px; line-height: 1.6; color: var(--re-muted); }

/* ---------- voices ---------- */

.re-voices__grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  list-style: none;
}
.re-quote {
  border: 1px solid var(--re-rule);
  border-radius: var(--re-radius);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: var(--re-gap-12);
  background: var(--re-paper);
}
.re-quote__txt {
  font-family: var(--re-serif);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.re-quote__by { font-size: 14px; font-weight: 700; margin-top: auto; }
.re-quote__src { font-size: 13px; color: var(--re-muted); }

/* ---------- membership ---------- */

.re-plans {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
}
@media (min-width: 820px) {
  .re-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.re-plan {
  border: 1px solid var(--re-rule);
  border-radius: var(--re-radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
}
.re-plan--lead { border-color: var(--re-ink); background: var(--re-bone); }
.re-plan__k {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--re-accent);
}
.re-plan__p {
  font-family: var(--re-serif);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: var(--re-gap-12);
}
.re-plan__p span { font-family: var(--re-sans); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; color: var(--re-muted); }
.re-plan__alt { margin-top: var(--re-gap-8); font-size: 14px; color: var(--re-muted); }
.re-plan__list {
  list-style: none;
  margin: var(--re-gap-24) 0 var(--re-gap-32);
  display: grid;
  gap: var(--re-gap-12);
  font-size: 16px;
  line-height: 1.45;
}
.re-plan__list li { display: flex; gap: var(--re-gap-12); align-items: flex-start; }
.re-plan__list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--re-accent); }
.re-plan__foot { margin-top: auto; }
.re-plan__small { margin-top: var(--re-gap-12); font-size: 13px; line-height: 1.5; color: var(--re-muted); }

.re-disclaim {
  margin-top: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--re-rule);
  border-left: 3px solid var(--re-accent);
  border-radius: var(--re-radius);
  padding: clamp(18px, 2.2vw, 24px);
  font-size: 15px;
  line-height: 1.6;
  color: var(--re-muted);
  max-width: 90ch;
}

/* ---------- signup ---------- */

.re-signup__grid { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 900px) {
  .re-signup__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
}
.re-form {
  border: 1px solid var(--re-ink);
  border-radius: var(--re-radius);
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: var(--re-gap-16);
}
.re-field { display: grid; gap: 6px; }
.re-field__lab { font-size: 14px; font-weight: 700; }
.re-field input[type="text"],
.re-field input[type="email"] {
  font-family: var(--re-sans);
  font-size: 16px;
  color: var(--re-ink);
  background: var(--re-paper);
  border: 1px solid var(--re-rule-strong);
  border-radius: var(--re-radius);
  padding: 12px 14px;
  width: 100%;
}
.re-field input:focus { border-color: var(--re-accent); outline: none; }
.re-check { display: flex; gap: var(--re-gap-12); align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--re-muted); }
.re-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--re-accent); flex: none; }
.re-form__msg {
  border: 1px solid var(--re-accent);
  border-radius: var(--re-radius);
  background: var(--re-wash);
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
}
.re-form__fine { font-size: 13px; line-height: 1.5; color: var(--re-muted); }

.re-signup__points { list-style: none; display: grid; gap: var(--re-gap-16); margin-top: var(--re-gap-24); }
.re-signup__points li { display: flex; gap: var(--re-gap-12); font-size: 16px; line-height: 1.5; }
.re-signup__points svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--re-accent); }

/* ---------- desk ---------- */

.re-desk__grid { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 900px) {
  .re-desk__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
}
.re-desk__box {
  border: 1px solid var(--re-rule);
  border-radius: var(--re-radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--re-bone);
}
.re-desk__rows { list-style: none; display: grid; gap: var(--re-gap-16); }
.re-desk__rows li { display: grid; gap: 2px; padding-bottom: var(--re-gap-16); border-bottom: 1px solid var(--re-rule); }
.re-desk__rows li:last-child { border-bottom: 0; padding-bottom: 0; }
.re-desk__k { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--re-muted); }
.re-desk__v { font-size: 17px; }
.re-desk__p + .re-desk__p { margin-top: var(--re-gap-16); }

/* ---------- prose (legal pages) ---------- */

.re-prose { max-width: 78ch; }
.re-prose h2 { font-size: clamp(24px, 3vw, 34px); margin-top: clamp(36px, 4vw, 52px); }
.re-prose h3 { font-size: clamp(20px, 2.2vw, 24px); margin-top: var(--re-gap-32); }
.re-prose p { margin-top: var(--re-gap-16); font-size: 17px; line-height: 1.65; }
.re-prose ul { margin-top: var(--re-gap-16); padding-left: 20px; }
.re-prose li { margin-top: var(--re-gap-8); font-size: 17px; line-height: 1.6; }
.re-prose table { border-collapse: collapse; width: 100%; margin-top: var(--re-gap-24); }
.re-prose th, .re-prose td {
  border: 1px solid var(--re-rule);
  padding: 12px 14px;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: top;
}
.re-prose th { background: var(--re-bone); font-weight: 700; }
.re-stamp { font-size: 14px; color: var(--re-muted); margin-top: var(--re-gap-16); }

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

.re-foot {
  border-top: 1px solid var(--re-ink);
  padding-block: clamp(40px, 5vw, 64px) var(--re-gap-32);
}
.re-foot__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 820px) {
  .re-foot__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
}
.re-foot__blurb { font-size: 15px; line-height: 1.6; color: var(--re-muted); max-width: 46ch; margin-top: var(--re-gap-16); }
.re-foot__h { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--re-muted); margin-bottom: var(--re-gap-16); }
.re-foot__list { list-style: none; display: grid; gap: var(--re-gap-12); }
.re-foot__list a { font-size: 15px; color: var(--re-ink); }
.re-foot__list a:hover { color: var(--re-accent); text-decoration: none; }
.re-foot__base {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: var(--re-gap-24);
  border-top: 1px solid var(--re-rule);
  display: flex;
  flex-wrap: wrap;
  gap: var(--re-gap-12) var(--re-gap-24);
  justify-content: space-between;
  font-size: 13px;
  color: var(--re-muted);
}

/* ---------- cookie strip + top button ---------- */

.re-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--re-paper);
  border-top: 1px solid var(--re-ink);
  padding-block: var(--re-gap-16);
}
.re-cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--re-gap-16);
  justify-content: space-between;
}
.re-cookie__txt { font-size: 14px; line-height: 1.5; color: var(--re-muted); max-width: 76ch; }
.re-cookie__acts { display: flex; gap: var(--re-gap-12); flex-wrap: wrap; }
.re-cookie .re-act { padding: 9px 18px; font-size: 14px; }

.re-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--re-paper);
  border: 1px solid var(--re-ink);
  border-radius: var(--re-radius);
  color: var(--re-ink);
  cursor: pointer;
}
.re-top.is-on { display: inline-flex; }
.re-top:hover { background: var(--re-ink); color: var(--re-paper); }
.re-top svg { width: 20px; height: 20px; }

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

.re-acts--top { margin-top: var(--re-gap-24); }
.re-acts--wide-top { margin-top: var(--re-gap-32); }
