.news {
  margin-bottom: 100px;
  margin-top: 118px;
  position: relative;
}
.news__title {
  font-family: "Libel Suit";
  font-style: normal;
  font-weight: 400;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: #111d41;
}
.news__list {
  margin-top: 48px;
}

.news-item__image {
  max-width: 611px;
  aspect-ratio: 611/389;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.news-item__image-inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in;
}
@media screen and (max-width: 510px){
  .news-item__image-inner {
    background-size: contain;
  }
}
.news__list .owl-item:nth-child(odd) .news-item__image {
  -webkit-clip-path: url(#news__clip-path-1);
  clip-path: url(#news__clip-path-1);
}
.news__list .owl-item:nth-child(even) .news-item__image {
  -webkit-clip-path: url(#news__clip-path-2);
  clip-path: url(#news__clip-path-2);
}
.news-item__title {
  margin: 44px 0 0 0;
  color: #111d41;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.03em;
  font-weight: 700;
  transition: all 0.25s;
}

.news-item:hover .news-item__title,
.news-item:focus .news-item__title {
  color: #e7266b;
}

.news-item:hover .news-item__image-inner {
  transform: scale(1.05);
}

.news-item__date {
  color: #98a2bf;
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  line-height: 22px;
  margin: 18px 0 0 0;
}
.news-item__date svg {
  width: 7px;
  height: 24px;
}
.news .owl-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  top: -114px;
  right: 15px;
}
.news .owl-nav button {
  display: inline-flex;
  gap: 23px;
  align-items: center;
}
.news .owl-nav button.disabled path {
  fill: #98a2bf;
}
.news__bracket {
  width: 14px;
  height: 64px;
}
.news__arrow {
  width: 10px;
  height: 18px;
}
.news__counter {
  font-size: 22px;
  line-height: 27px;
  font-weight: 500;
  color: #111d41;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 6.8px;
  }
  .news-item__image {
    max-width: 100%;
    min-height: 310px;
    aspect-ratio: initial;
  }
  .news-item__image-inner {
    min-height: 310px;
  }
  .container.news {
    padding: 0 20px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .news__list {
    margin-top: 88px;
  }
  .news .owl-nav {
    top: -56px;
    right: auto;
    left: 0;
    gap: 22px;
  }
  .news__counter {
    font-size: 16px;
    line-height: 22px;
  }
  .news .owl-nav button {
    gap: 17px;
  }
  .news__bracket {
    width: 10px;
    height: 33px;
  }
  .news-item__title {
    margin: 24px 0 0 0;
    font-size: 24px;
    line-height: 28px;
  }
  .news-item__date {
    margin-top: 15px;
  }
}
