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: 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;
  transition: transform 0.3s;
}

.artist img:hover {
  transform: scale(1.05);
}

.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: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;
}

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

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

/* 모달 스타일 */
.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;
}

@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: 15px;
  }

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

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

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

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

  .modal img {
    max-width: 70%;
    max-height: 70%;
  }
}
