.promo-rotator {
  clear: both;
  width: 720px;
  max-width: calc(100% - 24px);
  height: 120px;
  max-height: 120px;
  margin: 18px auto 12px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,0) 42%),
    linear-gradient(90deg, rgba(216,207,183,.08) 1px, transparent 1px),
    #40342d;
  border: 1px solid #5d1d19;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 14px 32px rgba(31, 14, 12, .26);
}

.promo-rotator--top {
  margin-top: -2px;
  margin-bottom: 18px;
}

.promo-rotator--middle,
.promo-rotator--lower {
  width: 720px;
  max-width: calc(100% - 24px);
}

.promo-rotator--lower {
  margin-top: 20px;
}

.promo-rotator__frame {
  position: relative;
  display: block;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background: #211918;
  border: 1px solid rgba(216,207,183,.24);
}

.promo-rotator__slide {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
  transform: scale(1.018);
}

.promo-rotator__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.promo-rotator__slide:focus-visible {
  outline: 2px solid #d8cfb7;
  outline-offset: -4px;
}

.promo-rotator__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-rotator__slide:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(25,13,11,.9), rgba(25,13,11,.42) 56%, rgba(25,13,11,.16)),
    linear-gradient(0deg, rgba(0,0,0,.22), rgba(255,255,255,0));
  pointer-events: none;
}

.promo-rotator__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: min(430px, 66%);
  min-height: 100%;
  padding: 14px 22px;
  box-sizing: border-box;
  text-shadow: 1px 1px 0 #260000, 0 2px 16px rgba(0,0,0,.38);
}

.promo-rotator__label {
  font-size: 12px;
  line-height: 1.2;
  color: #d8cfb7;
  text-transform: uppercase;
}

.promo-rotator__title {
  font-size: 21px;
  line-height: 1.08;
  color: #fff;
  font-weight: bold;
}

.promo-rotator__text {
  font-size: 13px;
  line-height: 1.32;
  color: #f0eadc;
}

.promo-rotator__dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.promo-rotator__dot {
  width: 8px;
  height: 8px;
  border: 1px solid #d8cfb7;
  background: #3b322c;
  transition: background-color 180ms ease, transform 180ms ease;
}

.promo-rotator__dot.is-active {
  background: #8e0000;
  transform: scale(1.18);
}

@media (max-width: 760px) {
  .promo-rotator,
  .promo-rotator--middle,
  .promo-rotator--lower {
    width: auto;
    max-width: calc(100% - 16px);
    height: 110px;
    max-height: 110px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .promo-rotator__copy {
    width: 78%;
    padding: 9px 11px;
  }

  .promo-rotator__title {
    font-size: 16px;
    line-height: 1.08;
  }

  .promo-rotator__label {
    font-size: 10px;
    line-height: 1.2;
  }

  .promo-rotator__text {
    font-size: 11px;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-rotator__slide {
    transition: none;
    transform: none;
  }
}
