/* ==========================================================================
   Revolut Casino Theme — main.min.css
   Pixel-match for Casinolotsen React/Tailwind frontend
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --navy: #17132f;
  --navy-light: #25204d;
  --purple: #6f35ff;
  --purple-dark: #5424cf;
  --lavender: #f3f1ff;
  --yellow: #ffd62e;
  --lime: #95ed1e;
  --ink: #111111;
  --muted-ink: #666378;
  --line: #e8e4f5;
  --body-text: #3b3850;
  --header-bg: #221d3f;
  --white: #ffffff;

  --font-display-stack: "Archivo Narrow", "Archivo", "Arial Narrow", "Helvetica Neue Condensed", Impact, system-ui, sans-serif;
  --font-sans-stack: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;

  --container-max: 1240px;
  --container-narrow: 1100px;
  --header-height: 72px;
  --scroll-offset: 96px;

  --editorial-figure-width: min(100%, 15rem);
  --editorial-figure-max-height: 22rem;

  --shadow-card: 0 10px 30px -18px rgba(23, 19, 47, 0.45);
  --shadow-drawer: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  --shadow-cookie: 0 25px 50px -12px rgba(0, 0, 0, 0.4);

  --z-header: 40;
  --z-overlay: 50;
  --z-cookie: 50;
}

@media (min-width: 640px) {
  :root {
    --editorial-figure-width: 17.5rem;
    --editorial-figure-max-height: 24rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --editorial-figure-width: 18.5rem;
    --editorial-figure-max-height: 26rem;
  }
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--white);
  color: var(--ink);
  font-family: var(--font-sans-stack);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

table {
  border-collapse: collapse;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.headline {
  font-family: var(--font-display-stack);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: none;
}

.marker-purple {
  background-image: linear-gradient(to top, var(--purple) 0.36em, transparent 0.36em);
  background-repeat: no-repeat;
  padding-inline: 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.rvc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rvc-hidden {
  display: none !important;
}

.rvc-icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Layout — container
   -------------------------------------------------------------------------- */
.rvc-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
  min-width: 0;
}

.rvc-container--narrow {
  max-width: var(--container-narrow);
}

@media (min-width: 640px) {
  .rvc-container {
    padding-inline: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .rvc-container {
    padding-inline: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.rvc-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: var(--header-bg);
}

.rvc-header__inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.rvc-header__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.rvc-header__wordmark {
  font-size: 1.375rem;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rvc-header__wordmark-accent {
  color: var(--yellow);
}

.rvc-header__badge {
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.rvc-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .rvc-header__actions {
    gap: 0.5rem;
  }

  .rvc-header__wordmark {
    font-size: 1.625rem;
  }
}

.rvc-header__search {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: background-color 0.15s ease;
}

.rvc-header__search:hover {
  background-color: var(--navy-light);
}

.rvc-header__menu-btn {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--navy);
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: background-color 0.15s ease;
}

.rvc-header__menu-btn:hover {
  background-color: var(--navy-light);
}

/* --------------------------------------------------------------------------
   Mobile menu
   -------------------------------------------------------------------------- */
.rvc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: none;
}

.rvc-mobile-menu.is-open {
  display: block;
}

.rvc-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 19, 47, 0.7);
}

.rvc-mobile-menu__drawer {
  position: absolute;
  inset-block: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  background-color: var(--navy);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-drawer);
}

.rvc-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvc-mobile-menu__title {
  font-size: 1.125rem;
  color: var(--white);
}

.rvc-mobile-menu__close {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: var(--radius-lg);
  background-color: var(--navy-light);
  color: var(--white);
  transition: background-color 0.15s ease;
}

.rvc-mobile-menu__close:hover {
  background-color: var(--purple);
}

.rvc-mobile-menu__nav {
  margin-top: 1.5rem;
  overflow-y: auto;
}

