:root {
  --docs-bg: #080f1c;
  --docs-surface: rgba(14, 23, 40, 0.78);
  --docs-surface-strong: #0d1829;
  --docs-ink: #ecf4ff;
  --docs-muted: #a4b8d2;
  --docs-brand: #4da2ff;
  --docs-brand-soft: rgba(77, 162, 255, 0.16);
  --docs-accent: #ff9a69;
  --docs-line: rgba(151, 190, 237, 0.22);
  --docs-line-strong: rgba(151, 190, 237, 0.42);
  --docs-shadow: 0 24px 70px rgba(2, 7, 16, 0.45);
  --docs-radius-lg: 22px;
  --docs-radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--docs-bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--docs-ink);
  background:
    radial-gradient(circle at 8% -10%, rgba(31, 136, 255, 0.27), transparent 31rem),
    radial-gradient(circle at 95% 8%, rgba(255, 141, 95, 0.16), transparent 29rem),
    linear-gradient(180deg, #0b1424 0%, #0a1321 48%, #080f1c 100%);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.docs-ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(175, 208, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 208, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 78%);
}

.docs-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4.7rem;
  margin: 0;
  padding: 0.72rem max(1.5rem, calc((100vw - 1500px) / 2));
  border: 0;
  border-bottom: 1px solid var(--docs-line);
  border-radius: 0;
  background: rgba(8, 16, 29, 0.9);
  box-shadow: 0 10px 28px rgba(3, 9, 19, 0.16);
  backdrop-filter: blur(16px);
  min-width: 0;
}

.docs-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--docs-ink);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.docs-brand img {
  width: clamp(88px, 10vw, 128px);
  height: auto;
}

.docs-brand span {
  padding-left: 0.8rem;
  border-left: 1px solid var(--docs-line);
  color: var(--docs-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.docs-header-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--docs-muted);
  font-size: 0.9rem;
}

.docs-header-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
}

.docs-header-nav a:hover,
.docs-header-nav a:focus-visible,
.docs-header-nav .is-current {
  color: var(--docs-ink);
  background: rgba(86, 143, 213, 0.14);
}

