/* ============================================================
   PMV — AJUSTES DIVI / WORDPRESS GENÉRICOS
   No depende de page-id ni postid.
   Se activa si el body recibe .pmv-landing-active desde functions.php
   o, como respaldo, si el navegador detecta #pmv-root con :has().
   ============================================================ */

body.pmv-landing-active,
body:has(#pmv-root) {
  background: #f6efe4 !important;
}

body.pmv-landing-active #main-content,
body.pmv-landing-active #main-content .container,
body.pmv-landing-active #left-area,
body.pmv-landing-active article,
body.pmv-landing-active .entry-content,
body.pmv-landing-active .et_builder_inner_content,
body.pmv-landing-active .et_pb_section,
body.pmv-landing-active .et_pb_row,
body.pmv-landing-active .et_pb_column,
body.pmv-landing-active .et_pb_module,
body.pmv-landing-active .et_pb_code,
body.pmv-landing-active .et_pb_code_inner,
body:has(#pmv-root) #main-content,
body:has(#pmv-root) #main-content .container,
body:has(#pmv-root) #left-area,
body:has(#pmv-root) article,
body:has(#pmv-root) .entry-content,
body:has(#pmv-root) .et_builder_inner_content,
body:has(#pmv-root) .et_pb_section,
body:has(#pmv-root) .et_pb_row,
body:has(#pmv-root) .et_pb_column,
body:has(#pmv-root) .et_pb_module,
body:has(#pmv-root) .et_pb_code,
body:has(#pmv-root) .et_pb_code_inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.pmv-landing-active #main-content .container,
body:has(#pmv-root) #main-content .container {
  padding-top: 0 !important;
}

body.pmv-landing-active #left-area,
body:has(#pmv-root) #left-area {
  float: none !important;
  padding-bottom: 0 !important;
}

body.pmv-landing-active #sidebar,
body:has(#pmv-root) #sidebar {
  display: none !important;
}

body.pmv-landing-active #main-content .container::before,
body:has(#pmv-root) #main-content .container::before {
  display: none !important;
}

body.pmv-landing-active .entry-title,
body.pmv-landing-active .post-meta,
body:has(#pmv-root) .entry-title,
body:has(#pmv-root) .post-meta {
  display: none !important;
}

body.pmv-landing-active #pmv-progress,
body:has(#pmv-root) #pmv-progress {
  left: 0 !important;
}

/* Fuerza ancho real de viewport aunque Divi/blog encierre el contenido */
body.pmv-landing-active #pmv-root,
body:has(#pmv-root) #pmv-root {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

html {
  scroll-behavior: smooth;
}

/* ============================================================
   PMV — RESET ENCAPSULADO
   ============================================================ */
#pmv-root,
#pmv-root *,
#pmv-root *::before,
#pmv-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

#pmv-root {
  --pmv-black: #f6efe4;
  --pmv-ink: #16120d;
  --pmv-cream: #17130f;
  --pmv-cream-dim: rgba(23,19,15,.64);
  --pmv-cream-faint: rgba(23,19,15,.34);
  --pmv-gold: #b08a3c;
  --pmv-gold-warm: #9b6f24;
  --pmv-gold-line: rgba(176,138,60,.30);
  --pmv-gold-glow: rgba(176,138,60,.12);
  --pmv-gold-faint: rgba(176,138,60,.09);
  --pmv-line: rgba(23,19,15,.10);
  --pmv-ease: cubic-bezier(.22,1,.36,1);

  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  isolation: auto;
  background: var(--pmv-black);
  color: var(--pmv-cream);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1;
}

#pmv-root .pmv-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

#pmv-root em {
  color: var(--pmv-gold-warm);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

#pmv-root video {
  max-width: none;
}

html.pmv-intro-lock,
html.pmv-intro-lock body {
  overflow: hidden !important;
}

html.pmv-intro-lock #top-header,
html.pmv-intro-lock #main-header,
html.pmv-intro-lock .et-l--header,
html.pmv-intro-lock header {
  z-index: 1 !important;
}

/* ============================================================
   PROGRESS
   ============================================================ */
#pmv-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483100;
  height: 1px;
  width: 0;
  background: #b08a3c;
  pointer-events: none;
}

/* ============================================================
   INTRO OVERLAY
   Mantiene el vídeo oscuro, por encima del menú.
   ============================================================ */
#pmv-intro {
  display: none;
}

#pmv-root.pmv-js #pmv-intro {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 2147483000 !important;
  display: block !important;
  background: #000 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

#pmv-root.pmv-intro-hiding #pmv-intro {
  opacity: 0;
  transition: opacity .9s var(--pmv-ease);
}

#pmv-root.pmv-intro-gone #pmv-intro {
  display: none !important;
}

#pmv-intro-video {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: .9;
  margin: 0 !important;
  padding: 0 !important;
}

#pmv-intro-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.28) 72%, rgba(0,0,0,.68) 100%),
    linear-gradient(to top, rgba(6,5,4,.8) 0%, rgba(6,5,4,.08) 55%, rgba(6,5,4,.4) 100%);
  pointer-events: none;
}

#pmv-intro-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  background: rgba(244,239,229,.07);
}

#pmv-intro-bar-fill {
  height: 100%;
  width: 0;
  background: #c4a25a;
}

#pmv-intro-foot {
  position: absolute;
  bottom: clamp(2rem,5vh,3.5rem);
  left: clamp(2rem,6vw,5rem);
  right: clamp(2rem,6vw,5rem);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

#pmv-intro-caption {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(244,239,229,.45);
  line-height: 1.7;
}

#pmv-intro-skip {
  flex-shrink: 0;
  border: 1px solid rgba(196,162,90,.3);
  border-radius: 2px;
  background: rgba(6,5,4,.5);
  color: rgba(244,239,229,.55);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: .85rem 1.4rem;
  cursor: pointer;
  transition: border-color .3s, color .3s, background .3s;
  white-space: nowrap;
}

#pmv-intro-skip:hover {
  border-color: #c4a25a;
  color: #d4b06a;
  background: rgba(6,5,4,.75);
}

/* ============================================================
   HERO
   ============================================================ */
#pmv-hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(6rem,14vh,10rem) clamp(2rem,8vw,8rem) clamp(5rem,11vh,8rem);
  background:
    radial-gradient(ellipse 65% 48% at 82% 12%, rgba(176,138,60,.16), transparent 68%),
    radial-gradient(ellipse 55% 45% at 10% 86%, rgba(194,0,47,.045), transparent 70%),
    linear-gradient(180deg, #fbf7ee 0%, #f6efe4 48%, #efe3d1 100%);
  position: relative;
  overflow: hidden;
}

#pmv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(23,19,15,.055) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(23,19,15,.055) 80px);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  opacity: .65;
  pointer-events: none;
}

