.article {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.article__text {
  padding-left: 24px;
}

.article__image {
  display: block;
  max-width: 352px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 198px;
}

.article__title {
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  text-decoration-line: underline;
  color: #ffffff;
  margin-bottom: 8px;
}

.article__descr {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #f7f7f7;
  margin-bottom: 15px;

  max-width: 604px;
}

.article__more {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 14px;
  text-align: center;
  text-decoration-line: underline;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 30px;
  }

  .article {
    flex-direction: column;
  }

  .article a {
    width: 100%;
  }

  .article__image {
    height: 300px;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .article__text {
    padding-left: 0;
  }

  .article__descr {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .article {
    margin-bottom: 27px;
  }

  .article__image {
    height: 32vw;
  }

  .article__title {
    font-size: 15px;
  }

  .article__descr {
    font-size: 12px;
    line-height: 14px;
  }
}