.docs-shell {
  display: grid;
  grid-template-columns: minmax(14.5rem, 17rem) minmax(0, 850px) minmax(10rem, 12rem);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(1500px, calc(100vw - 3rem));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.docs-nav-toggle {
  display: none;
}

.docs-sidebar {
  position: sticky;
  top: 4.7rem;
  max-height: calc(100vh - 4.7rem);
  overflow: auto;
  scrollbar-color: rgba(130, 177, 234, 0.46) transparent;
}

.docs-sidebar__inner {
  padding: 0.4rem 0.2rem 1rem;
}

.docs-sidebar__home,
.docs-nav-group a {
  display: block;
  border-radius: 9px;
  color: var(--docs-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.docs-sidebar__home {
  margin-bottom: 0.8rem;
  padding: 0.58rem 0.7rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.docs-sidebar__home:hover,
.docs-sidebar__home:focus-visible,
.docs-sidebar__home.is-active,
.docs-nav-group a:hover,
.docs-nav-group a:focus-visible,
.docs-nav-group a.is-active {
  color: var(--docs-ink);
  background: var(--docs-brand-soft);
}

.docs-nav-group {
  margin: 0;
  border-top: 1px solid rgba(151, 190, 237, 0.12);
}

.docs-nav-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.8rem;
  cursor: pointer;
  color: #d9e7fa;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.docs-nav-group summary::-webkit-details-marker {
  display: none;
}

.docs-nav-group summary::after {
  content: "+";
  color: var(--docs-brand);
  font-size: 1.15rem;
  font-weight: 400;
}

.docs-nav-group[open] summary::after {
  content: "-";
}

.docs-nav-group ul {
  display: grid;
  gap: 0.18rem;
  margin: 0 0 0.8rem;
  padding: 0;
  list-style: none;
}

.docs-nav-group a {
  padding: 0.5rem 0.7rem;
}

.doc-article {
  min-width: 0;
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
  padding: 0 0 4rem;
}

.doc-article__intro {
  padding-bottom: 0.75rem;
}

.doc-eyebrow,
.doc-figure__eyebrow {
  margin: 0 0 0.55rem;
  color: #a9d5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doc-article h1,
.doc-article h2,
.doc-article h3 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 1.1;
}

.doc-article h1 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: -0.035em;
}

.doc-article h2 {
  margin: 0;
  font-size: clamp(1.32rem, 2.3vw, 1.75rem);
  letter-spacing: -0.02em;
  scroll-margin-top: 8rem;
}

.doc-article h3 {
  margin: 0;
  font-size: 1.08rem;
}

.doc-summary {
  max-width: 64ch;
  margin: 1.1rem 0 0;
  color: #d3e2f5;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.doc-overview {
  max-width: 70ch;
  margin: 1.45rem 0 0;
  color: #b5c7dc;
  font-size: 0.98rem;
}

.doc-article code {
  padding: 0.08rem 0.28rem;
  border: 1px solid rgba(151, 190, 237, 0.18);
  border-radius: 5px;
  background: rgba(9, 19, 33, 0.72);
  color: #d9ebff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.doc-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #8ea8c6;
  font-size: 0.8rem;
}

.doc-callout {
  margin: 1.6rem 0 2rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-left: 3px solid var(--docs-brand);
  border-radius: 0 10px 10px 0;
  background: rgba(22, 49, 80, 0.38);
}

.doc-callout strong {
  color: #b9dcff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-callout p {
  margin: 0.45rem 0 0;
  color: #d6e5f6;
}

.doc-callout--tip {
  border-left-color: #58d2b4;
  background: rgba(27, 87, 75, 0.25);
}

.doc-callout--tip > strong {
  color: #8de5d0;
}

.doc-callout--caution {
  border-left-color: var(--docs-accent);
  background: rgba(115, 57, 34, 0.26);
}

.doc-callout--caution > strong {
  color: #ffc0a0;
}

.doc-section {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.doc-section p {
  margin: 0.95rem 0 0;
  color: #c4d2e4;
}

.doc-section--legal-emphasis {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 174, 123, 0.42);
  border-left: 4px solid var(--docs-accent);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(92, 43, 29, 0.3), rgba(14, 27, 44, 0.76));
}

.doc-section--legal-emphasis h2 {
  color: #ffe2cf;
}

.doc-section--legal-emphasis p {
  color: #e7edf6;
  font-weight: 600;
}

.doc-steps,
.doc-checklist,
.doc-legal-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.15rem 0 0;
  padding-left: 1.55rem;
  color: #d7e3f3;
}

.doc-control-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  margin: 1.4rem 0 0;
  padding-left: 1.75rem;
  width: 100%;
  color: #d7e3f3;
}

.doc-control-list li {
  min-width: 0;
  padding-left: 0.35rem;
}

.doc-control-list li::marker {
  color: var(--docs-brand);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.doc-control-list > li > strong,
.doc-control-list > li > span {
  display: block;
}

.doc-control-list > li > strong {
  color: #edf5ff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.doc-control-list > li > span {
  margin-top: 0.22rem;
  color: #b8c9dc;
}

.doc-steps li::marker {
  color: var(--docs-brand);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.doc-checklist {
  padding-left: 0;
  list-style: none;
}

.doc-checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.doc-checklist li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.18rem;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--docs-brand);
  border-radius: 50%;
}

.doc-legal-list {
  padding-left: 0;
  list-style: none;
  counter-reset: legal-item;
}

.doc-legal-list li {
  position: relative;
  padding-left: 2.2rem;
  counter-increment: legal-item;
}

.doc-legal-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--docs-brand);
  content: "(" counter(legal-item, lower-alpha) ")";
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.doc-result {
  margin-top: 1.45rem !important;
  padding: 0.8rem 0 0.8rem 1rem;
  border-left: 3px solid #58d2b4;
  color: #d8eee9 !important;
}

.doc-result strong {
  color: #8de5d0;
}

.doc-download-claim {
  display: grid;
  gap: 1rem;
  margin: clamp(1.7rem, 4vw, 3rem) 0;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(102, 178, 255, 0.46);
  border-radius: var(--docs-radius-lg);
  background:
    linear-gradient(135deg, rgba(26, 73, 117, 0.5), rgba(12, 25, 42, 0.86) 62%),
    rgba(10, 21, 36, 0.84);
  box-shadow: 0 16px 38px rgba(2, 8, 19, 0.28);
}

.doc-download-claim__heading h2 {
  margin: 0;
}

.doc-download-claim__heading > p:last-child {
  max-width: 63ch;
  margin: 0.68rem 0 0;
  color: #bfd1e5;
}

