.swiper-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0 60px;
}

.swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 340px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 15, 13, 0.15) 10%, rgba(17, 15, 13, 0.8) 90%);
  display: none;
  color: #ffffff;
  text-align: center;
}

.shadow span {
  font-family: "Chiron GoRound TC", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .swiper-slide {
    width: 280px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: 220px;
    height: 320px;
  }

  .shadow span {
    font-size: 1.4rem;
  }
}