.rvc-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rvc-mobile-menu__link {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.rvc-mobile-menu__link:hover {
  background-color: var(--navy-light);
  color: var(--white);
}

.rvc-mobile-menu__legal {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.6875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.rvc-breadcrumbs {
  background-color: var(--navy);
  padding-bottom: 0.5rem;
}

.rvc-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.rvc-breadcrumbs__link {
  color: inherit;
}

.rvc-breadcrumbs__link:hover {
  color: var(--white);
  text-decoration: underline;
}

.rvc-breadcrumbs__current {
  color: rgba(255, 255, 255, 0.85);
}

.rvc-breadcrumbs__sep {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.rvc-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
}

.rvc-hero__shapes {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.rvc-hero__shape {
  position: absolute;
}

.rvc-hero__shape--square {
  top: -6rem;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 80px;
  background-color: rgba(37, 32, 77, 0.8);
  transform: rotate(45deg);
}

.rvc-hero__shape--circle {
  top: 33%;
  left: -6rem;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: rgba(111, 53, 255, 0.2);
  filter: blur(2px);
}

.rvc-hero__shape--bar {
  right: 38%;
  bottom: 0;
  width: 520px;
  height: 220px;
  background-color: rgba(84, 36, 207, 0.25);
  transform: rotate(-6deg);
}

.rvc-hero__container {
  position: relative;
  padding-block: 2.5rem;
}

.rvc-hero__grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.rvc-hero__pill {
  position: relative;
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--lime);
  padding: 0.5rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.rvc-hero__pill-tail {
  position: absolute;
  bottom: -0.5rem;
  left: 1.75rem;
  width: 0;
  height: 0;
  border-top: 12px solid var(--lime);
  border-right: 14px solid transparent;
}

.rvc-hero__title {
  margin-top: 1.5rem;
  font-size: 2.625rem;
  color: var(--white);
}

.rvc-hero__intro {
  margin-top: 1.5rem;
  max-width: 46ch;
}

.rvc-hero__trust {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}

.rvc-hero__trust-icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--lime);
}

.rvc-hero__casinos {
  padding-block: 0;
}

@media (min-width: 1024px) {
  .rvc-hero__container {
    padding-block: 0;
  }

  .rvc-hero__grid {
    min-height: 550px;
    grid-template-columns: 47fr 53fr;
    gap: 3.5rem;
  }

  .rvc-hero__title {
    font-size: 4.125rem;
  }

  .rvc-hero__casinos {
    padding-block: 3.5rem;
  }
}

@media (min-width: 640px) {
  .rvc-hero__title {
    font-size: 3.25rem;
  }
}

/* --------------------------------------------------------------------------
   Hero casino grid & cards
   -------------------------------------------------------------------------- */
.rvc-hero-casinos__heading {
  font-size: 1.375rem;
  color: var(--white);
}

.rvc-hero-casinos__grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.rvc-hero-casino-card {
  position: relative;
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background-color: var(--navy);
  background-image: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.15s ease;
}

.rvc-hero-casino-card:hover {
  transform: translateY(-2px);
}

.rvc-hero-casino-card:focus-visible {
  box-shadow: inset 0 0 0 2px var(--purple);
}

.rvc-hero-casino-card__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: calc(100% - 2rem);
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -58%);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.rvc-hero-casino-card__logo-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: calc(100% - 2rem);
  font-size: 1.125rem;
  line-height: 1.15;
  text-align: center;
  color: var(--white);
  transform: translate(-50%, -65%);
}

.rvc-hero-casino-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1));
}

.rvc-hero-casino-card__arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(149, 237, 30, 0.9);
  color: var(--navy);
}

.rvc-hero-casino-card__body {
  position: relative;
  padding: 0.75rem;
}

.rvc-hero-casino-card__offer {
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}

.rvc-hero-casino-card__terms {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.65);
}

