.swiper-coverflow-carousel-container {
  overflow: hidden;
}

@media only screen and (min-width: 930px) and (max-width: 1360px) {
  .swiper-section {
    max-width: 500px !important;
  }
}

@media only screen and (min-width: 1199px) {
  .swiper-coverflow-carousel-container {
    flex-direction: column;
  }

  .swiper-section {
    max-width: 400px;
  }

  .swiper-slide {
    width: 100%;
  }
}


.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}


.swiper-slide {
  width: 500px;
  height: 300px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.85);
  transition: transform 0.3s;
}

@media only screen and (min-width: 930px) {
  #swiper-coverflow-carousel {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
  }

  .swiper-coverflow-carousel-container {
    display: flex;
    gap: 6rem;
    margin: 0 auto;
    align-items: center;
    padding: 0 2rem;
    flex-direction: row-reverse;
  }


  .swiper-section {
    flex: 1;
    max-width: 800px;
    position: relative;
  }

  .swiper-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
  }

  .swiper-coverflow-content-section {
    flex: 1;
  }

  .swiper {
    width: 100%;
    height: 400px;
    padding: 50px 0;
  }

  .swiper-slide-active {
    transform: scale(1);
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
  }

  .swiper-item-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .swiper-item-title {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s;
    margin-top: 1rem;
  }

  .swiper-item-title:hover {
    transform: translateX(-10px);
  }

  .swiper-coverflow-content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .swiper-coverflow-content-wrapper.active {
    opacity: 1;
    transform: translateY(0);
  }
}