/* =========================================================================
   GOVACARDS Vault Reveal — styles
   Part 1: demo shell (gcvr-demo…)  — page context only, replaceable.
   Part 2: portable module (.gcvr…) — self-contained, namespaced, movable.
   Design language: near-black / deep navy, warm metallic gold, white type,
   muted blue-gray support, restrained glows, generous negative space.
   ========================================================================= */

/* ======================= Part 1 — demo shell ============================ */

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: #04060c;
  color: #f4f1e9;
}

/* Belt and braces against sideways scroll. Only on the root element:
   `clip` avoids creating a scroll container, and even the `hidden`
   fallback is sticky-safe on <html> (the viewport stays the scrollport). */
html {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gcvr-demo__hint { animation: none; opacity: 0.7; }
}

.gcvr-demo__header {
  position: absolute;            /* scrolls away — never obscures the stage */
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 2.75rem);
}

.gcvr-demo__wordmark {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: #d8b46a;
}

.gcvr-demo__wordmarksub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.52em;
  color: #93a0b8;
}

.gcvr-demo__tag {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #93a0b8;
  border: 1px solid rgba(216, 180, 106, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  white-space: nowrap;
}

.gcvr-demo__prelude {
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
  padding: 6rem clamp(1.25rem, 5vw, 3rem) 3rem;
  background:
    radial-gradient(60rem 30rem at 50% -10%, rgba(16, 26, 51, 0.85), transparent 70%),
    #04060c;
}

.gcvr-demo__eyebrow {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: #d8b46a;
}

.gcvr-demo__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 750;
  letter-spacing: 0.02em;
  color: #f4f1e9;
}

.gcvr-demo__lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.02rem;
  color: #93a0b8;
}

.gcvr-demo__hint {
  margin: 2.2rem 0 0;
  color: rgba(216, 180, 106, 0.8);
  font-size: 1.15rem;
  animation: gcvr-demo-bob 2.4s ease-in-out infinite;
}

@keyframes gcvr-demo-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%       { transform: translateY(0.5rem); opacity: 1; }
}

.gcvr-demo__after {
  padding: clamp(6rem, 14vh, 9rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  border-top: 1px solid rgba(216, 180, 106, 0.18);
  background:
    radial-gradient(50rem 24rem at 50% 0%, rgba(16, 26, 51, 0.6), transparent 70%),
    #060910;
}

.gcvr-demo__aftertitle {
  margin: 0.9rem auto 1rem;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: #f4f1e9;
}

.gcvr-demo__aftertext {
  margin: 0 auto;
  max-width: 38rem;
  color: #93a0b8;
}

.gcvr-demo__footer {
  padding: 2.2rem clamp(1.25rem, 5vw, 3rem) 2.8rem;
  text-align: center;
  background: #04060c;
}

.gcvr-demo__footer p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #93a0b8;   /* ≈ 7.7:1 on near-black — AA also for small text */
}

/* ======================= Part 2 — portable module ======================= */
/* Everything below is scoped to .gcvr and namespaced. The module defines
   its own custom properties and fonts; it does not rely on shell styles. */

.gcvr {
  /* palette */
  --gcvr-black:      #04060c;
  --gcvr-navy:       #0a1122;
  --gcvr-navy-soft:  #101a33;
  --gcvr-gold:       #d8b46a;
  --gcvr-gold-deep:  #a8842e;
  --gcvr-gold-dim:   rgba(216, 180, 106, 0.28);
  --gcvr-white:      #f4f1e9;
  --gcvr-muted:      #93a0b8;
  /* type */
  --gcvr-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* motion */
  --gcvr-fade: 0.55s;
  /* driven by script.js */
  --gcvr-length: auto;      /* section height (script sets e.g. 520vh) */
  --gcvr-progress: 0;       /* scroll progress 0…1 for the rail */
  --gcvr-mx: 50;            /* pointer aura position, percent */
  --gcvr-my: 45;

  position: relative;
  height: var(--gcvr-length);
  min-height: 100vh;
  min-height: 100svh;
  background: var(--gcvr-black);
  color: var(--gcvr-white);
  font-family: var(--gcvr-font);
}

/* Visually hidden but screen-reader accessible */
.gcvr__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---- Sticky stage ------------------------------------------------------ */

.gcvr__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--gcvr-black);
}