.doc-download-claim__status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--docs-brand);
  border-radius: 0 9px 9px 0;
  background: rgba(7, 18, 32, 0.45);
  color: #d6e6f8;
  font-size: 0.9rem;
}

.doc-download-claim__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
}

.doc-download-claim__agreement {
  display: inline-flex;
  flex: 1 1 30rem;
  align-items: flex-start;
  gap: 0.62rem;
  color: #c9d9eb;
  font-size: 0.88rem;
  line-height: 1.45;
}

.doc-download-claim__agreement input {
  width: 1rem;
  height: 1rem;
  margin: 0.17rem 0 0;
  accent-color: #5db0ff;
}

.doc-download-claim__agreement a {
  color: #b9dcff;
  text-underline-offset: 0.18em;
}

.doc-download-claim__primary,
.doc-download-artifact__button {
  min-height: 2.65rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(112, 184, 255, 0.72);
  border-radius: 10px;
  background: linear-gradient(135deg, #256fc1, #1b4f94);
  color: #f4f9ff;
  box-shadow: 0 8px 18px rgba(0, 20, 48, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.doc-download-claim__primary:hover:not(:disabled),
.doc-download-claim__primary:focus-visible:not(:disabled),
.doc-download-artifact__button:hover:not(:disabled),
.doc-download-artifact__button:focus-visible:not(:disabled) {
  border-color: #e3f2ff;
  background: linear-gradient(135deg, #3283d9, #2561ae);
}

.doc-download-claim__primary:disabled,
.doc-download-artifact__button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.doc-download-claim__artifacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.doc-download-artifact {
  display: grid;
  gap: 0.78rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--docs-line);
  border-radius: var(--docs-radius-md);
  background: rgba(7, 17, 30, 0.64);
}

.doc-download-artifact h3 {
  margin: 0;
  color: #ecf5ff;
}

.doc-download-artifact p {
  margin: 0;
  color: #a8bfd8;
  font-size: 0.84rem;
}

.doc-download-artifact__metadata {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  color: #a8bfd8;
  font-size: 0.78rem;
}

.doc-download-artifact__metadata code {
  overflow-wrap: anywhere;
}

.doc-download-artifact__button {
  justify-self: start;
}

.doc-figure {
  display: grid;
  justify-items: center;
  width: 100%;
  margin: clamp(1.7rem, 4vw, 3rem) auto;
}

.doc-figure__placeholder {
  display: block;
  width: min(100%, 900px);
  margin-inline: auto;
}

.doc-figure > img {
  display: block;
  width: auto;
  max-width: min(100%, 900px);
  margin-inline: auto;
  height: auto;
  border: 1px solid var(--docs-line-strong);
  border-radius: var(--docs-radius-md);
  box-shadow: 0 18px 38px rgba(1, 7, 16, 0.38);
}

.doc-figure > img.doc-figure__image--portrait {
  width: auto;
  max-width: min(100%, 900px);
  max-height: min(56rem, 82vh);
}

.doc-figure__placeholder {
  display: grid;
  place-content: center;
  gap: 0.65rem;
  min-height: 12rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px dashed rgba(137, 193, 255, 0.65);
  border-radius: var(--docs-radius-md);
  background:
    linear-gradient(135deg, rgba(31, 136, 255, 0.15), rgba(255, 141, 95, 0.08)),
    repeating-linear-gradient(45deg, rgba(178, 217, 255, 0.045) 0 1px, transparent 1px 12px);
  color: #cce4ff;
  text-align: center;
}

.doc-figure__placeholder--standard {
  aspect-ratio: 4 / 3;
}

.doc-figure__placeholder--wide,
.doc-figure__placeholder--hero {
  aspect-ratio: 16 / 9;
}

.doc-figure__placeholder--hero {
  min-height: 17rem;
}

.doc-figure__placeholder strong {
  max-width: 31ch;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  line-height: 1.18;
}

.doc-figure__placeholder > span:last-child {
  max-width: 50ch;
  color: #a6c4e3;
  font-size: 0.86rem;
}

.doc-figure figcaption {
  width: min(100%, 900px);
  margin-top: 0.65rem;
  color: #8ea8c6;
  font-size: 0.8rem;
  text-align: center;
}

.doc-related {
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--docs-line);
}

.doc-related p {
  margin: 0 0 0.75rem;
  color: #a9d5ff;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc-related a {
  display: inline-flex;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(77, 162, 255, 0.4);
  color: #cfe4ff;
  font-size: 0.84rem;
  text-decoration: none;
}

.doc-related a:hover,
.doc-related a:focus-visible {
  border-color: rgba(77, 162, 255, 0.9);
  color: #ffffff;
}

.doc-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--docs-line);
}

