.news-page {
  padding-top: 0px;
}

.news-banner {
  padding-top: 72px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.news-banner__bg {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 0;
}

.news-banner__bg img,
.news-banner__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.news-banner__bg img {
  object-fit: cover;
  object-position: center center;
}

.news-banner__shade {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 1;
  pointer-events: none;
}

.news-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.news-banner__content {
  max-width: 720px;
  color: #ffffff;
}

.news-banner__title {
  margin-bottom: 32px;
  color: #000;
  font-size: 48px;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: normal;
}

.news-banner__desc {
  max-width: 560px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

@media (max-width: 1024px) {
  .news-banner {
    height: auto;
    min-height: 560px;
  }
  .news-banner__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .news-banner__desc {
    font-size: 14px;
    line-height: 1.85;
  }
}

@media (max-width: 768px) {
  .news-banner {
    box-sizing: border-box;
    height: 480px;
    min-height: 0;
    padding-top: 56px;
  }
  .news-banner__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .news-banner__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .news-banner__desc {
    font-size: 14px;
    line-height: 1.8;
  }
}

.news-list {
  background: #ffffff;
  padding: 80px 0 100px;
}

.news-list__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box;
}

.news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.news-list__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.25s ease;
}

.news-list__card[hidden] {
  display: none;
}

.news-list__card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.news-list__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}

.news-list__card:hover::after {
  background: #0052d9;
}

.news-list__media {
  flex-shrink: 0;
  overflow: hidden;
}

.news-list__media img {
  display: block;
  width: 100%;
  height: 346px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-list__card:hover .news-list__media img {
  transform: scale(1.03);
}

.news-list__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 33px 30px;
}

.news-list__name {
  margin-bottom: 12px;
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-list__desc {
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.news-list__date {
  color: #999999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.news-list__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  transition: color 0.25s ease;
}

.news-list__card:hover .news-list__arrow {
  color: #0070d5;
}

.news-list__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.news-list__page,
.news-list__prev,
.news-list__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 50%;
  background: #f1f1f1;
  color: #000;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.news-list__page.is-active {
  background: #0070d5;
  color: #ffffff;
}

.news-list__page:hover:not(.is-active),
.news-list__prev:hover:not(:disabled),
.news-list__next:hover:not(:disabled) {
  background: #0070d5;
  color: #fff;
}

.news-list__prev:disabled,
.news-list__next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .news-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-list {
    padding: 48px 0 64px;
  }
  .news-list__inner {
    padding: 0 16px;
  }
  .news-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .news-list__media img {
    height: 346px;
  }
  .news-list__body {
    padding: 20px 20px 16px;
  }
  .news-list__name {
    font-size: 18px;
  }
  .news-list__desc {
    font-size: 15px;
  }
  .news-list__date {
    font-size: 14px;
  }
  .news-list__pager {
    gap: 8px;
  }
  .news-list__page,
  .news-list__prev,
  .news-list__next {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .news-banner {
    padding-top: 3.825vw;
  }
  .news-banner__inner {
    max-width: 85vw;
    padding-left: 1.275vw;
    padding-right: 1.275vw;
  }
  .news-banner__content {
    max-width: 38.25vw;
  }
  .news-banner__title {
    margin-bottom: 1.7vw;
    font-size: 2.55vw;
  }
  .news-banner__desc {
    max-width: 29.75vw;
    font-size: 1.0625vw;
  }
  .news-list {
    padding: 4.25vw 0 5.3125vw;
  }
  .news-list__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .news-list__grid {
    gap: 1.7vw;
    margin-bottom: 2.975vw;
  }
  .news-list__card::after {
    height: 0.15937vw;
  }
  .news-list__media img {
    height: 18.38125vw;
  }
  .news-list__body {
    padding: 1.9125vw 1.75313vw 1.59375vw;
  }
  .news-list__name {
    margin-bottom: 0.6375vw;
    font-size: 1.0625vw;
  }
  .news-list__desc {
    font-size: 0.85vw;
  }
  .news-list__foot {
    gap: 0.85vw;
    margin-top: 1.16875vw;
  }
  .news-list__date {
    font-size: 0.85vw;
  }
  .news-list__pager {
    gap: 0.6375vw;
  }
  .news-list__page,
  .news-list__prev,
  .news-list__next {
    min-width: 2.125vw;
    height: 2.125vw;
    padding: 0 0.6375vw;
    font-size: 0.79688vw;
  }
}
