.sub_news .webgene-item:not(:last-child) {
  margin-bottom: 80px;
}

.news__detail {
  background: #faf9f6;
  padding: 50px;
  overflow: hidden;
}

.news__detail .news__date {
  font-weight: 500;
  display: block;
  color: #334b00;
  margin-bottom: 10px;
}

.news__detail .news__title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 1px solid #334b00;
  font-weight: 600;
  margin-left: 0;
}

.news__detail .img_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 4%;
  margin-bottom: 30px;
}

.news__detail .news__img {
  width: 48%;
  max-width: 420px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.news__detail .news__img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.news__text {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .sub_news .webgene-item:not(:last-child) {
    margin-bottom: 50px;
  }

  .news__detail {
    padding: 20px;
  }

  .news__detail .news__date {
    font-size: 14px;
  }

  .news__detail .news__title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .news__detail .textarea {
    padding: 20px 10px;
  }

  .news__detail .img_wrap {
    margin-bottom: 0;
  }

  .news__detail .news__img {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 499px) {
  .news__detail {
    padding: 20px 10px;
  }
}


/* pager */
.webgene-pagination {
  margin-top: 50px;
  text-align: center;
}

.webgene-pagination ul li a {
  display: inline-block;
  padding: 5px 15px;
  background: #9f8d2c;
  color: #fff;
}

