#news-blog .news-blog__block_orange {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px 10px;
  border-radius: 20px;
  background-color: #FB7E00;
  box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}

#news-blog .news-blog__block_orange__img {
  display: flex;
  align-items: center;
  width: 25%;
}

#news-blog .news-blog__block_orange__text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#news-blog .news-blog__block_orange__text p,
#news-blog .news-blog__block_orange__text p strong,
#news-blog .news-blog__block_orange__text strong {
  color: #000000;
}

#news-blog .news-blog__block_orange img {
  margin: 0;
}

@media screen and (max-width: 900px) {
  #news-blog .news-blog__block_orange {
    flex-direction: column;
    padding: 0;
  }

  #news-blog .news-blog__block_orange__img {
    width: auto;
    padding: 15px 15px 0 15px;
  }

  #news-blog .news-blog__block_orange__text {
    width: auto;
    padding: 15px;
  }

  #news-blog .news-blog__str_text_red {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #news-blog .news-blog__img_reverse {
    flex-direction: column;
  }

}