
/* First Walk article styles. This file intentionally does not style .site-header or .brand. */
.story-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  color: var(--salt);
  background: #111;
  overflow: hidden;
}
.story-hero picture,
.story-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.05) 0%, rgba(17,17,17,.22) 38%, rgba(17,17,17,.86) 100%),
              linear-gradient(90deg, rgba(17,17,17,.74) 0%, rgba(17,17,17,.30) 55%, rgba(17,17,17,.08) 100%);
}
.story-hero__content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(54px, 8vw, 92px);
}
.story-kicker {
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .72;
}
.story-hero h1 {
  margin: 0 0 20px;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.06em;
}
.story-deck {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.8vw, 38px);
  line-height: 1.14;
  letter-spacing: -.035em;
  color: rgba(245,244,241,.9);
}
.story-meta {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--granite-dark);
}
.story-meta span { border-top: 1px solid var(--line); padding-top: 12px; }
.story-article {
  width: min(720px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(76px, 10vw, 126px);
}
.story-article p {
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
  color: #171715;
}
.story-article p.lede {
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.22;
  letter-spacing: -.035em;
  color: var(--black);
  margin-bottom: 34px;
}
.story-figure {
  margin: clamp(46px, 7vw, 76px) 0;
}
.story-figure img,
.story-figure picture { display: block; width: 100%; }
.story-figure img {
  height: auto;
  border-radius: 2px;
  box-shadow: 0 26px 90px rgba(17,17,17,.13);
}
.story-figure figcaption,
.story-now__figure figcaption {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 2px solid var(--blue-grey);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--granite-dark);
}
.story-figure--wide {
  width: min(1080px, calc(100vw - 56px));
  margin-left: 50%;
  transform: translateX(-50%);
}
.story-pullquote {
  width: min(1020px, calc(100vw - 56px));
  margin: clamp(52px, 7vw, 78px) 0 clamp(48px, 6vw, 70px) 50%;
  transform: translateX(-50%);
  padding: clamp(30px, 5vw, 54px) clamp(28px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
  text-align: center;
  color: var(--black);
}
.story-now {
  width: min(1040px, calc(100vw - 56px));
  margin: clamp(64px, 8vw, 104px) 0 clamp(48px, 7vw, 86px) 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.story-now__copy { max-width: 660px; }
.story-now__figure { margin: 0; }
.story-now__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(17,17,17,.14);
  filter: saturate(.9) contrast(.98) brightness(.97);
}
.story-end-card {
  width: min(980px, calc(100vw - 56px));
  margin: clamp(70px, 9vw, 112px) 0 32px 50%;
  transform: translateX(-50%);
  padding: clamp(42px, 7vw, 82px) clamp(28px, 7vw, 90px);
  background: var(--black);
  color: var(--salt);
  text-align: center;
  border-radius: 2px;
}
.story-end-card h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 600;
}
.story-end-card p {
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(245,244,241,.78);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.58;
}
.story-end-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid rgba(245,244,241,.9);
  color: var(--salt);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  border-radius: 3px;
}
.story-end-card__button:hover { background: var(--salt); color: var(--black); }
.medical-note {
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--granite-dark) !important;
}
@media (max-width: 760px) {
  .story-hero { min-height: 76vh; }
  .story-hero__content,
  .story-meta,
  .story-article { width: min(100% - 34px, 680px); }
  .story-hero h1 { font-size: clamp(48px, 14vw, 82px); }
  .story-deck { font-size: 23px; }
  .story-article p { font-size: 17px; line-height: 1.68; }
  .story-figure--wide,
  .story-pullquote,
  .story-end-card { width: calc(100vw - 34px); }
  .story-pullquote { font-size: clamp(34px, 12vw, 58px); }
  .story-now { grid-template-columns: 1fr; width: min(760px, calc(100vw - 34px)); }
  .story-now__figure { max-width: 420px; margin: 0 auto; }
}
