.clubs-swiper {
  width: 100%;
  padding: 2rem 0;
}
.clubs-swiper .swiper-slide {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.clubs-swiper .swiper-slide:hover .slide-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.clubs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clubs-swiper .slide-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  transition: background 0.3s ease;
}
.clubs-swiper .slide-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: Georgia, serif;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .clubs-swiper .swiper-slide {
    height: 400px;
  }
  .clubs-swiper .slide-title {
    font-size: 1.7rem;
  }
  .clubs-swiper .swiper-button-next,
  .clubs-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .clubs-swiper .swiper-button-next:after,
  .clubs-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=clubs.css.map */