.latest-news {
  background: linear-gradient(180deg, #FFF 0%, #F7EFE6 100%);
  padding-bottom: 80px;
}
@media (min-width: 1200px) {
  .latest-news {
    padding-bottom: 120px;
  }
}
.latest-news .latest-news-content {
  margin-bottom: 48px;
}
.latest-news .latest-news-swiper {
  overflow: visible;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  background-color: white;
  border-radius: 20px;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .image {
  height: 220px;
  width: 100%;
  background-color: #6d8d63;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .content {
  padding: 24px 24px 24px 32px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .content span {
  font-size: 0.8125rem;
  color: #8D80BC;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .content h3 {
  margin-top: 24px;
}
.latest-news .swiper .swiper-wrapper .swiper-slide .item .content a {
  text-decoration: none;
  color: #8D80BC;
}
.latest-news .buttons {
  height: 100%;
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .latest-news .buttons {
    flex-direction: row;
    justify-content: end;
    align-items: end;
    margin-top: unset;
  }
}
.latest-news .buttons .btn-prev,
.latest-news .buttons .btn-next {
  width: 56px;
  height: 56px;
  border-radius: 80px;
  background-color: #6d8d63;
  border: 1px solid #6d8d63;
  color: white;
}
.latest-news .buttons .btn-prev.swiper-button-disabled,
.latest-news .buttons .btn-next.swiper-button-disabled {
  background-color: #C5D6C4;
  border: 1px solid #C5D6C4;
  color: white;
}