.hero {
  height: 75vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
}

.hero-bg {
  object-fit: cover;
  height: 100%;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
}

.hero-content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
}

.hero-content > h1 {
  font-size: 3rem;
}

.hero-content > h2 {
  margin-top: 35px;
  font-size: 2.8rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: .2;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--tblr-primary, #206bc4);
  transform: scale(1.1);
  opacity: 1;
}
