.news {
  padding: 150px 0 60px;
}
.hidden {
    display: none !important;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-bottom: 90px;
}


.news__item-img-wrapper {
  width: 49%;
  flex: none;
}

.news__item-img {
  width: 100%;
  border-radius: 10px;
}

.news__item-content {
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news__item-content-date {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #777777;
}

.news__item-content-title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: #000000;
  padding: 8px 0 22px;
}
.news__item-content-title span {
    white-space: nowrap;
}

.news__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 24px;
}

.news__button {
  width: 191px;
  height: 43px;
  background: #FFFFFF;
  border: 1.5px solid #000000;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.news__button:hover {
  background: #000000;
  color: #FFFFFF;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.news__item-content a {
    position: relative;
    display: flex;
}
.news__item-content a button {
    position: relative;
    z-index: 2;
    transition: .25s;
}
.news__item-content a button:after {
    position: absolute;
    bottom: 0;
    top: auto;
    right: -10px;
    opacity: 0;
    z-index: -2;
}
.news__item-content a:hover button {
    scale: 110%;
}
.news__item-content a:hover button:after {
    right: -30px;
    opacity: 1;
}

@media (max-width: 1024px) {
  .news__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news__item-img-wrapper {
    width: 100%;
  }
  .news__item-img-wrapper2 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .news {
    padding: 100px 0 100px;
  }
}
@media (max-width: 768px) {
  .news__item {
    padding-bottom: 40px;
  }
  .news__item-content-date {
    font-size: 20px;
  }
  .news__item-content-title {
    font-size: 26px;
    padding: 4px 0 14px;
  }
}
@media (max-width: 475px) {
  .news__item-content-date {
    font-size: 16px;
  }
  .news__item-content-title {
    font-size: 18px;
  }
  .news__button {
    width: 124px;
    height: 31px;
    font-size: 12px;
    line-height: 15px;
  }
}