/* Swiper */
.swiper-container {
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 50px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .swiper-container {
    padding: 15px 40px;
  }
}
@media screen and (max-width: 600px) {
  .swiper-container {
    padding: 10px 30px;
  }
}

.swiper-wrapper {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

.post-thumbnail-wrapper {
  position: relative;
}
.post-thumbnail-wrapper img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.post-thumbnail-wrapper img:hover {
  transform: translateY(-3px);
}

.swiper-slide {
  text-align: center;
}
.swiper-slide__title {
  background: transparent;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.5;
  max-width: 100%;
  min-height: 3em;
  padding: 0;
}
.swiper-slide__title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #fff;
  max-width: 100%;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: normal;
}

.swiper-button-next, .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  height: 44px;
  transition: background-color 0.2s ease;
  width: 44px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px;
  padding: 30px 10px;
}

.swiper-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  position: static;
}
.swiper-pagination__play-control {
  cursor: pointer;
}
.swiper-pagination__play-control::before {
  color: black;
  font-size: 20px;
  margin-right: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  width: auto;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}