.carousel {
  display: block;
}

.slide {
  display: none;
}

.slide.is-active {
  display: block;
}

.image-panel {
  margin: 0;
}

.image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f2eeea;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.image-frame.landscape {
  min-height: 420px;
}

.image-frame.portrait {
  min-height: 520px;
}

.image-frame img {
  width: auto;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  object-position: center top;
}

figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
}

figcaption strong {
  font-size: 1rem;
}

.dots {
  justify-content: center;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .image-frame.landscape {
    min-height: 260px;
  }

  .image-frame.portrait {
    min-height: 360px;
  }
}
