.partners-detail .container {
  background: var(--bg_gray);
}

.news-detail {
  word-wrap: break-word;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  justify-items: center;
  padding-bottom: 100px;
  color: var(--green_dark);
}

.news-detail .text {
  display: flex;
  padding-top: 60px;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.news-detail .text p {
  /*white-space: pre;*/
}

.news-detail h4 {
  color: var(--green_light);
}

.news-detail .img {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-detail .bottom-links-block {
  margin: 0;
}

.news-detail .bottom-links-block a {
  color: var(--green_light);
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 8px;
}

.news-detail .bottom-links-block a .stroke-dark-light * {
  stroke: var(--green_light);
}

.news-detail .bottom-links-block a .svg {
  display: inline;
}

@media (max-width: 768px) {
  .partners-detail>.maxwidth-theme {
    background: var(--bg_gray);
  }

  .news-detail {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
    gap: 60px;
    padding-bottom: 60px;
  }

  .news-detail .img {
    grid-row: 1;
  }

  .news-detail .img img {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 100%;
  }

  .news-detail .text {
    grid-row: 2;
    padding-top: 0px;
    gap: 32px;
  }

  .news-detail .text p {
    white-space: normal;
    padding-bottom: 0;
  }

}