#pmv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.72), transparent 42%),
    linear-gradient(to bottom, rgba(255,255,255,.18), rgba(176,138,60,.035));
  pointer-events: none;
}

#pmv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

#pmv-root .pmv-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: clamp(2.5rem,5.5vh,4rem);
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--pmv-gold-warm);
  font-weight: 300;
}

#pmv-root .pmv-hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--pmv-gold-warm);
  flex-shrink: 0;
}

#pmv-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px,11.5vw,168px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.04em;
  color: var(--pmv-cream);
}

#pmv-hero h1 .pmv-amp {
  color: var(--pmv-gold-warm);
  font-style: italic;
}

#pmv-hero-sub {
  max-width: 520px;
  margin-top: clamp(2.5rem,5.5vh,4rem);
  font-size: clamp(14px,1.1vw,16px);
  font-weight: 300;
  line-height: 1.82;
  color: var(--pmv-cream-dim);
  letter-spacing: .01em;
}

#pmv-hero-corner {
  position: absolute;
  right: clamp(2rem,8vw,8rem);
  bottom: clamp(2.5rem,6vh,4rem);
  z-index: 1;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(155,111,36,.62);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================
   STATEMENT
   ============================================================ */
#pmv-statement {
  padding: clamp(9rem,18vh,15rem) clamp(2rem,8vw,8rem);
  background:
    radial-gradient(ellipse 60% 60% at 6% 8%, rgba(176,138,60,.11), transparent 62%),
    linear-gradient(180deg, #f6efe4 0%, #fbf7ee 100%);
}

#pmv-stmt-inner {
  max-width: 900px;
}

#pmv-root .pmv-eyebrow {
  display: block;
  margin-bottom: clamp(2.5rem,5vh,4rem);
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--pmv-gold-warm);
  font-weight: 300;
}

#pmv-stmt-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px,6.5vw,96px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--pmv-cream);
}

#pmv-stmt-body {
  max-width: 560px;
  margin-top: clamp(3rem,6vh,4.5rem);
  font-size: clamp(14px,1.1vw,16px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--pmv-cream-dim);
  letter-spacing: .01em;
}

/* ============================================================
   BAND
   ============================================================ */
