/* ==========================================================================
   meetingsheld.com v2
   Black ink on white paper. One accent (links + primary button). Green only
   on the word "Held" and a successful calculator result.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */

:root {
  --ink: #0a0a0a;
  --ink-2: #525252;
  --paper: #ffffff;
  --fill: #f5f5f5;
  --line: rgba(0, 0, 0, 0.10);
  --line-strong: #0a0a0a;
  --accent: #1d4ed8;
  --accent-hover: #1e40af;
  --accent-ink: #ffffff;
  --held: #15803d;
  --error: #b91c1c;
  --ring: #a3a3a3;

  --radius: 6px;
  --radius-lg: 10px;

  --dur-quick: 150ms;
  --dur-fast: 250ms;
  --dur-medium: 350ms;
  --dur-slow: 400ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --max: 1120px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(56px, 6vw, 88px);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --measure: 68ch;
  --nav-h: 64px;

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ol, ul, fieldset {
  margin: 0;
}

ol[class],
ul[class] {
  padding: 0;
  list-style: none;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */

h1, .t-h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 18ch;
}

h2, .t-h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 24ch;
}

h3, .t-h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p, li, dd, .t-body {
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

p, .measure {
  max-width: var(--measure);
}

.t-lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  max-width: var(--measure);
}

.t-small {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: var(--measure);
}

.t-num,
.t-price,
table td,
[data-calc-output],
input {
  font-variant-numeric: tabular-nums;
}

.t-price {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

strong, b {
  font-weight: 600;
}

.held {
  color: var(--held);
}

/* Links */

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--accent-hover);
}

.link-plain,
.wordmark,
.nav-links a,
.site-footer a,
.btn {
  color: var(--ink);
  text-decoration: none;
}

.link-plain:hover,
.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--max);
  padding-inline: var(--gutter);
  margin-inline: auto;
  width: 100%;
}

.section {
  padding-block: var(--section);
  border-top: 1px solid var(--line-strong);
}

.section--flush {
  border-top: 0;
}

.section-head {
  margin-bottom: var(--space-6);
}

.section-head > * + * {
  margin-top: var(--space-4);
}

.flow > * + * {
  margin-top: var(--space-4);
}

.flow-lg > * + * {
  margin-top: var(--space-5);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(8px);
}

/* --------------------------------------------------------------------------
   6. Header and nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: var(--space-4);
}

.wordmark {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: var(--nav-h);
  align-content: center;
  flex-wrap: wrap;
  align-self: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: var(--nav-h);
}

.wordmark-suffix {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0;
}

.menu-button {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.menu-button .menu-icon-close,
body.menu-open .menu-button .menu-icon-open {
  display: none;
}

body.menu-open .menu-button .menu-icon-close {
  display: block;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-fast) var(--ease);
}

body.menu-open .site-nav {
  grid-template-rows: 1fr;
}

.site-nav-inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear var(--dur-fast);
}

body.menu-open .site-nav-inner {
  visibility: visible;
  transition-delay: 0s;
}

.site-nav-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-block: 8px 24px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.nav-links a {
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (min-width: 768px) {
  .header-bar {
    grid-template-columns: auto 1fr;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    display: block;
    justify-self: end;
  }

  .site-nav-inner {
    overflow: visible;
    visibility: visible;
  }

  .site-nav-body {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-block: 0;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .nav-links a {
    font-size: 15px;
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius);
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-quick) var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

.btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  height: 44px;
  padding-inline: 0;
  color: var(--ink);
  background: none;
  text-decoration: none;
}

.btn-secondary:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

@media (pointer: coarse) {
  .btn {
    height: 48px;
  }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-top: clamp(64px, 10vw, 140px);
  padding-bottom: var(--section);
}

.hero > * + * {
  margin-top: var(--space-5);
}

.hero-kicker {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  margin-bottom: 0;
}

.hero > .hero-kicker + h1 {
  margin-top: var(--space-4);
}

.hero-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   9. Tables
   -------------------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
}

.table th {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: left;
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--line-strong);
  vertical-align: bottom;
}

.table td {
  font-size: 16px;
  line-height: 1.5;
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-wrap: pretty;
}

.table td:first-child,
.table th:first-child {
  font-weight: 500;
}

.table td:first-child {
  color: var(--ink);
}

.table td:last-child,
.table th:last-child {
  padding-right: 0;
}

@media (max-width: 639px) {
  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .table tr:first-child {
    border-top: 1px solid var(--line-strong);
  }

  .table td {
    padding: 0;
    border: 0;
  }

  .table td + td {
    margin-top: 6px;
  }

  .table td:first-child {
    font-size: 17px;
  }

  .table td:last-child {
    font-size: 14px;
    color: var(--ink-2);
  }
}

/* --------------------------------------------------------------------------
   10. Steps
   -------------------------------------------------------------------------- */

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  counter-reset: step;
}

.step {
  display: block;
}

.step-num {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.step-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
  max-width: var(--measure);
}

.step-body {
  font-size: 17px;
  max-width: var(--measure);
}

.step-owner {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  white-space: nowrap;
}

.steps-timeline {
  margin-top: 32px;
}

