.news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news__item {
  width: 100%;
  max-width: 320px;
  flex: 0 1 calc(50% - 10px);
}
@media screen and (min-width: 768px) {
  .news__item {
    max-width: 285px;
    flex: 0 1 calc(25% - 15px);
  }
}

.news-detailed__content {
  padding: 16px;
  box-sizing: border-box;
  background-color: var(--cl-white);
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .news-detailed__content {
    padding: 40px;
    box-sizing: border-box;
    background-color: var(--cl-white);
    border-radius: 16px;
    flex-direction: row;
    gap: 60px;
  }
}

.news-detailed__date {
  margin-bottom: 24px;
  display: block;
  color: var(--cl-grey-light);
}

.news-detailed__image {
  max-width: 450px;
  align-self: center;
  order: 1;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-detailed__image {
    order: 2;
    flex: 0 0 30%;
  }
}
.news-detailed__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-detailed__info {
  flex: 1 1 auto;
  order: 2;
}
@media screen and (min-width: 768px) {
  .news-detailed__info {
    order: 1;
  }
}

.news-detailed__static {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--cl-grey-dark);
}
@media screen and (min-width: 768px) {
  .news-detailed__static {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    max-width: 500px;
  }
}
.news-detailed__static p {
  margin: 0 0 var(--indent-m);
}
.news-detailed__static p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=news.css.map */
