.ranking-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.ranking-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ranking-card h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  text-align: center;
}

.ranking-mais-lidos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.ranking-num {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  width: 28px;
  text-align: center;
}

.ranking-thumb img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.ranking-info {
  flex: 1;
}

.ranking-title {
  font-weight: 600;
  color: #222;
  font-size: 0.92em;
  text-decoration: none;
}

.ranking-title:hover {
  text-decoration: underline;
}

.ranking-views {
  font-size: 0.75em;
  color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
  .ranking-container {
    grid-template-columns: 1fr;
  }
}
