.swiper-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: none;
  user-select: none;
}

.swiper-slide {
  height: 100%;
  width: 100%;
  border: none;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.swiper-container-description {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: none;
  user-select: none;
  position: relative;
}

.carousel-description-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.carousel-description {
  height: 50%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}

.carousel-description h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-normal);
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.carousel-description p {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 0;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  max-width: none;
}

/* Responsive carousel typography */
@media (max-width: 768px) {
  .carousel-description {
    padding: 1rem;
  }

  .carousel-description h2 {
    font-size: var(--font-size-xl);
  }

  .carousel-description p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
  }
}

@media (max-width: 480px) {
  .carousel-description {
    padding: 0.75rem;
  }

  .carousel-description h2 {
    font-size: var(--font-size-lg);
  }

  .carousel-description p {
    font-size: var(--font-size-xs);
  }
}

/* Swiper navigation and pagination improvements */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--font-size-base) !important;
  font-weight: var(--font-weight-bold);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.7) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    margin-top: -18px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: var(--font-size-sm) !important;
  }
}
