/* =====================================================
   PROMO LISTINGS — CSS
   ===================================================== */

.promo-listings-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  font-family: inherit;
}

/* --- Row layout: slider left, info right --- */
.promo-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #FFAE62;
}
.promo-row:first-child {
  border-top: 1px solid #FFAE62;
}

/* --- Left column: slider --- */
.promo-slider-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.promo-location {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 10px 0;
}

.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.promo-slides {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide {
  min-width: 100%;
}

.promo-slide img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Dots — no background */
.promo-dots {
  display: flex;
  gap: 7px;
  padding: 10px 0 0 2px;
  background: none;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.promo-dot.active {
  background: #1a1a1a;
}

/* --- Right column: stacks vertically --- */
.promo-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-top: 27px;
}

/* Top row: badge left, logo right */
.promo-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.promo-badge-img {
  flex: 0 0 auto;
}

.promo-badge-img img {
  display: block;
  width: 160px;
  height: auto;
  object-fit: contain;
}

.promo-brand {
  flex: 1;
  text-align: right;
}

.promo-brand-logo {
  max-height: 120px;
  max-width: 220px;
  object-fit: contain;
}

.promo-brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}

/* Bottom: perks + CTA */
.promo-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Perks */
.promo-perks {
  margin: 0 0 0 auto;
  padding: 0;
  color: #333;
  line-height: 1.8;
  text-align: right;
  max-width: 300px;
  font-weight: 700;
}

/* CTA */
.promo-cta {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #202859;
  line-height: 1;
  text-align: right;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.promo-cta strong {
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1;
}

/* --- Responsive: 1024px --- */
@media (max-width: 1024px) {
  .promo-badge-img img {
    width: 120px;
  }

  .promo-brand-logo {
    max-height: 90px;
    max-width: 160px;
  }

  .promo-row {
    gap: 24px;
  }
}

/* --- Responsive: 900px --- */
@media (max-width: 900px) {
  .promo-slider-col {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .promo-badge-img img {
    width: 90px;
  }

  .promo-brand-logo {
    max-height: 70px;
    max-width: 130px;
  }

  .promo-slide img {
    height: 220px;
  }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
  .promo-row {
    flex-direction: column;
    gap: 20px;
  }

  .promo-slider-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .promo-slide img {
    height: 240px;
  }

  .promo-info-col {
    padding-top: 0;
    align-items: stretch;
  }

  .promo-top-row {
    justify-content: center;
    gap: 16px;
  }

  .promo-badge-img img {
    width: 100px;
  }

  .promo-brand {
    text-align: center;
  }

  .promo-brand-logo {
    max-height: 80px;
    max-width: 160px;
  }

  .promo-details {
    align-items: center;
  }

  .promo-perks {
    text-align: center;
    margin: 0 auto;
  }

  .promo-cta {
    justify-content: center;
    text-align: center;
  }
}
