.news {
  padding-bottom: 60px;
  padding-top: 43px;
}
@media (max-width: 1024px) {
  .news {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.news .news-header__wrapper {
  margin-bottom: 38px;
  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;
}
@media (max-width: 700px) {
  .news .news-header__wrapper {
    -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-header__wrapper .news-header__content .title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 100px;
  text-transform: uppercase;
  color: #C9D2CD;
  line-height: 1;
}
@media (max-width: 1024px) {
  .news .news-header__wrapper .news-header__content .title {
    font-size: 72px;
  }
}
@media (max-width: 1024px) {
  .news .news-header__wrapper .news-header__content .title br {
    display: none;
  }
}
@media (max-width: 700px) {
  .news .news-header__wrapper .news-header__content .title {
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .news .news-header__wrapper .news-header__content .title {
    font-size: 40px;
    max-width: 300px;
    width: 100%;
  }
}
.news .news-header__wrapper .news-header__content .subtitle {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  text-transform: uppercase;
  opacity: 40%;
  margin-bottom: 32px;
}
.news .news-content .news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 1024px) {
  .news .news-content .news-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }
}
@media (max-width: 576px) {
  .news .news-content .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.news .news-content .news-grid .news-item {
  position: relative;
  background-color: #2E3535;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news .news-content .news-grid .news-item:hover {
  background-color: #4E5B5B;
}
.news .news-content .news-grid .news-item .news-thumb {
  position: relative;
}
.news .news-content .news-grid .news-item .news-thumb .news-thumb__decore {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #2B3131;
  color: #C9D2CD;
  width: 80px;
  height: 23px;
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  z-index: 2;
}
.news .news-content .news-grid .news-item .news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news .news-content .news-grid .news-item .news-text {
  padding-top: 24px;
  padding-right: 24px;
  padding-left: 24px;
  padding-bottom: 32px;
  position: relative;
}
.news .news-content .news-grid .news-item .news-text .news-title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #C9D2CD;
  margin-bottom: 24px;
}
.news .news-content .news-grid .news-item .news-text .news-excerpt {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 16px;
  color: #C9D2CD;
  opacity: 0.5;
}
.news .news-content .news-grid .news-item .text__decore {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background-color: #2B3131;
  width: 80px;
  height: 23px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  z-index: 2;
}