.reviews_list{
  .header_reviews{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 40px;
    flex-flow: row wrap;
    .desc{
      font-size: 16px;
      width: 900px;
    }
    .ya_rating{
      object-fit: cover;
      width: 100%;
      max-width: 277px;
      height: auto;
      display: block;
    }
  }
  .reviews_items {
    position: relative;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .reviews__item {
      background: var(--grey-FA);
      padding: 30px;
      border-radius: 32px;
      .header {
        display: flex;
        justify-content: space-between;
        flex-flow: row wrap;
        align-items: center;

        .author {
          display: flex;
          gap: 16px;

          .author_foto {
            width: 60px;
            height: 60px;
            display: block;
          }

          .author_info {
            display: flex;
            flex-direction: column;
            gap: 5px;

            .name {
              font-weight: 700;
              font-size: 18px;
              color: var(--black-21);
            }

            .date {
              font-size: 16px;
              color: var(--grey-93);
            }
          }
        }
      }

      .reviews__item_desc {
        margin: 30px 0 40px 0;
        color: var(--black-21);
        font-size: 16px;
        line-height: 150%;
      }
    }
  }
}
