@charset "utf-8";

@media screen and (min-width: 1024px) {
  .news__inner {
    padding: 0 204px;
  }
}

.news__list .webgene-blog {
  background: #fff;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 0 14px 50px;
}

.news__wrap a{
  padding: 20px 0 ;
  border-bottom: 1px solid #E8E8E8;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__wrap a{
    padding: 24px 0;
  }
}
.news__wrap a:hover {
  opacity: 0.7;
}

.news__body {
  padding: 0 84px 0 14px;
  flex-grow: 1;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__body {
    padding: 0 84px 0 calc(40px - 14px);
  }
}
.news__body::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(38px - 14px);
  background: url('../images/icon-arrow-circle-blue.svg') center / contain no-repeat;
  width: 40px;
  height: 40px;
}

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

.news__tag {
  padding: 3px 12px;
  background: #EDF6F7;
  border: 1px solid #0080D9;
  border-radius: 10px;
  color: #0080D9;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  width: fit-content;
  display: inline;
  margin-left: 10px;
}

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

.news-category > .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
  justify-content: center;
}
@media screen and (min-width: 1300px) {
  .news-category > .webgene-blog {
    justify-content: start;
  }
}

.news__cat {
  width: min(100%, 160px);
}

.news__cat a{
  min-width: 160px;
  border: 1.5px solid #2480EB;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #0080D9;
  transition: background 0.3s;
}
.news__cat a:hover {
  background: #2480EB;
  color: #FFFFFF;
}

.news-list .webgene-pagination {
  margin-top: 100px;
}