.steps-link {
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   11. Held definition
   -------------------------------------------------------------------------- */

.rules {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.rule-num {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.rule-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.held-definition > .rules {
  margin-top: 32px;
}

.held-definition > .held-bar {
  margin-top: 32px;
}

.held-note,
.held-link {
  margin-top: 24px;
}

.held-bar {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 500;
  max-width: none;
  width: fit-content;
}

/* --------------------------------------------------------------------------
   12. Price rows
   -------------------------------------------------------------------------- */

.price-rows {
  margin: 0;
  border-top: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.price-row-amount {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.price-row-text {
  font-size: 17px;
  max-width: 52ch;
}

@media (min-width: 768px) {
  .price-row {
    grid-template-columns: 20rem 1fr;
    gap: 32px;
  }
}

.price-example {
  font-size: 17px;
  font-weight: 500;
  margin-top: 24px;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   13. Calculator
   -------------------------------------------------------------------------- */

.calc {
  margin-top: 48px;
}

.calc-title {
  margin-bottom: 24px;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 640px;
}

@media (min-width: 640px) {
  .calc-fields {
    grid-template-columns: 1fr 1fr;
  }
}

.field-label {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.input-wrap {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding-inline: 12px;
  gap: 6px;
  transition: border-color var(--dur-quick) var(--ease);
}

.input-wrap:hover {
  background: var(--fill);
}

.input-wrap:focus-within {
  border-color: var(--ink);
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.input-wrap input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  padding: 0;
}

.input-wrap input:focus,
.input-wrap input:focus-visible {
  outline: none;
}

.input-wrap input::-webkit-outer-spin-button,
.input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-wrap input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.adorn {
  font-size: 16px;
  color: var(--ink-2);
  flex: 0 0 auto;
}

.calc-output {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-top: 32px;
  max-width: 44ch;
  transition: opacity var(--dur-fast) var(--ease);
}

.calc-output[data-fading] {
  opacity: 0;
}

.calc-caveat {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  margin-top: 12px;
}

.calc-link {
  margin-top: 24px;
}

.cta-buttons {
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */

[data-faq] {
  border-top: 1px solid var(--line);
  max-width: var(--measure);
}

[data-faq-item] {
  border-bottom: 1px solid var(--line);
}

[data-faq-item] h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

[data-faq-item] button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  padding: 16px 0;
  min-height: 44px;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: var(--ink-2);
  transition: transform 200ms var(--ease);
}

[data-faq-item] button[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

[data-faq-panel] {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-fast) var(--ease);
}

[data-faq-panel][data-open="true"] {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-answer {
  font-size: 17px;
  color: var(--ink);
  padding-bottom: 16px;
  max-width: var(--measure);
}

/* --------------------------------------------------------------------------
   15. Fit lists
   -------------------------------------------------------------------------- */

.fit-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .fit-cols {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.fit-title {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--ink-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 16px;
  letter-spacing: 0;
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.fit-list li {
  font-size: 17px;
  max-width: var(--measure);
}

/* --------------------------------------------------------------------------
   16. About block
   -------------------------------------------------------------------------- */

.about-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}

.portrait {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  max-width: 96px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  background: var(--fill);
}

.about-text {
  flex: 1 1 320px;
}

.about-text > * + * {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   17. Calendly stage
   -------------------------------------------------------------------------- */

[data-calendly] {
  position: relative;
  min-height: 700px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

[data-calendly-skeleton] {
  position: absolute;
  inset: 0;
  background: var(--fill);
  transition: opacity var(--dur-slow) var(--ease);
}

[data-calendly-skeleton][hidden],
[data-calendly].is-loaded [data-calendly-skeleton] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

[data-calendly-frame] {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}

[data-calendly-frame][data-loaded],
[data-calendly].is-loaded [data-calendly-frame] {
  opacity: 1;
}

.calendly-fallback {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line-strong);
  padding-block: 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 48px;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.footer-wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-left a,
.footer-left p {
  font-size: 15px;
}

.footer-right {
  text-align: left;
}

.footer-right p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
  }
}

/* --------------------------------------------------------------------------
   19. Motion
   -------------------------------------------------------------------------- */

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  [data-hero-reveal] {
    opacity: 0;
    animation: hero-in 500ms var(--ease) both;
  }

  [data-hero-reveal]:nth-child(1) { animation-delay: 0ms; }
  [data-hero-reveal]:nth-child(2) { animation-delay: 40ms; }
  [data-hero-reveal]:nth-child(3) { animation-delay: 80ms; }
  [data-hero-reveal]:nth-child(4) { animation-delay: 120ms; }
  [data-hero-reveal]:nth-child(5) { animation-delay: 160ms; }
  [data-hero-reveal]:nth-child(6) { animation-delay: 200ms; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   20. Preview page only (type specimen)
   -------------------------------------------------------------------------- */

.specimen {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.specimen-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .specimen-row {
    grid-template-columns: 10rem 1fr;
    gap: 32px;
    align-items: baseline;
  }
}

.specimen-label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}

/* Footer page links */
.footer-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
}

.footer-list a {
  color: var(--ink-2);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-list-label {
  color: var(--ink-2);
  font-weight: 600;
}
