.banner-news {
  background-image: url('../assets/img/lazyload/bg-news-lazy.jpg');
}
.banner-news.loaded {
  background-image: url('../assets/img/bg-news.jpeg');
}
.news {
  padding-bottom: 80px;
}
.news__post {
  width: calc(50% - 10px);
  margin-bottom: 60px;
}
.news__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 0 28px;
}
.news__title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  color: #262626;
  margin: 0 0 12px;
}
.news__text {
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C1C1C199
}
.news__text h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  margin: 0 0 12px;
  color: #262626;
}
.news__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px;
  color: #262626;
}
.news__text ul, .news__text ol {
  margin: 0 0 10px;
  padding-left: 20px;
}
.news__date {
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  opacity: 30%;
  color: #BF0C10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__button-wrap {
  display: flex;
  justify-content: center;
}
.news__button-wrap .button {
  margin-bottom: 60px;
}
#loader{
  display: none;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg); /* Начальный угол вращения */
  }
  to {
    transform: rotate(360deg); /* Конечный угол вращения */
  }
}
.content {
  margin-top: 10px;
}
.masonry-layout {
  padding: 0;
}

@media (max-width: 820px) {
  .news {
    padding-bottom: 10px;
  }
  .news__post {
    width: 100%;
  }
  .news__img {
    height: 200px;
  }
}