/* Let the complete photographs sit alongside the story, with captions outside. */
.experience-photo {
  min-width: 0;
}

.experience-photo picture {
  display: block;
}

.experience-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.experience-photo figcaption {
  margin-top: 16px;
  color: #3d454d;
  font-size: 13px;
  line-height: 1.8;
}

.program-experience {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 7%;
  margin-top: clamp(24px, 4vw, 56px);
}

.program-experience-copy {
  min-width: 0;
}

.program-experience-copy .eyebrow {
  margin-bottom: 22px;
  font-size: 16px;
}

.experience-copy-title {
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.program-experience-copy .body-copy {
  margin-top: 26px;
}

.experience-photo-band {
  width: 100%;
  margin-top: clamp(56px, 7vw, 100px);
}

@media (max-width: 800px) {
  .program-experience {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-top: 28px;
  }

  .program-experience-copy {
    max-width: 600px;
  }

  .experience-photo-band {
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .experience-photo figcaption {
    margin-top: 14px;
    font-size: 12px;
  }

  .program-experience {
    gap: 28px;
    margin-top: 18px;
  }

  .program-experience-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .experience-copy-title {
    font-size: 26px;
  }

  .program-experience-copy .body-copy {
    margin-top: 22px;
  }

  .experience-photo-band {
    margin-top: 36px;
  }
}
