@charset "utf-8";

.news__list .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news__wrap a{
  padding: 30px 47px 30px 20px;
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__wrap a{
    padding: 30px 47px 30px 40px;
  }
}
.news__wrap a:hover {
  opacity: 0.7;
}

.news__body {
  padding: 0 50px 0 0;
  position: relative;
  width: 100%;
}
.news__body::after {
  content: "";
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  right: 0;
  background: url('../images/button-arrow-orange.svg') center / contain no-repeat;
  width: 30px;
  height: 30px;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.news__date {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  display: inline;
}

.news__title {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(35.2 / 16);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .news__title {
    -webkit-line-clamp: 1;
  }
}


.news__list .webgene-pagination {
  margin: 70px 0 55px;
}