#pmv-band {
  margin: 0;
  padding: 0 clamp(2rem,8vw,8rem);
  background: #fbf7ee;
}

#pmv-band-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--pmv-gold-line);
  border-bottom: 1px solid var(--pmv-gold-line);
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

#pmv-root .pmv-band-cell {
  padding: clamp(2.8rem,5.5vh,4.2rem) clamp(2rem,4vw,3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#pmv-root .pmv-band-cell + .pmv-band-cell {
  border-left: 1px solid var(--pmv-gold-line);
}

#pmv-root .pmv-band-lbl {
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--pmv-gold-warm);
  font-weight: 300;
}

#pmv-root .pmv-band-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px,2vw,26px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--pmv-cream);
  letter-spacing: -.01em;
}

/* ============================================================
   AWARDS
   ============================================================ */
#pmv-awards {
  padding: clamp(10rem,20vh,16rem) clamp(2rem,8vw,8rem) clamp(6rem,12vh,10rem);
  background:
    radial-gradient(ellipse 70% 40% at 50% 0, rgba(176,138,60,.13), transparent 68%),
    linear-gradient(180deg, #fbf7ee 0%, #f4eadb 48%, #f8f1e7 100%);
}

#pmv-awards-hd {
  max-width: 700px;
  margin: 0 auto clamp(7rem,14vh,11rem);
  text-align: center;
}

#pmv-awards-hd h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(50px,7.5vw,110px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--pmv-cream);
}

#pmv-awards-list {
  max-width: 1200px;
  margin-inline: auto;
}

/* AWARD ENTRY */
#pmv-root .pmv-award {
  position: relative;
  border-top: 1px solid var(--pmv-line);
  padding: clamp(5.5rem,11vh,9rem) 0;
}

#pmv-root .pmv-award:last-child {
  border-bottom: 1px solid var(--pmv-line);
}

#pmv-root .pmv-award-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 1px minmax(0,.9fr);
  gap: 0 clamp(5rem,9vw,10rem);
  align-items: start;
}

#pmv-root .pmv-award-divider {
  background: var(--pmv-line);
  align-self: stretch;
}

#pmv-root .pmv-award-right {
  padding-top: clamp(4rem,7vh,5.5rem);
}

#pmv-root .pmv-award-counter {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--pmv-cream-faint);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

#pmv-root .pmv-award-counter::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--pmv-line);
}

/* TIPO DE PREMIO — ESTILO LUJO CLARO */
#pmv-root .pmv-award-type-d {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: clamp(2.8rem,5.5vh,4rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

#pmv-root .pmv-award-type-d::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, var(--pmv-gold-warm) 25%, var(--pmv-gold-warm) 75%, transparent);
}

#pmv-root .pmv-award-type-sup {
  font-size: 8px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(155,111,36,.58);
  font-weight: 300;
  line-height: 1;
}

#pmv-root .pmv-award-type-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px,2.6vw,38px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .05em;
  background: linear-gradient(135deg, #8c641f 0%, #c9a451 48%, #9b6f24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#pmv-root .pmv-award-type-sub {
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(155,111,36,.46);
  font-weight: 300;
  line-height: 1;
}

#pmv-root .pmv-award-type {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pmv-gold-warm);
  margin-bottom: clamp(2rem,4vh,3rem);
  font-weight: 300;
}

#pmv-root .pmv-award-rule {
  width: 36px;
  height: 1px;
  background: var(--pmv-gold-warm);
  opacity: .58;
  margin-bottom: clamp(2.5rem,5vh,3.5rem);
}

#pmv-root .pmv-award h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(54px,7vw,108px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.04em;
  color: var(--pmv-cream);
}

#pmv-root .pmv-award-desc {
  font-size: clamp(14px,1.1vw,16px);
  font-weight: 300;
  line-height: 1.88;
  color: var(--pmv-cream-dim);
  letter-spacing: .01em;
}

#pmv-root .pmv-award-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: clamp(3.5rem,7vh,5rem);
  padding-top: clamp(2.5rem,5vh,3.5rem);
  border-top: 1px solid var(--pmv-gold-line);
}

#pmv-root .pmv-stat {
  padding-right: 1.5rem;
}

#pmv-root .pmv-stat + .pmv-stat {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-left: 1px solid var(--pmv-gold-line);
}

#pmv-root .pmv-stat:last-child {
  padding-right: 0;
}

#pmv-root .pmv-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px,4vw,58px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--pmv-gold-warm);
}

#pmv-root .pmv-stat span {
  display: block;
  margin-top: .8rem;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pmv-cream-faint);
  font-weight: 300;
}

