.ranking {
  background: #FBFBFB;
  -webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.0924934);
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.0924934);
  border-radius: 6px;
  padding: 2rem 0 3rem;
}

.ranking__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ranking__star {
  margin-right: 1.4rem;
}

.ranking__star:last-of-type {
  margin-right: 0;
}

.ranking__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.ranking__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 49rem;
  margin-bottom: 2rem;
}

.ranking__item-img {
  width: 30%;
  max-height: 20.5rem;
  margin-right: 1.5rem;
  position: relative;
}

.ranking__item-img picture,
.ranking__item-img img {
  width: 100%;
  max-height: 20.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.ranking__item-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.56;
  width: 64%;
  color: #000000;
}

@media only screen and (min-width: 768px) {
  .ranking__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .ranking__item {
    width: 49%;
  }
}

@media only screen and (min-width: 1024px) {
  .ranking {
    padding: 4rem 0 5rem;
  }

  .ranking__stars {
    margin-bottom: 3rem;
  }

  .ranking__item-img {
    margin-right: 2rem;
    width: 47%;
  }

  .ranking__item-desc {
    font-size: 1.8rem;
    line-height: 2.8rem;
    width: 45%;
  }
}