.news {
  background: #FCFCFC;
  padding: 16rem 0 120px;
}
.news--archive {
  padding-top: 32rem;
}
.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news__all-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news .news-list__item {
  margin: 0;
}
.news .news-card {
  display: grid;
  grid-template-columns: 180px 1fr 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  padding: 20px 32px;
  background: #F9F8F8;
  border-radius: 12px;
  color: #202020;
  text-decoration: none;
  -webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  transition: background 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  min-height: 120px;
}
.news .news-card:hover {
  background: #eeeeee;
}
.news .news-card:hover .news-card__arrow {
  background-color: #D63B3B;
  border-color: #D63B3B;
  background-image: url("../images/arrow-white.svg");
}
.news .news-card:hover .news-card__img:not(.news-card__img--no-image) {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.news .news-card__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 5/3.5;
}
.news .news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.news .news-card__img--no-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-color: #f0f0f0;
  background-image: url("../images/news-default.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.news .news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.news .news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.news .news-card__date {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.news .news-card__tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #FCFCFC;
  border-radius: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.news .news-card__tag--u-6, .news .news-card__tag--u6 {
  background: #CC3399;
}
.news .news-card__tag--u-15, .news .news-card__tag--u15 {
  background: #35B30E;
}
.news .news-card__tag--u-12, .news .news-card__tag--u12 {
  background: #D63B3B;
}
.news .news-card__tag--ceu {
  background: #FFCC01 !important;
  color: #202020 !important;
}
.news .news-card__tag:not([class*="--u"]) {
  background: #8e8e8e;
}
.news .news-card__tag--ceo {
  background: #1e3a5f !important;
  color: #FCFCFC !important;
}
.news .news-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .news-card__arrow {
  width: 54px;
  height: 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid #D63B3B;
  background-color: #FCFCFC;
  background-image: url("../images/arrow-red.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
}
.news .news-list__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: rgba(32, 32, 32, 0.6);
}
.news .news-pagination {
  margin-top: 8px;
}
.news .news-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news .news-pagination li {
  margin: 0;
}
.news .news-pagination a,
.news .news-pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #202020;
  border: 1px solid rgba(32, 32, 32, 0.16);
  background: #FCFCFC;
  text-decoration: none;
}
.news .news-pagination a:hover {
  color: #FCFCFC;
  background: #D63B3B;
  border-color: #D63B3B;
}
.news .news-pagination .current {
  color: #FCFCFC;
  background: #D63B3B;
  border-color: #D63B3B;
}
.news .news-pagination a.prev.page-numbers,
.news .news-pagination span.prev.page-numbers,
.news .news-pagination a.next.page-numbers,
.news .news-pagination span.next.page-numbers {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 960px) {
  .news {
    padding: 72px 0 96px;
  }
  .news--archive {
    padding-top: 144px;
  }
  .news__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news .news-list {
    grid-template-columns: 1fr;
  }
  .news .news-card {
    grid-template-columns: 120px 1fr 44px;
    gap: 16px;
    padding: 20px;
    min-height: 100px;
  }
  .news .news-card__thumb {
    aspect-ratio: 1;
  }
  .news .news-card__title {
    font-size: 15px;
  }
  .news .news-card__arrow {
    width: 44px;
    height: 44px;
  }
  .news .news-pagination {
    margin-top: 4px;
  }
  .news .news-pagination a,
  .news .news-pagination span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .news .news-pagination a.prev.page-numbers,
  .news .news-pagination span.prev.page-numbers,
  .news .news-pagination a.next.page-numbers,
  .news .news-pagination span.next.page-numbers {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .news {
    padding: 56px 0 80px;
  }
  .news--archive {
    padding-top: 112px;
  }
  .news .news-card {
    grid-template-columns: 80px 1fr 40px;
    gap: 12px;
    padding: 16px;
    min-height: 80px;
  }
  .news .news-card__thumb {
    aspect-ratio: 1;
  }
  .news .news-card__date {
    font-size: 12px;
  }
  .news .news-card__tag {
    font-size: 11px;
    padding: 2px 8px;
  }
  .news .news-card__title {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .news .news-card__arrow {
    width: 40px;
    height: 40px;
  }
}