@charset "utf-8";

.top-news__wrap {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 900px) {
.top-news__wrap {
   gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .top-news__wrap {
    grid-template-columns: max-content 1fr;
  }
}
@media screen and (min-width: 1100px) {
.top-news__wrap {
   gap: min(calc(151 / 1366 * 100vw), 151px);
  }
}

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

.news__tag {
  width: fit-content;
  padding: 8px 20px;
    border: 1px solid #75C3E0;
    color: #75C3E0;
    border-radius: 35px;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.news__wrap a{
  border: 1px solid #CCCCCC;
  width: 100%;
      padding: 10px 75px 15px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    width: 38px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    background: url('../images/20260121104252793736.svg') center / contain no-repeat;
  }

  &:hover {
    background: #94cfeb57;
  }
}
@media screen and (min-width: 768px) {
  .news__wrap a {
  padding: 22px 70px 20px 30px;
  }
}
.news__wrap + .news__wrap {
  margin-top: 16px;
}


.news__body {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news__body {
      gap: 24px;
    grid-template-columns: 75px 1fr;
  }
}

.news__date {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 0.4);
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 15px;
  }
}

.news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(28 / 15);
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .news__title {
    -webkit-line-clamp: 1;
    font-size: 15px;
  }
}

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

.news__category .webgene-blog {
      display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 54px;
}
.c-cat {
      padding: 11px 22px;
    border-radius: 30px;
    border: 1px solid #75C3E0;
    color: #75C3E0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
  &:hover {
   color: #fff;
    background: #75C3E0;
  }
    &.is-active {
   color: #fff;
    background: #75C3E0;
  }
}