.rvc-rg-line {
  font-size: 0.6875rem;
  line-height: 1.625;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.rvc-rg-line a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rvc-rg-line a:hover {
  color: var(--white);
}

.rvc-hero-casinos .rvc-rg-line {
  margin-top: 1rem;
}

@media (max-width: 390px) {
  .rvc-hero-casinos__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .rvc-hero-casinos__heading {
    font-size: 1.625rem;
  }

  .rvc-hero-casino-card {
    min-height: 188px;
  }

  .rvc-hero-casino-card__arrow {
    top: auto;
    bottom: 4.6rem;
  }
}

/* --------------------------------------------------------------------------
   Table of contents
   -------------------------------------------------------------------------- */
.rvc-toc {
  background-color: var(--lavender);
  padding-block: 2.5rem;
}

.rvc-toc + .rvc-section {
  padding-top: 2rem;
}

.rvc-toc__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rvc-toc__icon {
  flex-shrink: 0;
  color: var(--ink);
}

.rvc-toc__title {
  font-size: 1.5rem;
  color: var(--ink);
}

.rvc-toc__toggle {
  margin-top: 1rem;
  display: flex;
  min-height: 2.75rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background-color: var(--white);
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.rvc-toc__toggle-icon {
  transition: transform 0.2s ease;
}

.rvc-toc__toggle[aria-expanded="true"] .rvc-toc__toggle-icon {
  transform: rotate(180deg);
}

.rvc-toc__list {
  margin-top: 1.5rem;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
}

.rvc-toc__list.is-open {
  display: grid;
}

.rvc-toc__item {
  display: flex;
  gap: 0.75rem;
}

.rvc-toc__marker {
  margin-top: 0.125rem;
  display: grid;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--ink);
}

.rvc-toc__link {
  font-size: 0.9375rem;
  line-height: 1.375;
  color: var(--purple-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.rvc-toc__link:hover {
  text-decoration: none;
}

.rvc-toc__more {
  display: none;
  margin-top: 1.25rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background-color: var(--white);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background-color 0.15s ease;
}

.rvc-toc__more:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .rvc-toc__toggle {
    display: none;
  }

  .rvc-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rvc-toc__more {
    display: inline-flex;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rvc-toc__list:not(.is-expanded) .rvc-toc__item:nth-child(n + 5) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .rvc-toc {
    padding-block: 3.5rem;
  }

  .rvc-toc__title {
    font-size: 1.875rem;
  }

  .rvc-toc__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rvc-toc__list:not(.is-expanded) .rvc-toc__item:nth-child(n + 7) {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Intro section
   -------------------------------------------------------------------------- */
.rvc-intro {
  background-color: var(--white);
  padding-block: 3rem;
}

@media (min-width: 1024px) {
  .rvc-intro {
    padding-block: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   Comparison steps
   -------------------------------------------------------------------------- */
.rvc-comparison {
  background-color: var(--lavender);
  padding-block: 3rem;
}

.rvc-comparison__title {
  text-align: center;
  font-size: 1.875rem;
  color: var(--ink);
}

.rvc-comparison__list {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.5rem;
}

.rvc-comparison__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-2xl);
  background-color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--line);
}

.rvc-comparison__image {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.rvc-comparison__card-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: var(--ink);
}

.rvc-comparison__card-text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--body-text);
}

@media (min-width: 768px) {
  .rvc-comparison__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rvc-comparison {
    padding-block: 4rem;
  }

  .rvc-comparison__title {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Section shells (editorial, FAQ, etc.)
   -------------------------------------------------------------------------- */
.rvc-section {
  padding-block: 3rem;
  min-width: 0;
}

.rvc-section--white {
  background-color: var(--white);
}

.rvc-section--lavender {
  background-color: var(--lavender);
}

.rvc-quick-questions {
  padding-top: 2rem;
}

.rvc-quick-questions__list {
  display: grid;
  gap: 1rem;
}

.rvc-quick-question {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(25, 20, 51, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
}

.rvc-quick-question__title {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--ink);
}

.rvc-quick-question__answer {
  padding: 0;
}

.rvc-quick-question__answer p {
  margin: 0;
  color: var(--ink-muted, #4a4563);
  line-height: 1.6;
}

@media (min-width: 48rem) {
  .rvc-quick-questions__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.rvc-section__title {
  max-width: 30ch;
  font-size: 1.75rem;
  color: var(--ink);
}

.rvc-section__title--wide {
  max-width: 28ch;
}

.rvc-section__title--center {
  max-width: none;
  text-align: center;
}

.rvc-section__title--casino {
  max-width: 28ch;
  font-size: 1.875rem;
}

.rvc-section__title + * {
  margin-top: 1.5rem;
}

.rvc-section__prose {
  margin-top: 1.25rem;
  max-width: none;
  min-width: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-section__prose > p,
.rvc-section__prose > .wp-block-paragraph,
.rvc-intro-section .rvc-section > p,
.rvc-intro-section .rvc-section > .wp-block-paragraph {
  max-width: 85ch;
}

.rvc-section__prose .rvc-table-wrap,
.rvc-intro-section .rvc-table-wrap,
.rvc-faq-section__body .rvc-table-wrap,
.rvc-section__prose .wp-block-rvc-styled-table,
.rvc-section__prose .rvc-styled-table,
.rvc-section__prose .rvc-prose {
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

.rvc-section__prose .rvc-accordion,
.rvc-image-section__accordion .rvc-accordion,
.rvc-section__accordion .rvc-accordion {
  max-width: none;
  width: 100%;
}

.rvc-section__prose > * + * {
  margin-top: 1.125rem;
}

.rvc-section__prose :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group),
.rvc-faq-section__body :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group),
.rvc-accordion__panel :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group),
.rvc-numbered-steps__text :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group) {
  margin-top: 1.375rem;
}

.rvc-section__prose > :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group),
.rvc-faq-section__body > :is(h2, h3, h4, h5, h6, .wp-block-heading) + :is(p, .wp-block-paragraph, ul, ol, .wp-block-list, div, .wp-block-group) {
  margin-top: 1.375rem;
}

.rvc-section__prose--narrow {
  max-width: none;
}

.rvc-section__prose--narrow > p,
.rvc-section__prose--narrow > .wp-block-paragraph {
  max-width: 85ch;
}

.rvc-intro-section .rvc-section {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-intro-section .rvc-section > * + * {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .rvc-section__title {
    font-size: 2.25rem;
  }

  .rvc-section__title--casino {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .rvc-section {
    padding-block: 4rem;
  }
}

/* --------------------------------------------------------------------------
   Casino grid & cards
   -------------------------------------------------------------------------- */
.rvc-casino-grid__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.rvc-casino-grid__after {
  margin-top: 2rem;
}

.rvc-casino-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background-color: var(--white);
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--line);
}

.rvc-casino-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.5rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--navy);
  background-image: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.rvc-casino-card__image {
  display: block;
  width: auto;
  max-width: min(100%, 13.5rem);
  height: auto;
  max-height: 4.75rem;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.rvc-casino-card__logo-fallback {
  max-width: 12rem;
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: center;
  color: var(--white);
}

.rvc-casino-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 9999px;
  background-color: var(--yellow);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.rvc-casino-card__bar {
  padding: 1rem 1.25rem;
  color: var(--white);
}

.rvc-casino-card__bar-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.rvc-casino-card__name {
  font-size: 1.375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rvc-casino-card__review {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rvc-casino-card__review:hover {
  color: var(--white);
}

.rvc-casino-card__bonus {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375;
  font-weight: 700;
  color: var(--yellow);
}

.rvc-casino-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.rvc-casino-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-casino-card__benefit {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375;
  color: var(--body-text);
}

.rvc-casino-card__benefit-icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--purple);
}

.rvc-casino-card__cta {
  margin-top: 1.25rem;
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background-color: var(--yellow);
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background-color 0.15s ease;
}

.rvc-casino-card__cta:hover {
  background-color: #ffcf00;
}

.rvc-casino-card__terms {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.625;
  color: var(--muted-ink);
}

.rvc-casino-grid__more {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.rvc-casino-grid__more-btn {
  display: flex;
  min-height: 3rem;
  align-items: center;
  border-radius: 9999px;
  background-color: var(--navy);
  padding: 0 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.15s ease;
}

.rvc-casino-grid__more-btn:hover {
  background-color: var(--navy-light);
}

@media (min-width: 640px) {
  .rvc-casino-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rvc-casino-grid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   Image-text section
   -------------------------------------------------------------------------- */
.rvc-image-section__grid {
  display: grid;
  align-items: start;
  gap: 2rem;
}

.rvc-image-section__content {
  min-width: 0;
}

.rvc-image-section__media {
  width: var(--editorial-figure-width);
  max-width: 100%;
  margin-inline: auto;
}

.rvc-image-section__title {
  max-width: 26ch;
  font-size: 1.75rem;
  color: var(--ink);
}

.rvc-image-section__prose {
  margin-top: 1.25rem;
}

.rvc-image-section__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--editorial-figure-max-height);
  margin-inline: auto;
  border-radius: var(--radius-2xl);
  object-fit: contain;
}

.rvc-image-section__accordion {
  margin-top: 2.5rem;
}

.rvc-image-section__content .rvc-section__prose,
.rvc-numbered-steps .rvc-section__prose {
  max-width: none;
}

.rvc-image-section__content .rvc-section__prose > p,
.rvc-image-section__content .rvc-section__prose > .wp-block-paragraph,
.rvc-numbered-steps .rvc-section__prose > p,
.rvc-numbered-steps .rvc-section__prose > .wp-block-paragraph {
  max-width: none;
}

@media (min-width: 640px) {
  .rvc-image-section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .rvc-image-section__grid {
    grid-template-columns: minmax(0, 1fr) var(--editorial-figure-width);
    gap: 2.5rem 3rem;
  }

  .rvc-image-section__media {
    margin-inline: 0;
    justify-self: end;
  }

  .rvc-image-section__content--reverse {
    order: 2;
  }

  .rvc-image-section__media--reverse {
    order: 1;
  }
}

/* --------------------------------------------------------------------------
   Numbered steps
   -------------------------------------------------------------------------- */
.rvc-numbered-steps__lead {
  margin-top: 1.25rem;
  max-width: 72ch;
}

.rvc-numbered-steps__grid {
  margin-top: 2.25rem;
  display: grid;
  align-items: start;
  gap: 2.5rem;
}

.rvc-numbered-steps__content-col {
  min-width: 0;
}

.rvc-numbered-steps__aside {
  margin-bottom: 1.5rem;
}

.rvc-numbered-steps__trailing {
  margin-top: 1.5rem;
  max-width: 72ch;
}

.rvc-numbered-steps__aside ul.wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-numbered-steps__aside ul.wp-block-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.rvc-numbered-steps__aside ul.wp-block-list li::before {
  content: "";
  margin-top: 0.55em;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--purple);
}

.rvc-numbered-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rvc-numbered-steps__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rvc-numbered-steps__marker {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.rvc-numbered-steps__text {
  min-width: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-numbered-steps__media {
  align-self: start;
  width: var(--editorial-figure-width);
  max-width: 100%;
  margin-inline: auto;
}

.rvc-numbered-steps__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--editorial-figure-max-height);
  margin-inline: auto;
  border-radius: var(--radius-2xl);
  object-fit: contain;
}

@media (min-width: 1024px) {
  .rvc-numbered-steps__grid {
    grid-template-columns: minmax(0, 1fr) var(--editorial-figure-width);
    gap: 2.5rem 3rem;
  }

  .rvc-numbered-steps__media {
    margin-inline: 0;
    justify-self: end;
  }

  .rvc-numbered-steps__image {
    position: sticky;
    top: 6rem;
  }
}

/* --------------------------------------------------------------------------
   Tips grid
   -------------------------------------------------------------------------- */
.rvc-tips__layout {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.rvc-tips__grid {
  display: grid;
  gap: 1rem;
}

.rvc-tips__card {
  border-radius: var(--radius-2xl);
  background-color: var(--lavender);
  padding: 1.25rem;
}

.rvc-tips__card-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: var(--radius-xl);
  background-color: var(--white);
  color: var(--purple);
}

.rvc-tips__card-title {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--ink);
}

.rvc-tips__card-title a:hover {
  color: var(--purple-dark);
}

.rvc-tips__card-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--body-text);
}

