.news-homepage {
  padding: 2rem 1rem 3rem 1rem;
  background: var(--color-primary--2);
  position: relative;
  z-index: 2;
}
.news-homepage::after {
  content: "";
  display: block;
  position: absolute;
  width: 235px;
  height: 235px;
  right: 0;
  top: 0;
  background-image: url('../../images/grey-shapes.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
/* .news-homepage__wrapper {
  position: relative;
  z-index: 2;
} */
.news-homepage__list.swiper {
  overflow: visible;
}
.news-homepage__list .view-content {
  display: flex;
}
.news-homepage__more {
  margin-top: 1.5rem;
  padding-right: 1rem;
}
.news-homepage__more a {
  position: relative;
  width: fit-content;
}
.news-homepage__more a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: var(--color-primary--1);
  display: block;
  z-index: 999;
  width: 0;
  transition: ease all 150ms;
}
.news-homepage__more a:hover {
  text-decoration: none;
}
.news-homepage__more a:hover::before {
  width: 100%;
}
@media all and (min-width: 750px){
  .news-homepage::after {
    width: 435px;
    height: 435px;
  }
}
@media all and (min-width: 1500px){
  .news-homepage {
    padding: 100px 64px;
    background: linear-gradient(90deg,rgba(243, 241, 241, 1) 85%, rgba(255, 255, 255, 1) 85%);
  }
  .news-homepage__list .view-content {
    display: grid;
    grid-template-columns: minmax(650px, 784px) minmax(250px, 372px) minmax(250px, 372px);
    gap: 2rem;
    grid-template-areas: unset;
  }
  .news-homepage__more {
    width: fit-content;
    position: absolute;
    right: 20%;
    bottom: 5%;
    padding: unset;
    margin: unset;
  }
  .news-homepage::after {
    right: 15%;
    width: 635px;
    height: 635px;
  }
}