.gcvr__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Atmosphere layers (pointer-events: none, always) ------------------ */

.gcvr__veil,
.gcvr__aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gcvr__veil--vignette {
  background:
    radial-gradient(120% 90% at 50% 46%, transparent 55%, rgba(4, 6, 12, 0.55) 100%),
    linear-gradient(to bottom, rgba(4, 6, 12, 0.35), transparent 18% 82%, rgba(4, 6, 12, 0.4));
}

/* Grain built purely from repeating CSS gradients — no image asset. */
.gcvr__veil--grain {
  background-image:
    repeating-radial-gradient(circle at 17% 31%, rgba(255, 255, 255, 0.045) 0 0.5px, transparent 0.5px 2.5px),
    repeating-radial-gradient(circle at 71% 64%, rgba(255, 255, 255, 0.035) 0 0.5px, transparent 0.5px 3.5px),
    repeating-radial-gradient(circle at 43% 87%, rgba(216, 180, 106, 0.03) 0 0.5px, transparent 0.5px 3px);
  background-size: 277px 277px, 311px 311px, 253px 253px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* Very subtle gold edge glow framing the stage. */
.gcvr__veil--edge {
  box-shadow:
    inset 0 0 0 1px rgba(216, 180, 106, 0.07),
    inset 0 0 6rem rgba(216, 180, 106, 0.05);
}

/* Pointer-reactive ambient glow — enabled only on fine pointers (see MQ). */
.gcvr__aura {
  display: none;
  background: radial-gradient(
    26rem circle at calc(var(--gcvr-mx) * 1%) calc(var(--gcvr-my) * 1%),
    rgba(216, 180, 106, 0.065),
    transparent 65%
  );
}

@media (pointer: fine) {
  .gcvr__aura { display: block; }
}

/* ---- Story copy overlays ------------------------------------------------ */

.gcvr__copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(1.5rem, 7vw, 6.5rem);
  transform: translateY(calc(-50% + 0.9rem));
  max-width: clamp(19rem, 32vw, 33rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--gcvr-fade) ease,
    transform var(--gcvr-fade) ease,
    visibility 0s linear var(--gcvr-fade);
}

.gcvr[data-gcvr-phase="opening"]    .gcvr__copy--opening,
.gcvr[data-gcvr-phase="transition"] .gcvr__copy--transition,
.gcvr[data-gcvr-phase="final"]      .gcvr__copy--final {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  transition:
    opacity var(--gcvr-fade) ease,
    transform var(--gcvr-fade) ease,
    visibility 0s;
}

.gcvr__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gcvr-gold);
}

.gcvr__headline {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: var(--gcvr-white);
  text-shadow: 0 1px 24px rgba(4, 6, 12, 0.8);
}

.gcvr__support {
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  color: var(--gcvr-muted);
  text-shadow: 0 1px 14px rgba(4, 6, 12, 0.9);
}

.gcvr__body {
  margin: 1.1rem 0 0;
  font-size: 1.04rem;
  color: var(--gcvr-white);
  opacity: 0.92;
  text-shadow: 0 1px 14px rgba(4, 6, 12, 0.9);
}

/* ---- CTAs ---------------------------------------------------------------- */

.gcvr__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.gcvr__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;                 /* touch target ≥ 44px */
  padding: 0.85rem 1.7rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.gcvr__cta--primary {
  background: linear-gradient(160deg, #e7cd8d, var(--gcvr-gold) 45%, var(--gcvr-gold-deep));
  color: #10130b;
  box-shadow: 0 0.5rem 1.8rem rgba(216, 180, 106, 0.22);
}

.gcvr__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.7rem 2.2rem rgba(216, 180, 106, 0.32);
}

.gcvr__cta--secondary {
  border: 1px solid var(--gcvr-gold-dim);
  color: var(--gcvr-gold);
  background: rgba(4, 6, 12, 0.35);
}

.gcvr__cta--secondary:hover {
  border-color: var(--gcvr-gold);
  background: rgba(16, 26, 51, 0.5);
}

.gcvr__cta:focus-visible {
  outline: 2px solid var(--gcvr-gold);
  outline-offset: 3px;
}

/* ---- Phase indicator + progress rail ------------------------------------ */