.rvc-tips__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background-color: var(--yellow);
  padding: 2rem;
}

.rvc-tips__sidebar-title {
  font-size: 1.625rem;
  color: var(--ink);
}

.rvc-tips__sidebar-text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.8);
}

.rvc-tips__sidebar-cta {
  margin-top: 1.75rem;
  display: inline-flex;
  min-height: 3rem;
  width: fit-content;
  align-items: center;
  border-radius: 9999px;
  background-color: var(--white);
  padding: 0 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.rvc-tips__sidebar-cta:hover {
  background-color: var(--navy);
  color: var(--white);
}

.rvc-tips__sidebar-legal {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.625;
  color: rgba(17, 17, 17, 0.7);
}

@media (min-width: 640px) {
  .rvc-tips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rvc-tips__sidebar-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .rvc-tips__layout {
    grid-template-columns: 62fr 38fr;
  }
}

/* --------------------------------------------------------------------------
   Accordion / FAQ
   -------------------------------------------------------------------------- */
.rvc-accordion {
  border-top: 1px solid var(--line);
}

.rvc-accordion__item {
  border-bottom: 1px solid var(--line);
}

.rvc-accordion__trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
}

.rvc-accordion__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--ink);
}

.rvc-accordion__icon::before,
.rvc-accordion__icon::after {
  content: "";
  position: absolute;
  border-radius: 1px;
  background-color: currentColor;
}

