/* news-list start */
.news-list {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 8rem;
}
@media (min-width: 991px) {
  .news-list {
    margin-bottom: 15rem;
  }
}

.news-list__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: start;
}
@media (min-width: 991px) {
  .news-list__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}

.news__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.6rem;
  align-items: stretch;
}

.news__item-image {
  position: relative;
  z-index: 2;
  border-radius: 2.8rem;
  overflow: hidden;
  align-self: stretch;
  aspect-ratio: 320 / 200;
}
.news__item-image picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.news__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 991px) {
  .news__item-image {
    border-radius: 3rem;
  }
}
@media (hover: hover) {
  .news__item-image:hover img {
    transform: scale(1.8) rotate(-6deg);
    transition: transform 11s linear;
  }
}

.news__item-date {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 101%;
  color: #BABABA;
  padding-bottom: 1.6rem;
  padding-top: 1.6rem;
}
@media (min-width: 991px) {
  .news__item-date {
    padding-bottom: 0.8rem;
    padding-top: 0;
  }
}

.news__item-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  margin-bottom: 0;
  padding-bottom: 1.6rem;
}
@media (min-width: 991px) {
  .news__item-title {
    padding-bottom: 0.8rem;
  }
}
.news__item-title a {
  display: block;
  perspective: 1000px;
}
.news__item-title a > span {
  display: block;
}
.news__item-title a:hover > span.text-gradient {
  background-size: 200% 100%;
  transition: all 0.6s ease;
}

.news__item-text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  color: #BABABA;
}
.news__item-content {
  align-self: start;
}

.more-news {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 991px) {
  .more-news {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.more-news__button {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
.more-news__button:hover svg path {
  fill: white;
}
.more-news__button svg {
  position: relative;
  z-index: 2;
}

.news-bage {
  position: absolute;
  z-index: 9;
  top: 2rem;
  left: 2rem;
  width: fit-content;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 100%;
  background-color: #fff;
  border-radius: 99999px;
  color: #9b6ce6;
}
@media (min-width: 991px) {
  .news-bage {
    top: 2rem;
    left: 2rem;
    padding: 0.9rem 2.1rem;
    font-size: 2rem;
    line-height: 100%;
  }
}

/* news-list end */
