.news-breadcrumb {
  padding: 10px 60px;
  background: var(--color7);
}

.news-breadcrumb a {
  text-decoration: none;
  color: inherit;
  text-transform: inherit;
}

.news-header {
  padding: 0 60px;
  background: linear-gradient(
    to bottom,
    var(--color7) 0px,
    var(--color7) 80px,
    var(--color0) 80px
  );
}

.news-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.news-title-image img{
  max-width: 500px;
  width: 100%;
  border-radius: 34px;
}

.news-body {
  padding: 60px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 700px) {
  .news-breadcrumb {
    padding: 10px;
  }
  .news-header {
    padding: 0 10px;
    background: var(--color0);
  }
  .news-title {
    flex-direction: column;
  }
  .news-title-text {
    text-align: center;
  }
  .news-title-image img {
    max-width: unset;
  }
  .news-body {
    padding: 0 10px;
  }
}