.rvc-accordion__icon::before {
  width: 14px;
  height: 2px;
}

.rvc-accordion__icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.15s ease;
}

.rvc-accordion__trigger[aria-expanded="true"] .rvc-accordion__icon::after {
  opacity: 0;
}

.rvc-accordion__title {
  font-size: 1.125rem;
  color: var(--ink);
}

.rvc-accordion__panel {
  padding-top: 0.25rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
}

.rvc-accordion__panel > * + * {
  margin-top: 1.125rem;
}

.rvc-accordion__panel[hidden] {
  display: none;
}

.rvc-section__accordion {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .rvc-accordion__title {
    font-size: 1.3125rem;
  }
}

/* --------------------------------------------------------------------------
   Author / method block
   -------------------------------------------------------------------------- */
.rvc-author-method__grid {
  display: grid;
  gap: 2rem;
}

.rvc-author-card {
  border-radius: var(--radius-2xl);
  background-color: var(--lavender);
  padding: 1.5rem;
}

.rvc-author-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--purple);
}

.rvc-author-card__photo {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.rvc-author-card__name {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--ink);
}

.rvc-author-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.rvc-author-card__bio {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--body-text);
}

.rvc-author-card__updated {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-ink);
}

.rvc-method__title {
  font-size: 1.75rem;
  color: var(--ink);
}

