
.popular-posts{
  background-color: #fff;
  padding: 2rem 0;
}

.popular-posts .section-title{
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.ppc-popular-posts {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 15px;
  padding: 0 2rem;
  
}

@media (max-width: 600px) {
  .ppc-popular-posts {
    flex-direction: column;
    padding: 0 1rem;
  } 
}

.ppc-ranking-item {
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.ppc-ranking-item.show_index::before {
  content: attr(data-num);
  position: absolute;
  top: 0;
  left: -.3rem;
  transform: translate(0,-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  /* line-height: 32px; */
  text-align: center;
  background-color: #ff6347;
  color: #fff;
  /* border-radius: 50%; */
  font-weight: bold;
  font-size: 1.1rem;
  /* margin-right: 8px; */
}

.ppc-ranking-item a {
  display: block;
  text-decoration: none;
  color: #333;
}

.ppc-recipe-thumbnail{
  margin-bottom: 8px;
}
.ppc-recipe-thumbnail img{
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.ppc-count {
  display: inline-block;
  background-color: #999;
  color: #fff;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.9em;
  margin-left: 8px;
}