section {
  color: #fff;
  max-width: 1665px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.artist_title {
  padding: 300px 0 120px;
  text-align: left;
}

.artist_title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 40px;
}

.artist_title p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  word-break: keep-all;
}

.artist_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 25px;
}

.artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.artist img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.artist_info {
  color: #fff;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.artist_info a {
  cursor: pointer;
}

.artist_info a img {
  cursor: pointer;
  aspect-ratio: 4/4;
}

.info_text {
  text-align: left;
}

.info_text h3 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: normal;
}

.info_text p {
  font-size: 14px;
  opacity: 0.4;
}

.filter {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.filter .filter-btn {
  font-size: 15px;
  border: none;
  background: transparent;
  color: #fff;
  opacity: 30%;
  margin: 0 3px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  border-bottom: 1px transparent solid;
}

.filter .filter-btn:first-child {
  margin-right: 10px;
}

.filter .filter-btn:hover {
  opacity: 100%;
}

.filter .filter-btn.on {
  opacity: 100%;
  text-decoration: dashed;
  border-bottom: 1px #fff solid;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.pagination .page-btn {
  font-size: 20px;
  line-height: 15px;
  font-family: "Sweet Sans Pro", sans-serif;
  text-decoration: none;
  color: #fff;
  background: transparent;
  opacity: 30%;
  margin: 0 3px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  border-bottom: 1px transparent solid;
}

.pagination .page-btn:hover {
  opacity: 100%;
}

.pagination .page-btn.on {
  opacity: 100%;
  text-decoration: dashed;
  border-bottom: 1px #fff solid;
}

.view {
  padding: 300px 0 0;
  overflow: hidden;
}

.view h2 {
  font-weight: bold;
}

.view h2,
.view p {
  margin-bottom: 1em;
}

.show {
  margin-bottom: 2em !important;
}

.view .artist_box {
  margin-bottom: 50px;
}

.link {
  text-align: center;
}

.link a {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 42px;
  padding: 0 20px;
  color: #ff00ce;
  background-color: #fff;
  font-weight: normal;
}

.link a img {
  vertical-align: middle;
  margin-left: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  top: var(--swiper-navigation-top-offset, 55%) !important;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -70px) !important;
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -70px) !important;
}

.swiper-wrapper {
  box-sizing: border-box !important;
}

.swiper-slide {
  width: calc(100% / 4) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0 !important;
}

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.modal .navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.modal .prev {
  left: 20px;
}

.modal .next {
  right: 20px;
}

.footer {
  padding: 150px 0 200px;
}

.footer p {
  font-size: 13px;
  color: #c4c4c4;
}

@media (max-width: 1024px) {
  section {
    padding: 0 20px;
  }

  .artist_box {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .banner_text {
    display: none;
  }

  .artist_title {
    padding: 150px 0 80px;
  }

  .artist_title h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .artist_title p {
    font-size: 18px;
    line-height: 28px;
  }

  .artist_box {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 15px;
  }

  .info_text h3 {
    font-size: 14px;
  }

  .info_text p {
    font-size: 11px;
  }

  .artist_info img {
    max-width: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .swiper-slide {
    width: calc(100% / 2) !important;
  }

  .footer {
    padding: 120px 0 150px;
  }
}
