.carousel-wrapper {
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding-bottom: 3rem;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.slide-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.slide-content {
  padding: 30px 40px 40px;
  text-align: left;
}

.slide-category {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.slide-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #333;
  font-style: italic;
}

.slide-date {
  font-size: 16px;
  color: #888;
  margin-bottom: 20px;
  font-weight: 300;
}

.slide-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.navigation-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .slide-image {
    height: 300px;
  }

  .slide-content {
    padding: 20px 25px 30px;
  }

  .slide-title {
    font-size: 22px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
