.page-body {
  min-height: 100vh;
  background: var(--ink);
}

.page-main {
  padding: 156px 0 112px;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #858187;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.page-breadcrumbs a:hover {
  color: var(--red-light);
}

.page-breadcrumbs span:last-child {
  color: #b3ada9;
}

.page-hero {
  max-width: 850px;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line);
}

.page-kicker,
.resource-index,
.page-section-label {
  color: var(--red-light);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 860px;
  margin: 20px 0 24px;
  color: var(--paper);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 560;
  letter-spacing: -.07em;
  line-height: .98;
}

.page-hero h1 em,
.page-section h2 em {
  color: var(--red);
  font-style: normal;
}

.page-lede {
  max-width: 700px;
  margin: 0;
  color: #b1adb0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.page-section {
  max-width: 900px;
  padding: 80px 0 0;
}

.page-section h2 {
  max-width: 720px;
  margin: 14px 0 22px;
  color: #e7e2de;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.page-section > p,
.page-section li {
  max-width: 750px;
  color: #a4a0a3;
  font-size: 16px;
  line-height: 1.8;
}

.page-section > p + p {
  margin-top: 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.page-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 2%);
}

.page-card h3 {
  margin: 28px 0 12px;
  color: #e5e0dc;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.page-card p {
  margin: 0;
  color: #969297;
  font-size: 14px;
  line-height: 1.7;
}

.page-list,
.page-steps {
  margin: 28px 0 0;
  padding-left: 24px;
}

.page-steps {
  display: grid;
  gap: 22px;
  padding-left: 0;
  list-style: none;
  counter-reset: steps;
}

.page-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  max-width: 820px;
  margin: 0;
}

.page-steps li::before {
  color: var(--red);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding-top: 5px;
}

.page-steps strong {
  display: block;
  margin-bottom: 5px;
  color: #e5e0dc;
  font-size: 17px;
}

.page-callout {
  margin-top: 34px;
  padding: 24px 26px;
  border-left: 2px solid var(--red);
  background: rgb(255 59 48 / 6%);
}

.page-callout p {
  max-width: 760px;
  margin: 0;
  color: #d3cdca;
  font-size: 16px;
  line-height: 1.7;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.page-links a {
  color: #d4cfcc;
  font-size: 14px;
  font-weight: 650;
}

.page-links a:hover {
  color: var(--red-light);
}

.page-body .site-footer {
  margin-top: 0;
}

@media (max-width: 720px) {
  .page-main {
    padding-top: 128px;
  }

  .page-hero {
    padding-bottom: 56px;
  }

  .page-section {
    padding-top: 60px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-card {
    min-height: auto;
  }
}
