/* entradas-mas-leidas.css - Estilo para shortcode de entradas más leídas */

.most-viewed-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  font-family: 'Open Sans', sans-serif;
}

.most-viewed-posts li {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  color: #ddd;
}

.most-viewed-posts li:last-child {
  border-bottom: none;
}

.most-viewed-posts a {
  color: #ffa800;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.most-viewed-posts a:hover {
  color: #ffcc33;
}

.most-viewed-posts li::before {
  content: "🔥 ";
  margin-right: 5px;
}

.most-viewed-posts li span {
  font-size: 0.9rem;
  color: #999;
  margin-left: 6px;
}
