.board__page {
  padding-top: 4rem;
}

.board__info {
  color: var(--color_desc);
  padding-bottom: 1rem;
}

.b__list__header,
.b__list__inline li a {
  display: grid;
  grid-template-columns: 6rem 14rem 2fr 1fr 9rem;
  align-items: center;
}

.b__list__header {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: #f9f9f9;
  color: #999;
  font-family: var(--font_family_bold);
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.b__list__header > span {
  text-align: center;
}

.b__list__header > span:nth-child(2) {
  text-align: left;
}

.b__list__header > span:last-child {
  text-align: right;
}



.b__list__box {
  position: relative;
}

.b__list__inline li a {
  position: relative;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #efefef;
  color: var(--color_title);
  transition: .4s;
  z-index: 1;
  background: var(--box_bg);
}


.b__list__inline li a:hover {
  color: var(--color_pmy);
  box-shadow: 0 20px 16px rgb(227 230 236 / 60%);
}

.b__list__inline li:last-child a {
  border-bottom: 2px solid #efefef
}

.no__data {
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 2px solid #efefef;
  color: var(--color_desc);
}


/* DEBUG: 공지사항(고정글) */

.b__list__inline li .row__notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_pmy);
  opacity: .032;
  z-index: -1;
}


.sort__img > .new {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  background: #ff6681;
  border-radius: 50%;
  opacity: 0;
  animation: new 2s linear infinite;
}
@keyframes new {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



.row__seq {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color_desc)
}


.cate {
  justify-content: center;
}

.cate > p {
  justify-content: center;
  padding: .5rem 0;
  font-size: 1.3rem;
  border-radius: .5rem;
}






.title img {
  height: 1.3rem;
}

.title > div {
  font-size: 1.1rem;
  color: var(--color_desc);
}

.title > div > p {
  position: relative;
  padding: 0 1rem;
}

.title > div > p::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: .1rem;
  height: .7rem;
  background: #e1e1e1
}

.title > div > p:nth-child(1) {
  padding-left: 0;
}

.title > div > p:nth-child(1)::after {
  padding-left: 0;
  background: none;
}


.author {
  justify-content: center;
}



.reg__date {
  text-align: right;
}

.state {
  justify-content: flex-end;
}

.state__box {
  width: 7rem;
  padding: .7rem 0;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 2em;
}



.state__m {
  font-size: 1rem;
}

.state__m > span {
  padding: 0 .3rem;
}


.state01 {background: #a3d5bc}
.state02 {background: #b18ec4}
.state03 {background: #9393ed}
.state04 {background: #71d191}
.state05 {background: #978488}
.state06 {background: #6d9ddd}
.state07 {background: #844f8c}





/* DEBUG: 리스트 블라인드 */

.blind__wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}




/* DEBUG: 페이징  */

.paging_box {
  justify-content: center;
  width: 100%;
  margin-top: 5rem;
  font-size: 1.5rem;

}

.page_box {
  padding: 1rem;
  /* box-shadow: 0 2px 8px rgb(227 230 236 / 65%); */
  border-radius: 2em;
}

.page_box > .only_num {
  padding: 1rem 1.2rem;
  border-bottom: 2px solid transparent;
  color: var(--color_title);
  transition: .2s;
}

.page_box > a.selected {
  color: var(--color_pmy);
  border-color: var(--color_pmy);
}

.page_box > a:hover {
  border-color: #e1e1e1;
}

.arrowLeft > i,
.arrowRight > i {
  padding: 1rem;
  margin-right: 1rem;
  color: var(--color_title);
  /* border: 1px solid #eee; */
  border-radius: 2rem;
  background: #f9f9f9
}

.arrowRight > i {
  margin: 0;
  margin-left: 1rem;
}




.v840,
.v640,
.v440 {
  display: none;
}




/* DEBUG: 글쓰기 버튼 */

.board__btns {
  justify-content: flex-end;
  padding-top: 2rem;
}

.board__btns > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #fff;
  background: var(--color_pmy);
  border-radius: 2em;
}













@media all and (max-width: 840px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 2fr 1fr 9rem;
    align-items: center;
  }

  .h840 {
    display: none;
  }

  .v840 {
    display: inherit;
  }
}

@media all and (max-width: 640px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .b__list__header > span {
    text-align: left;
  }

  .title > div {
    padding-top: 1.2rem;
  }

  .admin {
    font-size: 1rem;
    padding: .3rem .6rem;
    background: var(--color_pmy);
    color: #fff;
    border-radius: 2em;
    z-index: 2;
    overflow: hidden;
  }

  .board__btns {
    position: fixed;
    bottom: 3rem;
    right: 1.5rem;
    justify-content: flex-end;
    z-index: 9;
  }

  .board__btns > a {
    font-family: var(--font_family_bold);
    box-shadow: 0 2px 6px 0 rgba(60,64,67,0.15)
  }



  .h640 {
    display: none;
  }

  .v640 {
    display: inherit;
  }
}

@media all and (max-width: 440px) {
  .b__list__header,
  .b__list__inline li a {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 1.5rem 1rem;
  }

  .b__list__header {
    background: none;
    border-top: 0;
  }

  .h440 {
    display: none;
  }

  .v440{
    display: inherit;
  }

  .sort__img {
    width: 4.3rem;
  }

  .state__box {
    width: 4.3rem;
    padding: .3rem 0;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font_family_bold);
    border-radius: .3rem;
    z-index: 1;
  }
}
