/* Most Liked box */
.most-liked {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: .8rem;
  background: #fff;
}
.most-liked h3 {
  margin: .2rem 0 .6rem 0;
  font-size: 1.1rem;
}
.most-liked ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.most-liked li a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  text-decoration: none;
  color: #111;
  border: 1px solid #f0f0f0;
  padding: .5rem .6rem;
  border-radius: 10px;
}
.most-liked li a:hover {
  background: #f8f9fb;
}
.most-liked .title {
  font-weight: 600;
}
.most-liked .nums {
  font-size: .9rem;
  color: #6b7280;
}

/* Rating thumbs */
.rating {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-size: 1.1rem;
}
.rating .rate-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: .35rem .5rem;
  border-radius: .5rem;
  cursor: pointer;
}
.rating .rate-btn.active {
  outline: 2px solid #333;
}
.rating .rate-count {
  min-width: 1.5ch;
  text-align: right;
}
