/*-------------------------게시판 공통 CSS---------------------*/
.container{
    background-color:#FCFCF1 ;
    position:relative;
}
main{
    position:relative;
}
p{
    word-break: keep-all;
  }
section{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding:100px 150px;
    width: 80%;
    min-width: 1100px;
    margin:0 auto;
    position:relative;
}
/* 뒤로가기 화살표 */
.backArrow{
    position: absolute;
    left:0px;
    width: 20px;
    transform: rotateY(180deg);
}
/* 페이지 타이틀 자리 */
section .textBox{
    font-size: 20px;
    text-align: center;
    margin-bottom:50px;
    width: 100%;
    min-width:1000px;
}
/* 타이틀 아래 감싸는 div*/
.commuCont{
    display: flex;
    flex-flow: row wrap; /*wrap으로 해놔야 페이지네이션 아래로 감*/
    align-items: flex-start;
    justify-content: center;
    gap:0 30px;
    width: 100%;
    min-width: 1000px;
}
/* 게시판 메뉴 (좌측) */
aside{
    flex:1;
    height: 300px;
    background-color: var(--black01);
    border-radius: 10px 30px 10px 30px;
    padding:30px 0;
    color:#fff;
}

aside li>a{
    text-align: center;
    display: block;
    padding:20px 30px;
    font-size: 20px;
    width: 100%;
    margin:0 auto;
}
aside li.active>a,
aside li.active>a:hover{
    color:var(--yellow02);
}
aside li>a:hover{
    color:var(--mint02)
}
/* 페이지 본문내용 */
.contentList{
    flex:4;
    width: 100%;
    border-radius: 30px;
    height: 100%;
    background-color: #EEEED6;
}
.contentList>ul{
    height: 100%;
}
/* 페이지네이션 */
.commuPagin{
    width: 100%;
    margin-top:80px;
    margin-left:20%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap:10px;
    color:#ABAB87;
}
.commuPagin>p{
    border-radius: 30px;
    width: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.commuPagin>.commuPages.active{
    background-color: var(--yellow02);
    color:var(--black01);
    font-weight: 600;
}
/* 페이지네이션 화살표 */
.commuPagin>svg{
    cursor: pointer;
}
/* 캐릭터 */
.charKnight{
    width:220px;
    position:absolute;
    bottom:0px;
    right:0;
}

@media screen and (max-width:1280px) {
    .charKnight{
        width:150px;
    }
}