.eyebrow,
.resource-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
}

.resource-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.12);
}

.resource-card:focus-visible,
.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.content-hero {
  padding: 44px 0 38px;
}

.content-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 6vw, 70px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 68px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-card {
  padding: 28px;
}

.content-card h2,
.content-card h3 {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.content-card li + li {
  margin-top: 8px;
}

.side-cta {
  position: sticky;
  top: 20px;
  padding: 26px;
  border: 1px solid rgba(20, 122, 126, 0.2);
  border-radius: 20px;
  background: linear-gradient(155deg, #ffffff 0%, #f3fbfa 62%, #fff8ed 100%);
  box-shadow: var(--shadow);
}

.side-cta h2 {
  margin-top: 0;
}

.side-cta .button {
  width: 100%;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 110px);
  place-items: center;
  padding: 40px 0 80px;
}

.not-found-panel {
  width: min(760px, 100%);
  text-align: center;
}

.not-found-panel h1 {
  margin-inline: auto;
}

.not-found-panel .lead {
  margin-inline: auto;
}

.not-found-panel .actions {
  justify-content: center;
}

@media (max-width: 820px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-cta {
    position: static;
  }
}