#pmv-root .pmv-award::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--pmv-accent-w,0);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pmv-gold-warm), transparent);
  transition: width 1.2s var(--pmv-ease);
}

#pmv-root .pmv-award.is-visible::before {
  --pmv-accent-w: 100%;
}

/* ============================================================
   QUOTE
   ============================================================ */
#pmv-quote {
  max-width: 1200px;
  margin: clamp(4rem,8vh,6rem) auto 0;
  padding: clamp(7rem,14vh,11rem) clamp(2rem,8vw,8rem);
  text-align: center;
  border-top: 1px solid var(--pmv-gold-line);
  background:
    radial-gradient(ellipse 50% 80% at 50% 0, rgba(176,138,60,.11), transparent 68%),
    rgba(255,255,255,.16);
}

#pmv-quote .pmv-qt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(46px,7vw,100px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--pmv-cream);
}

#pmv-quote .pmv-qs {
  margin-top: clamp(2.5rem,5vh,3.5rem);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pmv-cream-faint);
  font-weight: 300;
  line-height: 2;
}

/* ============================================================
   OUTRO
   ============================================================ */
#pmv-outro {
  padding: clamp(11rem,22vh,18rem) clamp(2rem,8vw,8rem) clamp(8rem,16vh,14rem);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(176,138,60,.14), transparent 68%),
    linear-gradient(180deg, #f8f1e7 0%, #efe3d1 100%);
}

#pmv-outro h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px,10vw,152px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.05em;
  color: var(--pmv-cream);
}

#pmv-outro-detail {
  margin-top: clamp(2.5rem,5vh,3.8rem);
  font-size: clamp(14px,1.1vw,16px);
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--pmv-cream-dim);
  line-height: 1.8;
}

#pmv-outro-sep {
  width: 1px;
  height: 72px;
  background: var(--pmv-gold-line);
  margin: clamp(4rem,8vh,6rem) auto;
}

#pmv-outro-brand {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pmv-cream-faint);
  font-weight: 300;
  line-height: 2.2;
}

/* ============================================================
   REVEAL
   ============================================================ */
/* Por defecto visible: si el JS no carga, la landing no queda en blanco. */
#pmv-root .pmv-rv {
  opacity: 1;
  transform: none;
}

/* El efecto de entrada solo se activa cuando el JS confirma que funciona. */
#pmv-root.pmv-js .pmv-rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .95s var(--pmv-ease), transform .95s var(--pmv-ease);
  will-change: opacity, transform;
}

#pmv-root.pmv-js .pmv-rv.is-visible {
  opacity: 1;
  transform: none;
}

#pmv-root .pmv-d1 { transition-delay: .12s; }
#pmv-root .pmv-d2 { transition-delay: .24s; }
#pmv-root .pmv-d3 { transition-delay: .36s; }
#pmv-root .pmv-d4 { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  #pmv-root .pmv-award-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #pmv-root .pmv-award-divider {
    display: none;
  }

  #pmv-root .pmv-award-right {
    padding-top: clamp(3rem,6vh,4rem);
  }
}

@media (max-width: 680px) {
  #pmv-band-inner {
    grid-template-columns: 1fr;
  }

  #pmv-root .pmv-band-cell + .pmv-band-cell {
    border-left: none;
    border-top: 1px solid var(--pmv-gold-line);
  }

  #pmv-intro-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  #pmv-hero h1 {
    font-size: clamp(56px,15vw,100px);
  }

  #pmv-root .pmv-award-type-main {
    font-size: clamp(22px,6vw,32px);
  }

  /* NÚMEROS EN VERTICAL EN MÓVIL */
  #pmv-root .pmv-award-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #pmv-root .pmv-stat {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #pmv-root .pmv-stat + .pmv-stat {
    border-left: none;
    border-top: 1px solid var(--pmv-gold-line);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 420px) {
  #pmv-root .pmv-award-stats {
    grid-template-columns: 1fr;
  }

  #pmv-root .pmv-stat {
    padding-left: 0;
    padding-right: 0;
  }

  #pmv-root .pmv-stat + .pmv-stat {
    border-left: none;
    border-top: 1px solid var(--pmv-gold-line);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #pmv-root *,
  #pmv-root *::before,
  #pmv-root *::after {
    animation: none !important;
    transition: none !important;
  }

  #pmv-intro {
    display: none !important;
  }

  #pmv-root .pmv-rv,
  #pmv-root.pmv-js .pmv-rv {
    opacity: 1 !important;
    transform: none !important;
  }
}