.doc-pager__link {
  display: grid;
  gap: 0.25rem;
  color: #cfe4ff;
  text-decoration: none;
}

.doc-pager__link--next {
  text-align: right;
}

.doc-pager__link span {
  color: #8fa8c7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-pager__link strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
}

.doc-pager__link:hover strong,
.doc-pager__link:focus-visible strong {
  color: #ffffff;
}

.doc-on-this-page {
  position: sticky;
  top: 4.7rem;
  align-self: start;
  padding: 0.3rem 0 0.3rem 1rem;
  border-left: 1px solid var(--docs-line);
}

.doc-on-this-page p {
  margin: 0 0 0.55rem;
  color: #d7e7fb;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.doc-on-this-page ol {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc-on-this-page a {
  color: #8fa8c7;
  font-size: 0.78rem;
  line-height: 1.3;
  text-decoration: none;
}

.doc-on-this-page a:hover,
.doc-on-this-page a:focus-visible {
  color: #d8eaff;
}

.doc-home__section {
  margin-top: 3rem;
}

.doc-home__section h2 {
  max-width: 20ch;
}

.doc-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.doc-topic-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--docs-line);
  border-radius: 12px;
  background: rgba(9, 19, 33, 0.6);
}

.doc-topic-card p {
  margin: 0.65rem 0 1rem;
  color: #a9bdd6;
  font-size: 0.86rem;
}

.doc-topic-card a {
  margin-top: auto;
  color: #b8dcff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.doc-topic-card a:hover,
.doc-topic-card a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.docs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1500px, calc(100vw - 3rem));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid var(--docs-line);
  color: #839ab8;
  font-size: 0.78rem;
}

.docs-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.docs-footer__links a {
  color: #a8c2df;
  text-decoration: none;
}

.docs-footer__links a:hover,
.docs-footer__links a:focus-visible {
  color: #eef6ff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1180px) {
  .docs-shell {
    grid-template-columns: minmax(13rem, 15rem) minmax(0, 850px);
  }

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

@media (max-width: 790px) {
  .docs-shell,
  .docs-footer {
    width: min(calc(100% - 1.25rem), 720px);
  }

  .docs-header {
    min-height: 4.2rem;
    margin: 0;
    padding: 0.55rem 0.75rem;
  }

  .docs-brand {
    gap: 0.55rem;
  }

  .docs-brand img {
    width: 84px;
  }

  .docs-brand span {
    padding-left: 0.55rem;
    font-size: 0.76rem;
  }

  .docs-header-nav {
    display: none;
  }

  .docs-shell {
    display: block;
    margin-top: 0;
  }

  .docs-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.8rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--docs-line);
    border-radius: 12px;
    background: rgba(14, 27, 45, 0.9);
    color: var(--docs-ink);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .docs-nav-toggle::after {
    content: "+";
    margin-left: 0.5rem;
    color: var(--docs-brand);
    font-size: 1.1rem;
  }

  .docs-nav-toggle[aria-expanded="true"]::after {
    content: "-";
  }

  .docs-sidebar {
    display: none;
    position: static;
    max-height: none;
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius-md);
    background: rgba(10, 20, 35, 0.94);
  }

  .docs-sidebar.is-open {
    display: block;
  }

  .doc-article {
    margin-top: 1.2rem;
    padding: 0 0 2.5rem;
  }

  .doc-article h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .doc-topic-grid {
    grid-template-columns: 1fr;
  }

  .doc-download-claim__terms {
    align-items: stretch;
  }

  .doc-download-claim__primary,
  .doc-download-artifact__button {
    width: 100%;
  }

  .doc-download-claim__artifacts {
    grid-template-columns: 1fr;
  }

  .doc-pager {
    grid-template-columns: 1fr;
  }

  .doc-pager__link--next {
    text-align: left;
  }

  .docs-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 460px) {
  .docs-brand span {
    display: none;
  }

  .docs-header-nav a {
    padding-inline: 0.45rem;
  }

  .doc-figure__placeholder--hero {
    min-height: 13rem;
  }
}

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