.astro-article__image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 36px;
  object-fit: cover;
}

.astro-article__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
}

.astro-article__subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-align: center;

  color: #ffffff;
  margin-bottom: 32px;
}

.astro-article__name {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}

.astro-article__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 30px;
}

.astro-article__description {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.astro-article__description .astro-article__text {
  margin: 0;
}

.astro-article__split-image {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 30px;
}

.astro-article__split-image img {
  display: block;
  max-width: 352px;
  box-shadow: 4px 5px 9px rgba(57, 33, 57, 0.2);
  object-fit: cover;
  margin: 0 32px 0 0;
  border-radius: 10px;
  object-fit: cover;
}

.astro-article__list {
  list-style-type: none;
  margin-bottom: 36px;
}

.astro-article__item {
  margin-bottom: 8px;
}

.astro-article__content {
  display: flex;
}

.astro-article__content img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
  box-shadow: 4px 5px 9px rgba(57, 33, 57, 0.2);
  border-radius: 10px;
  margin: 0 24px 0 0;
}

@media (max-width: 720px) {
  .astro-article__image {
    margin-bottom: 16px;
  }

  .astro-article__title {
    font-size: 20px;
    line-height: 20px;
  }

  .astro-article__subtitle {
    font-size: 16px;
    line-height: 19px;
    max-width: 250px;
    margin: 0 auto 32px;
  }

  .astro-article__split-image {
    flex-direction: column;
    align-items: normal;
  }

  .astro-article__split-image img {
    max-width: 100%;
    height: 40vw;
    margin: 0 0 12px 0;
  }

  .astro-article__name {
    font-size: 16px;
    line-height: 19px;
  }

  .astro-article__text {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 24px;
  }

  .astro-article__list {
    padding: 0;
    text-align: center;
  }

  .astro-article__content {
    flex-direction: column;
    align-items: center;
  }

  .astro-article__content img {
    margin: 0 0 12px 0;
  }
}
