/* gallery */
#boardBox #listBox .thumbnail-area {
  overflow: hidden;
  border-radius: 5px;
}
#boardBox #listBox .thumbnail-area .thumbnail {
  transform: scale(1);
  transition: 0.3s linear;
}
#boardBox #listBox .thumbnail-area .thumbnail:hover {
  transform: scale(1.1);
}
#boardBox #listBox .list-items {
  padding: 60px 0 0;
}
#boardBox #listBox .thumbnail {
  height: 15vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.25s all;
}
#boardBox #listBox .list-items > div {
  width: 100%;
  margin: 0 0 5% 0;
}
#boardBox #listBox .list-items > div > div h2 {
  font-size: 20px;
  line-height: inherit !important;
  margin: 5px 0 0;
  font-weight: 600;
  color: var(--color-title);
}
#boardBox #listBox .list-items > div > div p {
  margin: 3px 0 15px;
  color: #aaa;
}
#boardBox #listBox .list-items > div {
  position: relative;
}
#boardBox #listBox .list-items .list-checkbox {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1111;
}
#boardBox #listBox .list-items .list-item .item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

#boardBox #listBox .thumbnail-area .thumbnail {
  width: 100%;
  padding-bottom: 71.4%;
}
/* a:b비율 계산: b ÷ a × 100% */

/* portfolio */
#boardBox #listBox .category-area {
  column-gap: 10px;
}

#boardBox #listBox .list-items .list-item .item-info .portfolio-logo {
  width: 160px;
  height: 40px;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}
/* Laptop ( 1024px ~ 1300px)*/
@media all and (min-width: 1024px) and (max-width: 1300px) {
  #boardBox #listBox .list-items > div > div h2 {
    font-size: 16px;
  }
}
/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #boardBox #listBox .list-items > div > div p {
    font-size: 13px;
  }
}

/* Moble ( ~ 767px)*/
@media all and (max-width: 767px) {
}
