.hero-photo {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 520px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgb(4 23 46 / 92%));
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}

.hero-photo figcaption span:first-child {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-photo figcaption span:last-child {
  color: #d8ebf3;
  font-size: .86rem;
  text-align: right;
}

@media (max-width: 760px) {
  .hero-photo,
  .hero-photo img {
    height: 390px;
    min-height: 390px;
  }

  .hero-photo figcaption {
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-photo figcaption span:last-child {
    text-align: left;
  }
}
