#cardList {
  display: inline-block;
  height: auto;
  width: 100%;
}

/** phone-section */
#cardList .phone-section {
  width: calc(100% - 1200px);
}

#cardList .phone-section .ph_container {
  width: 320px;
  height: 100%;
  margin: 0 auto;
  padding-top: 64px;
}

#cardList .phone-section .ph_container .inr {
  height: 700px;
  border-radius: 32px;
  outline: 7px solid #333;
  overflow: hidden;
  box-shadow: 5px 5px 16px 5px rgba(0, 0, 0, 0.25);
}

#cardList .phone-section .ph_container .inr #view_wrap {
  width: 100%;
  height: 100%;
}

#invite_wrap {
  scrollbar-width: none;
  -ms-overflow-style: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

/* list-section */
#cardList .list-section {
  width: 1020px;
  margin: 70px auto;
  border: 0;
  background: #fff;
  height: auto;
  overflow: visible;
}

#cardList .cate-wrap {
  padding: 10px;
  border: 0;
  position: fixed;
  top: 10%;
  right: 10px;
  width: 180px;
  text-align: center;
  z-index: 9;
}

#cardList .cate-wrap span {
  font-size: 14px;
  color: var(--gray-600);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
  cursor: pointer;
  background: #fff;
}

#cardList .cate-wrap span i {
  vertical-align: middle;
}

#cardList .cate-wrap .cate-list {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

#cardList .cate-wrap .cate-list .cate-item {
  border-radius: 0;
  border: 0;
  background: #fff;
}

#cardList .cate-wrap .cate-list .cate-item a {
  color: var(--gray-500);
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 132%;
  font-family: var(--font-weight-400);
  cursor: pointer;
}

#cardList .cate-wrap .cate-list .cate-item.on a {
  background-color: var(--primary-000);
  color: var(--gray-900);
}

#cardList .list-section .list-container {
  width: 100%;
}

#cardList .list-section .list-container .list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

#cardList .list-section .list-container .list .list-item {
  padding: 0px;
  border-right: 0;
  border-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 1 calc((100% - 100px) / 3);
  width: 28%;
  margin-bottom: 50px;
}

#cardList .list-section .list-container .list .list-item:hover {
  transform: translateY(-8px);
}

#cardList .list-section .list-container .list .list-item .list-item-img {
  width: 100%;
  height: 520px;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #EFEFEF;
}

#cardList .list-section .list-container .list .list-item .list-item-img iframe {
  width: 100%;
  height: 100%;
}

#cardList .list-section .list-container .list .list-item .list-item-img img {
  width: 100%;
}

#cardList .list-section .list-container .list .list-item .btn-wrap {
  width: 100%;
  margin-top: 20px;
}

#cardList .list-section .list-container .list .list-item .btn-wrap .btn {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
}

#cardList .list-section .list-container .list .list-item .btn-wrap .btn a {
  display: block;
  padding: 12px 0;
  font-size: 12px;
  line-height: 122%;
  font-family: var(--font-weight-400);
  color: var(--gray-900);
  text-align: center;
  cursor: pointer;
}


.prev-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.prev-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}

.prev-box {
  width: 366px;
  height: 690px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

.prev-box iframe {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.prev-close {
  display: flex;
  justify-content: right;
  margin: 0px;
  position: absolute;
  top: -30px;
  right: -30px;
}

.prev-close i {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  #cardList {
    padding: 0;
  }

  #cardList .phone-section {
    display: none;
  }

  #cardList .list-section {
    width: 100%;
    border-left: none;
    margin: 0;
  }

  #cardList .list-section .list-container .list {
    display: inline-block;
    width: 100%;
  }

  #cardList .list-section .list-container .list .list-item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
  }

  #cardList .list-section .list-container .list .list-item .list-item-img {
    height: 610px;
  }
}

@media screen and (max-width: 767px) {
  #cardList .list-section .cate-wrap {}

  #cardList .list-section .list-container .list {
    display: inline-block;
    width: 100%;
  }

  #cardList .list-section .list-container .list .list-item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
  }

  #cardList .list-section .list-container .list .list-item .list-item-img {
    height: 610px;
  }

  .btn-naver {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }

  .prev-box {
    width: 85%;
    height: 90%;
  }

  .prev-close {
    top: 10px;
    right: 10px;
  }
}