.gcvr__steps {
  position: absolute;
  z-index: 6;
  right: clamp(1.4rem, 3.5vw, 2.8rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gcvr__step {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gcvr-muted);
  opacity: 0.8;      /* keeps inactive labels ≥ 4.5:1 while gold marks active */
  transition: opacity 0.4s ease, color 0.4s ease;
}

.gcvr__stepnum::after {
  content: "—";
  margin-left: 0.55rem;
  opacity: 0.55;
}

.gcvr[data-gcvr-step="1"] .gcvr__step[data-gcvr-step-item="1"],
.gcvr[data-gcvr-step="2"] .gcvr__step[data-gcvr-step-item="2"],
.gcvr[data-gcvr-step="3"] .gcvr__step[data-gcvr-step-item="3"] {
  opacity: 1;
  color: var(--gcvr-gold);
}

.gcvr__rail {
  position: absolute;
  z-index: 6;
  right: clamp(0.8rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: min(38vh, 17rem);
  background: rgba(147, 160, 184, 0.22);
}

.gcvr__railfill {
  width: 100%;
  height: 100%;
  transform-origin: top;
  transform: scaleY(var(--gcvr-progress));
  background: linear-gradient(to bottom, var(--gcvr-gold), var(--gcvr-gold-deep));
}

/* ---- Scroll cue ----------------------------------------------------------- */

.gcvr__cue {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: calc(1.6rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gcvr-muted);
  opacity: 0.85;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.gcvr__cueline {
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(to bottom, var(--gcvr-gold), transparent);
  animation: gcvr-cue-drift 2.2s ease-in-out infinite;
}

@keyframes gcvr-cue-drift {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(0.45rem); opacity: 1; }
}

.gcvr--cuedone .gcvr__cue {
  opacity: 0;
  visibility: hidden;
}

/* ---- Loading ritual -------------------------------------------------------- */

.gcvr__loader {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background:
    radial-gradient(42rem 26rem at 50% 42%, rgba(16, 26, 51, 0.85), transparent 75%),
    var(--gcvr-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}

.gcvr--booting .gcvr__loader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.gcvr__loaderring {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 106, 0.22);
}

.gcvr__loaderring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gcvr-gold);
  animation: gcvr-spin 1.4s linear infinite;
}

.gcvr__loaderring::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 180, 106, 0.5), transparent 70%);
}

@keyframes gcvr-spin {
  to { transform: rotate(360deg); }
}

.gcvr__loaderword {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-indent: 0.5em;           /* optically recenters letterspaced text */
  color: var(--gcvr-gold);
}

.gcvr__loadersub {
  margin: 0;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  color: var(--gcvr-muted);
}

.gcvr__loaderpct {
  margin: 1.1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(244, 241, 233, 0.75);
  font-variant-numeric: tabular-nums;
}

/* Discreet chip that continues showing load progress after reveal. */
.gcvr__loadchip {
  position: absolute;
  z-index: 6;
  left: clamp(1.2rem, 3vw, 2.4rem);
  bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  margin: 0;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(216, 180, 106, 0.2);
  border-radius: 999px;
  background: rgba(4, 6, 12, 0.55);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gcvr-muted);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.gcvr--ready:not(.gcvr--loaded) .gcvr__loadchip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease 0.4s, visibility 0s;
}

/* ---- Fallback note / noscript ------------------------------------------------ */

.gcvr__note {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 4.5rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.7rem 1.1rem;
  max-width: min(26rem, 86vw);
  border: 1px solid rgba(216, 180, 106, 0.3);
  border-radius: 4px;
  background: rgba(10, 17, 34, 0.92);
  font-size: 0.8rem;
  color: var(--gcvr-white);
  text-align: center;
}

.gcvr__noscript {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--gcvr-black);
}

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

.gcvr__noscripttext {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.7rem 1.2rem;
  width: max-content;
  max-width: 86vw;
  background: rgba(4, 6, 12, 0.85);
  border: 1px solid rgba(216, 180, 106, 0.3);
  border-radius: 4px;
  font-size: 0.85rem;
}

/* ---- Debug panel (created by script.js only when config.debug) --------------- */

.gcvr__debug {
  position: absolute;
  z-index: 11;
  top: 0.8rem;
  left: 0.8rem;
  margin: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(4, 6, 12, 0.8);
  border: 1px solid rgba(216, 180, 106, 0.25);
  border-radius: 4px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.66rem;
  line-height: 1.5;
  color: #9fd89f;
  white-space: pre;
  pointer-events: none;
}

