.topRated {
  background-color: var(--blue);
}
.topRated * {
  color: var(--gray95);
}
.topRated > .wrapper {
  padding: var(--mar-32) 0;
}

.topRated > .wrapper,
.topRated_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.topRated > .wrapper > h3 {
  flex: 1 1 20%;
}
.topRated > .wrapper > * {
  flex: 1 1 60%;
}
.topRated > .wrapper {
  flex-wrap: wrap;
}
.topRated_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.topRated_item_icon {
}
.topRated_item_info {
  display: flex;
  flex-direction: column;
}
.topRated > .wrapper > h3,
.topRated_item_info > p:first-child {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .topRated > .wrapper {
    flex-direction: column;
  }
  .topRated_item {
    flex-direction: column;
    align-items: start;
  }
}
