/* 연수 포스터 */

/* 헤더 메뉴 항목 */
.headerMenu1 {
  color: var(--mainColor);
}

.headerMenu1 > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}
.headerMenu1:hover > span {
  color: var(--mainColor) !important;
  border-bottom: 3px solid var(--mainColor);
}

.headerMenu1 .subMenuLi1 > .subMenuDiv {
  background-color: var(--mainColor);
  color:var(--whiteColor);
}
.headerMenu1 .subMenuLi1 .subMenuUl > li:first-child > a {
  color: var(--mainColor);
}

/* 메뉴 항목 */
.asideMenu > li:first-child > span {
  background-color: var(--anColor);
}

.asideMenu > li:first-child > .asideSubMenu > li:first-child > a {
  color: var(--mainColor);
}
.asideMenu > li:first-child > .asideSubMenu > li:first-child > a::before {
  color: var(--mainColor);
}

/* 모바일 사이드 메뉴 */
.sideNav > li:first-child .sideSubNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi1 .sideInnerNav {
  display: flex;
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi1 > .sideSubNavTop {
  background-color: var(--subColor);
  color: var(--mainColor);
}
.sideNav > li:first-child .sideSubNav > .sideSubNavLi1 .sideInnerNav > li:first-child > a {
  color: var(--mainColor);
}


.pageContents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}


.listPoster {
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  overflow-y: scroll;
}
.listPoster::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 10px;
}
.listPoster::-webkit-scrollbar-thumb {
  background-color: #7426D5;
  border-radius: 50px;
}

.listPoster > img {
  width: 70%;
  height: fit-content;
}

/* 버튼 */
.pageBottomBtns {
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: var(--whiteColor);
  bottom: -90px;
  background-color: var(--backColor);
}


/* 자세히보기 버튼 */
.viewMoreIcon {
  width: 24px;
  height: 24px;
  margin: 0 0 0 3px;
}
.viewMoreBtn {
  width: 200px;
  height: 45px;
  background-color: white;
  border: 1px dashed var(--mainColor);
  color: var(--mainColor);
  font-weight: 600;
}
.viewMoreBtn:hover {
  background-color: var(--subColor);
}

/* 반응형 */
@media screen and (max-width: 1200px) {
  .viewMoreBtn {
    width: 180px;
    height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width: 800px) {
  .viewMoreBtn {
    width: 160px;
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .listPoster {
    height: 400px;
  }

  .pageBottomBtns {
    min-height: 80px;
    bottom: -80px;
    padding: 0 10px;
  }

  .viewMoreBtn {
    height: 40px;
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
  }

  .viewMoreIcon {
    display: none;
  }
  
  .listPoster::-webkit-scrollbar {
    width: 6px;
  }
}

@media screen and (max-width: 500px) {
  .listPoster {
    height: 350px;
  }
  .listPoster img {
    width: 90%;
  }
  .pageBottomBtns {
    height: 60px;
    bottom: -60px;
  }
}