.oa-image-banner {
  position: relative;
  overflow: hidden;
  background: #00171c;
  color: var(--oa-text-white);
}
.oa-image-banner * { box-sizing: border-box; }

.oa-image-banner-slider {
  --oa-image-banner-height: 720px;
  position: relative;
  height: var(--oa-image-banner-height);
}
.oa-image-banner-slider .swiper,
.oa-image-banner-slider .swiper-wrapper,
.oa-image-banner-slider .swiper-slide {
  height: 100%;
}

.oa-image-banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.oa-image-banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oa-image-banner-overlay {
  position: absolute;
  inset: 0;
  opacity: .45;
  background:
    linear-gradient(180deg, rgba(0, 10, 13, .75) 0%, rgba(0, 10, 13, .15) 26%, rgba(0, 10, 13, 0) 55%, rgba(0, 10, 13, .5) 100%);
  pointer-events: none;
}
.oa-image-banner-slide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.oa-image-banner-pagination {
  position: absolute;
  z-index: 5;
  right: var(--oa-content-padding);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oa-image-banner-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(230, 232, 234, .45);
  opacity: 1;
  cursor: pointer;
  transition: background-color .2s ease, width .2s ease, border-radius .2s ease;
}
.oa-image-banner-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 3px;
  background: var(--oa-text-white);
}

@media (max-width: 900px) {
  .oa-image-banner-slider { height: min(var(--oa-image-banner-height), 640px); }
}
@media (max-width: 640px) {
  .oa-image-banner-pagination { right: var(--oa-content-padding); bottom: 18px; }
}