/* ---- Static / reduced-motion layout ------------------------------------------ */
/* script.js adds .gcvr--static when prefers-reduced-motion is on: no scrub,
   hero-sized section, final frame + final copy immediately. */

.gcvr--static {
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
}

.gcvr--static .gcvr__stage {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.gcvr--static .gcvr__cue,
.gcvr--static .gcvr__rail,
.gcvr--static .gcvr__loadchip {
  display: none;
}

.gcvr--static .gcvr__copy {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .gcvr *,
  .gcvr *::before,
  .gcvr *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }
  .gcvr__aura { display: none; }
}

/* ---- Responsive: narrow desktop --------------------------------------------- */

@media (max-width: 1200px) {
  /* Keep the copy column clear of the centrally cropped pack area. */
  .gcvr__copy {
    left: clamp(1.25rem, 4.5vw, 4rem);
    max-width: clamp(15rem, 26vw, 20rem);
  }
  .gcvr__headline {
    font-size: clamp(1.5rem, 2.9vw, 2.3rem);
  }
  .gcvr__cta {
    letter-spacing: 0.14em;
    padding: 0.8rem 1.2rem;
  }
}

/* ---- Responsive: tablet & mobile (matches config mobileMaxWidthPx = 820) ----- */

@media (max-width: 820px) {

  /* Copy becomes a compact lower dock with a readability gradient;
     the pack stays the focal point in the upper stage area. */
  .gcvr__copy {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    padding: 7rem clamp(1.25rem, 6vw, 2.2rem)
             calc(4.6rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(
      to top,
      rgba(4, 6, 12, 0.94) 0%,
      rgba(4, 6, 12, 0.72) 42%,
      rgba(4, 6, 12, 0.25) 72%,
      transparent 100%
    );
    transform: translateY(1rem);
  }

  .gcvr[data-gcvr-phase="opening"]    .gcvr__copy--opening,
  .gcvr[data-gcvr-phase="transition"] .gcvr__copy--transition,
  .gcvr[data-gcvr-phase="final"]      .gcvr__copy--final {
    transform: translateY(0);
  }

  .gcvr__headline {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .gcvr__support,
  .gcvr__body {
    font-size: 0.92rem;
  }

  .gcvr__ctas {
    margin-top: 1.4rem;
  }

  .gcvr__cta {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Indicator becomes compact + horizontal, top center; inactive steps
     show only their number to save width. */
  .gcvr__steps {
    top: calc(1.15rem + env(safe-area-inset-top, 0px));
    right: auto;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: baseline;
    gap: 1.15rem;
  }

  .gcvr__step .gcvr__steplabel { display: none; }
  .gcvr__stepnum::after        { display: none; content: none; }

  .gcvr[data-gcvr-step="1"] .gcvr__step[data-gcvr-step-item="1"] .gcvr__steplabel,
  .gcvr[data-gcvr-step="2"] .gcvr__step[data-gcvr-step-item="2"] .gcvr__steplabel,
  .gcvr[data-gcvr-step="3"] .gcvr__step[data-gcvr-step-item="3"] .gcvr__steplabel {
    display: inline;
  }

  /* Rail becomes a thin horizontal progress line along the very top. */
  .gcvr__rail {
    top: 0;
    right: 0;
    left: 0;
    transform: none;
    width: auto;
    height: 2px;
    background: rgba(147, 160, 184, 0.18);
  }

  .gcvr__railfill {
    transform-origin: left;
    transform: scaleX(var(--gcvr-progress));
    background: linear-gradient(to right, var(--gcvr-gold-deep), var(--gcvr-gold));
  }

  /* Chip sits centered BELOW the horizontal indicator, never beside it —
     no overlap even at 360px. */
  .gcvr__loadchip {
    bottom: auto;
    top: calc(2.9rem + env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);
  }

  .gcvr__cue {
    bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Ultra-narrow safety (≤ 360px) */
@media (max-width: 380px) {
  .gcvr__headline { font-size: 1.35rem; }
  .gcvr__eyebrow  { letter-spacing: 0.3em; }
  .gcvr__cta      { letter-spacing: 0.16em; padding: 0.8rem 1.1rem; }
}
