.jh-about-story {
  width: min(var(--jh-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.jh-about-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.jh-about-chapter:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.jh-about-chapter:nth-child(even) .jh-about-media {
  order: 2;
}

.jh-about-chapter:nth-child(even) .jh-about-copy {
  order: 1;
}

.jh-about-media {
  position: relative;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--jh-shadow);
}

.jh-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jh-about-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px 0;
}

.jh-about-title {
  margin: 0;
  font-family: var(--jh-font-display);
  font-size: clamp(2rem, 4vw, 4.7rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.jh-about-copy p {
  margin: 0;
  font-size: clamp(1rem, 1rem + 0.34vw, 1.18rem);
}

.jh-about-cta {
  font-family: var(--jh-font-display);
  font-size: clamp(1rem, 1rem + 0.28vw, 1.2rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.jh-about-cta-wrap {
  text-align: center;
}

.jh-about-cta-wrap .jh-about-cta {
  display: inline-block;
}

.jh-about-inline-link {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 860px) {
  .jh-about-chapter,
  .jh-about-chapter:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .jh-about-chapter:nth-child(even) .jh-about-media,
  .jh-about-chapter:nth-child(even) .jh-about-copy {
    order: initial;
  }

  .jh-about-media {
    position: relative;
    top: 0;
    height: auto;
  }

  .jh-about-media img {
    aspect-ratio: 4 / 5;
  }
}
