.photo-carousel {
  aspect-ratio: 1/1.3;
  max-height: none;
  position: relative;
  overflow: hidden;
}
.photo-carousel .carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  background: #fffc;
  color: #123;
  font-size: 28px;
  transition:
    transform 120ms ease,
    background 120ms ease;
}
.photo-carousel button:active {
  transform: translateY(-50%) scale(0.9);
  background: var(--green);
  color: #fff;
}
.carousel-prev {
  left: 14px;
}
.carousel-next {
  right: 14px;
}
.carousel-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  background: #0009;
  color: #fff;
  border-radius: 12px;
  padding: 5px 9px;
  font-size: 11px;
}
