/* 상세페이지 스와이퍼 */

.detail-swiper {
  aspect-ratio: 3/4;
  width: 50%;
  height: auto;
}

.detail-swiper .swiper-slide {
  background-image: url("../assets/images/paper-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: black;
  font-size: 40px;
  font-weight: 600;
}
.detail-swiper .swiper-slide .image-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  mix-blend-mode: multiply;
}
.detail-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: rgb(73, 73, 73);
  font-family: var(--font-point);
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 24px;
}
.detail-swiper .swiper-slide .modal-img {
  width: 100%;
  aspect-ratio: 3 / 4; /* 원하는 비율 */
  overflow: hidden;
  border-radius: 16px;
}

.detail-swiper .swiper-slide .modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-slide:nth-child(1n) {
  background-color: rgb(206, 17, 17);
}

.swiper-slide:nth-child(2n) {
  background-color: rgb(0, 140, 255);
}

.swiper-slide:nth-child(3n) {
  background-color: rgb(10, 184, 111);
}

.swiper-slide:nth-child(4n) {
  background-color: rgb(211, 122, 7);
}

.swiper-slide:nth-child(5n) {
  background-color: rgb(118, 163, 12);
}

.swiper-slide:nth-child(6n) {
  background-color: rgb(180, 10, 47);
}

.swiper-slide:nth-child(7n) {
  background-color: rgb(35, 99, 19);
}

.swiper-slide:nth-child(8n) {
  background-color: rgb(0, 68, 255);
}

.swiper-slide:nth-child(9n) {
  background-color: rgb(218, 12, 218);
}

.swiper-slide:nth-child(10n) {
  background-color: rgb(54, 94, 77);
}
