/**
 * Hamisu full-image carousel.
 *
 * All three campaign banners are 1600 x 800. Keeping the carousel at the
 * same 2:1 ratio lets every edge of each supplied banner remain visible.
 */
.hamisu-carousel {
  aspect-ratio: 2 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.hamisu-slide > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (min-width: 641px) and (max-width: 900px) {
  .hamisu-slide-copy {
    left: clamp(44px, 7vw, 72px) !important;
    width: 48vw !important;
  }

  .hamisu-slide-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 6.5vw, 4rem);
  }
}

/*
 * On phones the complete banner remains full width above the copy. This is
 * preferable to shrinking the type over a very short 2:1 image or cropping
 * the product photography again.
 */
@media (max-width: 640px) {
  .hamisu-carousel {
    aspect-ratio: auto !important;
    height: calc(50vw + 320px) !important;
    min-height: 540px !important;
    background: var(--hamisu-blush) !important;
  }

  .hamisu-slide {
    display: flex;
    flex-direction: column;
  }

  .hamisu-slide > img {
    position: static;
    flex: 0 0 auto;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 2 / 1;
  }

  .hamisu-slide-copy {
    position: static !important;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100% !important;
    margin: 0;
    padding: 30px 58px 58px !important;
    color: var(--hamisu-white) !important;
    background: #25100c !important;
    transform: none !important;
    backdrop-filter: none !important;
  }

  .hamisu-slide--honey .hamisu-slide-copy {
    background: #29301f !important;
  }

  .hamisu-slide--candles .hamisu-slide-copy {
    color: var(--hamisu-ink) !important;
    background: var(--hamisu-blush) !important;
  }

  .hamisu-slide-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 12vw, 3.35rem) !important;
    line-height: 0.98;
  }

  .hamisu-slide-copy .hamisu-kicker,
  .hamisu-slide-copy .hamisu-text-link--light {
    color: var(--hamisu-white) !important;
  }

  .hamisu-slide--candles .hamisu-kicker,
  .hamisu-slide--candles .hamisu-text-link--light {
    color: var(--hamisu-brick) !important;
  }

  .hamisu-carousel-arrow {
    top: 25vw !important;
  }

  .hamisu-carousel-dots {
    bottom: 22px;
  }
}
