.photo-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 14px;
  background: #e7edff;
  box-shadow: 0 22px 60px rgb(39 71 181 / 12%);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(8 20 54 / 58%));
  content: "";
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.photo-card:hover img {
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.025);
}

.photo-card figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  padding-top: 12px;
  border-top: 1px solid rgb(255 255 255 / 52%);
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

@media (prefers-reduced-motion: reduce) {
  .photo-card img {
    transition: none;
  }
}
