.ps-fallback-slider {
  position: relative;
  margin-bottom: 24px;
}

/* Swiper fills the section */
.ps-fallback-slider .ps-swiper {
  width: 100%;
}

.ps-fallback-slider .ps-slide-bg {
  position: relative;
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Dark overlay on each slide */
.ps-fallback-slider .ps-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.3);
}

/* Static content sits on top of the entire slider */
.ps-static-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  text-align: center;
  pointer-events: none; /* let swiper touch/drag pass through */
}

.ps-static-content h2 {
  margin: 0;
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -3px;
  font-family: inherit;
  color: #fff;
}

.ps-static-content .ps-buttons {
  display: flex;
  gap: 12px;
  pointer-events: all; /* re-enable clicks on buttons */
}

.ps-fallback-slider .ps-buttons .button {
  min-width: 170px;
  border-radius: 8px;
  background: #d2ba8b;
  border-color: #d2ba8b;
  font-family: inherit;
}

.ps-fallback-slider .swiper-pagination {
  z-index: 11;
}

.ps-fallback-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.65;
}

.ps-fallback-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 849px) {
  .ps-fallback-slider .ps-slide-bg {
    height: 280px;
  }

  .ps-static-content h2 {
    font-size: 42px;
  }

  .ps-fallback-slider .ps-buttons .button {
    min-width: 130px;
    font-size: 14px;
    line-height: 38px;
    min-height: 38px;
  }
}