.news-hero {
  display: flex;
  color: #303030;
  background: url('../../../images/news-list/banner.jpg') center / cover no-repeat;
  padding: 140px 0 40px;
}

.news-hero__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.news-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #303030;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.news-hero__breadcrumb-home {
  display: block;
  flex-shrink: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.news-hero__breadcrumb-home:hover {
  opacity: 0.8;
}

.news-hero__breadcrumb-home:focus-visible {
  opacity: 0.8;
}

.news-hero__breadcrumb-icon {
  width: 20px;
  height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-hero__breadcrumb-separator,
.news-hero__breadcrumb-current {
  color: #303030;
}

.news-hero .news-hero__title {
  font-weight: 700;
  color: #303030;
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
}

.news-hero__desc {
  max-width: 680px;
  color: #303030;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .news-hero {
    min-height: 200px;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .news-hero__breadcrumb {
    font-size: 16px;
  }

  .news-hero .news-hero__title {
    font-size: 30px;
    line-height: 1.5;
  }

  .news-hero__desc {
    font-size: 16px;
  }
}

@media (min-width: 960px) {
  .news-hero {
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .news-hero .news-hero__title {
    font-size: 40px;
    line-height: 1;
  }

  .news-hero__desc {
    line-height: 24px;
  }
}

@media (min-width: 1440px) {
  .news-hero {
    min-height: 460px;
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .news-hero .news-hero__title {
    margin-top: 30px;
    font-size: 64px;
    line-height: 90px;
  }

  .news-hero__desc {
    line-height: 23px;
  }
}
