.hero-photo-card {
  height: auto;
  padding: 0;
  overflow: hidden;
  background: #0d2d20;
  box-shadow: var(--shadow);
}

.hero-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161814;
}

.hero-photo-wrap img {
display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.hero-photo-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 23px;
  background: var(--green);
}

.hero-photo-caption small,
.hero-photo-caption strong {
  display: block;
}

.hero-photo-caption small {
  color: #c7ad78;
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  margin-top: 2px;
  font: 700 21px "Cormorant Garamond";
}

.hero-photo-caption .mini-link {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-photo-card {
    width: min(560px, 100%);
    height: auto;
    margin: auto;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .hero-photo-card {
    height: auto;
    padding: 0;
  }

  .hero-photo-caption {
    padding: 17px 15px;
  }

  .hero-photo-caption strong {
    font-size: 18px;
  }

  .hero-photo-caption .mini-link {
    font-size: 10px;
  }
}
