@charset "utf-8";
.news {
  padding-top: clamp(3.75rem, 1.25rem + 5.21vw, 7.5rem);
}
.news__inner {
  padding: 0 clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}
.news__container {
      display: flex;
    column-gap: clamp(1.25rem, -2.917rem + 8.68vw, 7.5rem);
}
.news__cate {
  width: 12%;
  min-width: 120px;
      height: fit-content;
    position: sticky;
    top: clamp(7.5rem, 5.833rem + 3.47vw, 10rem);
}
.news-cate__header {
      font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
    font-weight: 700;
    padding-left: 10px;
    border-left: clamp(0.25rem, 0.083rem + 0.35vw, 0.5rem) solid #E00000;
    height: clamp(1.25rem, 0.833rem + 0.87vw, 1.875rem);
    display: flex;
    align-items: center;
}
.news-cate__item {
      margin-top: clamp(2rem, 1.667rem + 0.69vw, 2.5rem);
    font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 700;
}
.news__cate section {
      margin-top: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    display: flex;
    flex-direction: column;
    row-gap: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
}
.news__cate section article a {
      font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 700;
    transition: all 0.5s;
}
.news__cate section article a:hover {
    opacity: 0.5;
}

.news__block {
  width: 88%;
}
.news__block section {
      display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(1.25rem, 2.6vw, 3.125rem);
    row-gap: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
    padding-bottom: clamp(11.25rem, 9.708rem + 3.21vw, 13.563rem);
    position: relative;
}
.news__block a:hover .newsItemTit {
  opacity: 0.5;
}
.newsItemImg {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.newsItemImg img {
      aspect-ratio: 327/170;
    object-fit: cover;
    height: auto;
}
.newsItemBottom {
  margin-top: 13px;
  padding-bottom: clamp(0.625rem, 0.208rem + 0.87vw, 1.25rem);
    border-bottom: 1px solid #000;
}
.newsItemText {
      display: flex;
    column-gap: clamp(0.625rem, 0.125rem + 1.04vw, 1.375rem);
}
.newsItemTime,
.newsItemCate {
      font-size: clamp(0.625rem, 0.542rem + 0.17vw, 0.75rem);
    font-weight: 700;
}
.newsItemTit {
      margin-top: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    font-weight: 700;
    line-height: 1.7;
  transition: all 0.5s;
}
.webgene-pagination {
      position: absolute;
    bottom: 116px;
}
.webgene-pagination ul {
      display: flex;
    column-gap: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    align-items: center;
    padding-left: 0;
}
.webgene-pagination ul li {
      list-style: none;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    font-weight: 700;
  transition: all 0.5s;
}
.webgene-pagination ul li:hover {
  opacity: 0.5;
}
.prev a {
  color: #A80000;
}
.next a {
  color: #A80000;
}

@media (max-width: 767px) {
  .news__container {
        flex-direction: column;
    row-gap: 48px;
  }
  .news__cate {
    position: unset;
  }
  .news__block {
    width: 100%;
  }
  .news__block section {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsItemTime,
  .newsItemCate {
    font-size: 12px;
  }
  .newsItemTit {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .news__block section {
    grid-template-columns: repeat(1, 1fr);
  }
}