.gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery-item {
  width: calc(25% - 10px); /* 4개씩 나누기, 간격을 고려한 width */
  box-sizing: border-box;
  margin-bottom: 20px; /* 아이템 간의 간격 */
  border: 1px solid #e1e1e1;
  padding: 10px;
}

.gallery_thumb_area {
  width: 100%;
  height: 150px; /* 고정 높이 */
  overflow: hidden;
}

.gallery_thumb_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_item_info {
  padding: 10px 0;
  text-align: left;
}

.gallery_item_info .td_subject {
  margin-bottom: 10px;
}

.gallery_item_info .bo_tit {
  font-size: 1.1em;
  font-weight: bold;
}

.gallery_list_info span {
  display: block;
  margin-bottom: 5px;
}

.new_icon {
  color: rgba(0, 255, 0, 0.747);
}

/* 분류 카테명 */
.gallery_bo_cate_link {
  display: inline-block;
  margin-right: 10px;
  font-weight: normal !important;
  height: 20px;
  line-height: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.95em;
} /* 글제목줄 분류스타일 */

.gallery_bo_cate_link:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .gallery_thumb_area {
    height: 250px;
  }
}