.section-4-wrapper {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 160px;

  /* typography */
  text-align: center;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 60px;
  }
}

.section-4-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* responsive */
  @media screen and (max-width: 860px) {
    /* margin-top: 40px; */
  }
}

.section-4-title {
  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-4-subtitle {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 12px;

    font-size: 14px;
    line-height: 22px;
  }
}

.section-4-subtitle-bold {
  /* typography */
  color: var(--Black-Text, #343434);
  font-weight: 700;
}

/* carousel */

[data-swiper="2"] .swiper {
  /* layout */
  height: 440px;
}

.section-4-carousel-wrapper {
  /* layout */
  margin-top: 60px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: auto;
  margin-left: auto;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 30px;
  }
}

.section-4-swiper-slide-content {
  /* layout */
  width: 260px;
  height: 380px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  align-items: flex-start;
  margin: auto;

  /* style */
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 260px;
    height: 320px;
    padding: 20px;
  }
}

.swiper-slide-title {
  /* typography */
  color: #343434;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 18px;
  }
}

.swiper-slide-subtitle {
  /* layout */
  margin-top: 4px;

  /* typography */
  color: #505050;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 14px;
  }
}

.swiper-slide-score-wrapper {
  /* layout */
  margin-top: 3px;
  margin-left: 8px;

  /* typography */
  color: #1c8ff8;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 3px;
    font-size: 16px;
  }
}

.swiper-slide-description {
  /* layout */
  margin-top: 24px;
  height: auto;
  max-height: 220px;
  max-width: 260px;

  /* typography */
  color: #505050;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }
}

.swiper-slide-date {
  /* layout */
  margin-top: auto;

  /* typography */
  color: #a0a0a0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 14px;
  }
}

.section-4-swiper {
  display: flex;
  flex-direction: row;
}

.custom-prev-btn,
.custom-next-btn {
  /* layout */
  width: fit-content;
}

.custom-prev-btn {
  left: -40px; /* Adjust based on spacing */
}

.custom-next-btn {
  right: -40px; /* Adjust based on spacing */
}

.carousel-wrapper-pc {
  width: 100%;

  /* responsive */
  @media screen and (max-width: 1600px) {
    /* display: none; */
  }
}

.carousel-wrapper-mobile {
  width: 100%;
  display: none;

  /* responsive */
  @media screen and (max-width: 1600px) {
    display: block;
  }
}

.swiper-wrapper {
  display: flex;
  max-width: 1450px;
  height: 460px !important;
  box-sizing: border-box;

  /* responsive */
  @media screen and (max-width: 1600px) {
    max-width: 343px;
  }

  /* responsive */
  @media screen and (max-width: 860px) {
    height: 380px !important;
  }
}

.swiper-navigation-btn {
  /* style */
  position: relative;
  -webkit-filter: drop-shadow(0px 8px 20px 0px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 8px 20px 0px rgba(0, 0, 0, 0.05));
  cursor: pointer;
  margin-left: 25px;
  margin-right: 25px;
  z-index: 99;

  /* responsive */
  @media screen and (max-width: 860px) {
    display: none;
  }
}

.swiper-navigation-btn-mobile {
  /* style */
  position: absolute;
  -webkit-filter: drop-shadow(0px 8px 20px 0px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(0px 8px 20px 0px rgba(0, 0, 0, 0.05));
  cursor: pointer;
  margin-left: 25px;
  margin-right: 25px;
  display: none;
  z-index: 99;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-left: 0px;
    margin-right: 0px;
    display: block;
  }
}

#swiper-navigation-prev {
  transform: translate(15px, 0px);

  /* responsive */
  @media screen and (max-width: 860px) {
    transform: translate(0px, 0px);
    left: 10px;
  }
}

#swiper-navigation-next {
  transform: translate(-15px, 0px);

  /* responsive */
  @media screen and (max-width: 860px) {
    transform: translate(0px, 0px);
    right: 10px;
  }
}

.custom-pagination {
  /* layout */
  margin-top: 48px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 5px;
  }
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  margin-left: 3px !important;
  margin-right: 3px !important;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
}

.swiper-pagination-bullet-active {
  height: 6px;
  min-width: 14px;
  width: 100%;
  border-radius: 8px !important;
}

.swiper-slide-img-wrapper {
  /* layout */
  display: flex;
  flex-direction: row;
  margin-top: 16px;
  align-items: center;
  column-gap: 4px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 12px;
  }
}

.swiper-slide-image {
  /* layout */
  width: 26px;
  height: 26px;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 20px;
    height: 20px;
  }
}