.rvc-method__prose {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-method__sources-title {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--ink);
}

.rvc-method__sources {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9375rem;
  color: var(--body-text);
}

@media (min-width: 640px) {
  .rvc-method__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .rvc-author-method__grid {
    grid-template-columns: 38fr 62fr;
  }
}

/* --------------------------------------------------------------------------
   Related articles
   -------------------------------------------------------------------------- */
.rvc-related__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.rvc-related__card {
  display: flex;
  height: 100%;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  background-color: var(--white);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px var(--line);
}

.rvc-related__thumb {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.rvc-related__content {
  min-width: 0;
}

.rvc-related__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.rvc-related__title {
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  color: var(--ink);
}

.rvc-related__title a:hover {
  color: var(--purple-dark);
}

.rvc-related__excerpt {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--body-text);
}

.rvc-related__link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--purple-dark);
}

@media (min-width: 768px) {
  .rvc-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.rvc-footer {
  background-color: var(--navy);
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: var(--white);
}

.rvc-footer__grid {
  display: grid;
  gap: 2rem;
}

.rvc-footer__wordmark {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
}

.rvc-footer__wordmark-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.rvc-footer__wordmark-link:hover .rvc-footer__wordmark {
  color: var(--yellow);
}

.rvc-footer__wordmark-accent {
  color: var(--yellow);
}

.rvc-footer__intro {
  margin: 0.75rem 0 0;
  max-width: 38ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.rvc-footer__contact {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.rvc-footer__nav {
  display: grid;
  gap: 2rem;
}

.rvc-footer__col-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.rvc-footer__links {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.rvc-footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.rvc-footer__compliance {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.rvc-footer__age {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.rvc-footer__rg-link {
  display: inline-flex;
  line-height: 0;
}

.rvc-footer__rg-logo {
  display: block;
  width: auto;
  height: 2rem;
}

.rvc-footer__legal {
  margin: 1rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.55);
}

.rvc-footer__copyright {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
  .rvc-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rvc-footer__grid {
    grid-template-columns: minmax(0, 1fr) 2.4fr;
    gap: 3rem;
    align-items: start;
  }

  .rvc-footer__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   Static pages
   -------------------------------------------------------------------------- */
.rvc-main {
  min-width: 0;
}

.rvc-article__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink);
}

.rvc-article .rvc-prose {
  max-width: 75ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-article .rvc-prose > * + * {
  margin-top: 1rem;
}

.rvc-article .rvc-prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Cookie consent
   -------------------------------------------------------------------------- */
.rvc-cookie {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: var(--z-cookie);
  border-radius: var(--radius-2xl);
  background-color: var(--navy);
  padding: 1.25rem;
  color: var(--white);
  box-shadow: var(--shadow-cookie);
}

.rvc-cookie[hidden] {
  display: none;
}

.rvc-cookie__title {
  font-size: 1.125rem;
  color: var(--white);
}

.rvc-cookie__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.rvc-cookie__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rvc-cookie__btn {
  min-height: 2.75rem;
  border-radius: 9999px;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rvc-cookie__btn--accept {
  background-color: var(--yellow);
  color: var(--ink);
}

.rvc-cookie__btn--reject {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.rvc-cookie__btn--reject:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.rvc-cookie__btn--customize {
  background-color: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.rvc-cookie__btn--customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .rvc-cookie {
    inset-inline: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    max-width: 420px;
  }
}

/* --------------------------------------------------------------------------
   Prose (markdown content)
   -------------------------------------------------------------------------- */
.rvc-prose {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}

.rvc-prose > * + * {
  margin-top: 1rem;
}

.rvc-prose--dark {
  color: rgba(255, 255, 255, 0.8);
}

.rvc-prose p {
  margin: 0;
}

.rvc-prose .rvc-link {
  font-weight: 500;
  color: var(--purple-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.rvc-prose .rvc-link:hover {
  text-decoration: none;
}

.rvc-prose .rvc-strong,
.rvc-prose strong {
  font-weight: 700;
  color: var(--ink);
}

.rvc-prose--dark .rvc-strong,
.rvc-prose--dark strong {
  color: var(--white);
}

.rvc-prose em {
  font-style: italic;
}

/* Lists */
.rvc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-list--ul li {
  display: flex;
  gap: 0.75rem;
}

.rvc-bullet {
  margin-top: 0.55em;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--purple);
}

.rvc-list--ol li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rvc-ol-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

/* Gutenberg core list blocks inside editorial content */
.rvc-section__prose ul.wp-block-list,
.rvc-intro-section ul.wp-block-list,
.rvc-accordion__panel ul.wp-block-list,
.rvc-faq-section__body ul.wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-section__prose ul.wp-block-list li,
.rvc-intro-section ul.wp-block-list li,
.rvc-accordion__panel ul.wp-block-list li,
.rvc-faq-section__body ul.wp-block-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.rvc-section__prose ul.wp-block-list li::before,
.rvc-intro-section ul.wp-block-list li::before,
.rvc-accordion__panel ul.wp-block-list li::before,
.rvc-faq-section__body ul.wp-block-list li::before {
  content: "";
  margin-top: 0.55em;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--purple);
}

.rvc-section__prose ol.wp-block-list,
.rvc-intro-section ol.wp-block-list,
.rvc-accordion__panel ol.wp-block-list,
.rvc-faq-section__body ol.wp-block-list {
  list-style: none;
  counter-reset: rvc-content-ol;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-section__prose ol.wp-block-list li,
.rvc-intro-section ol.wp-block-list li,
.rvc-accordion__panel ol.wp-block-list li,
.rvc-faq-section__body ol.wp-block-list li {
  counter-increment: rvc-content-ol;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.rvc-section__prose ol.wp-block-list li::before,
.rvc-intro-section ol.wp-block-list li::before,
.rvc-accordion__panel ol.wp-block-list li::before,
.rvc-faq-section__body ol.wp-block-list li::before {
  content: counter(rvc-content-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

/* Tables */
.rvc-table-wrap {
  display: block;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  margin-block: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(109, 99, 198, 0.18);
  background-color: var(--white);
  box-shadow: var(--shadow-card);
}

.rvc-table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: inherit;
}

.rvc-table-scroll::-webkit-scrollbar {
  height: 8px;
}

.rvc-table-scroll::-webkit-scrollbar-track {
  margin: 0 0.75rem 0.35rem;
  background: rgba(243, 241, 255, 0.9);
  border-radius: 999px;
}

.rvc-table-scroll::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
}

.rvc-table-scroll {
  scrollbar-color: var(--purple) rgba(243, 241, 255, 0.9);
  scrollbar-width: thin;
}

.rvc-section__prose .rvc-table-wrap,
.rvc-intro-section .rvc-table-wrap,
.rvc-faq-section__body .rvc-table-wrap,
.rvc-accordion__panel .rvc-table-wrap {
  margin-block: 1.5rem;
}

.rvc-section__prose .rvc-table-wrap + :is(p, .wp-block-paragraph),
.rvc-faq-section__body .rvc-table-wrap + :is(p, .wp-block-paragraph),
.rvc-accordion__panel .rvc-table-wrap + :is(p, .wp-block-paragraph) {
  margin-top: 1.5rem;
}

.rvc-accordion__panel .rvc-table-wrap {
  margin-left: -1rem;
  width: calc(100% + 1rem);
  max-width: calc(100% + 1rem);
}

@media (min-width: 640px) {
  .rvc-accordion__panel .rvc-table-wrap {
    margin-left: -2rem;
    width: calc(100% + 1.5rem);
    max-width: calc(100% + 1.5rem);
  }
}

.rvc-prose--dark .rvc-table-wrap {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.rvc-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 0.9375rem;
  table-layout: auto;
}

.rvc-table th {
  padding: 0.95rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(180deg, #f3f1ff 0%, #e8e4ff 100%);
  border-bottom: 2px solid var(--purple);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.rvc-table th:first-child {
  border-top-left-radius: calc(var(--radius-2xl) - 1px);
}

.rvc-table th:last-child {
  border-top-right-radius: calc(var(--radius-2xl) - 1px);
}

.rvc-table--cols-2 {
  table-layout: fixed;
}

.rvc-table--cols-2 th:first-child,
.rvc-table--cols-2 td:first-child {
  width: 32%;
}

.rvc-prose--dark .rvc-table th {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.rvc-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1.25rem;
  vertical-align: top;
  color: var(--body-text);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.rvc-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.rvc-table tbody tr {
  transition: background-color 0.15s ease;
}

.rvc-table tbody tr:hover {
  background-color: rgba(243, 241, 255, 0.72);
}

.rvc-prose--dark .rvc-table td {
  border-color: rgba(255, 255, 255, 0.15);
}

.rvc-table-row--alt {
  background-color: rgba(243, 241, 255, 0.5);
}

.rvc-prose--dark .rvc-table-row--alt {
  background-color: rgba(255, 255, 255, 0.05);
}

.rvc-table tbody tr:last-child td {
  border-bottom: none;
}

.rvc-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: calc(var(--radius-2xl) - 1px);
}

.rvc-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: calc(var(--radius-2xl) - 1px);
}

@media (max-width: 639px) {
  .rvc-table-scroll {
    padding-bottom: 0.15rem;
  }

  .rvc-table--cols-3 {
    min-width: 32rem;
  }

  .rvc-table--cols-4 {
    min-width: 38rem;
  }

  .rvc-table--cols-5,
  .rvc-table--cols-6 {
    min-width: 44rem;
  }
}

/* --------------------------------------------------------------------------
   Navigation menu (footer / generic)
   -------------------------------------------------------------------------- */
.rvc-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rvc-menu a {
  color: inherit;
}

/* --------------------------------------------------------------------------
   1280px fine-tuning
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  .rvc-hero__shape--square {
    right: 10%;
  }
}

/* --------------------------------------------------------------------------
   Block editor helpers
   -------------------------------------------------------------------------- */
.rvc-block-editor__hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #646970;
}

.rvc-block-editor__image-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.rvc-block-editor__image-layout-content {
  min-width: 0;
}

.rvc-block-editor__image-layout-preview img,
.rvc-image-inspector__preview img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.rvc-block-editor__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  padding: 1rem;
  border: 1px dashed #c3c4c7;
  border-radius: 0.75rem;
  background: #f6f7f7;
  color: #646970;
  text-align: center;
}

.rvc-image-inspector__preview {
  margin: 0.75rem 0;
}

.rvc-image-inspector__step-preview {
  display: block;
  width: 100%;
  max-width: 8rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.rvc-comparison-step-inspector + .rvc-comparison-step-inspector {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dcdcde;
}

@media (min-width: 782px) {
  .rvc-block-editor__image-layout {
    grid-template-columns: minmax(0, 1fr) var(--editorial-figure-width);
    align-items: start;
    gap: 2rem;
  }

  .rvc-block-editor__image-layout-preview img {
    width: 100%;
    height: auto;
    max-height: var(--editorial-figure-max-height);
    object-fit: contain;
  }
}
