.rg-story {
  --rg-ink: #252721;
  --rg-green: #256348;
  --rg-copper: #b46f32;
  --rg-paper: #f7f1e6;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 700px);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  color: var(--rg-ink);
}

.rg-story__portrait {
  position: sticky;
  top: 2rem;
}

.rg-story__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem .35rem 1.5rem;
  box-shadow: 0 1.5rem 4rem rgb(42 36 26 / 18%);
}

.rg-story__caption {
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--rg-copper);
  font-weight: 700;
  line-height: 1.35;
}

.rg-story__caption span {
  color: #61645c;
  font-size: .88rem;
  font-weight: 500;
}

.rg-story__eyebrow {
  margin: 0 0 .8rem;
  color: var(--rg-green);
  font: 700 .78rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
}

.rg-story h2 {
  max-width: 16ch;
  margin: 0 0 1.6rem;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.rg-story__content > p {
  max-width: 68ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
}

.rg-story__lead {
  font-size: clamp(1.15rem, 2vw, 1.38rem) !important;
  line-height: 1.55 !important;
  font-weight: 600;
}

.rg-story blockquote {
  margin: 2.2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--rg-copper);
  background: var(--rg-paper);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 750;
  line-height: 1.35;
}

.rg-story__promise {
  margin-top: 2rem;
  font-weight: 650;
}

.rg-story__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

.rg-story__facts span {
  padding: .55rem .85rem;
  border: 1px solid rgb(37 99 72 / 28%);
  border-radius: 999px;
  color: var(--rg-green);
  background: rgb(37 99 72 / 5%);
  font-size: .82rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .rg-story {
    grid-template-columns: 1fr;
  }

  .rg-story__portrait {
    position: static;
    max-width: 480px;
  }

  .rg-story h2 {
    max-width: 18ch;
  }
}
