/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 07 2025 | 19:48:36 */
/* ──────────── POPULARES FINAL ──────────── */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 15px 0;
}

.popular-post {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Imagen destacada */
.popular-post__thumbnail img {
  width: 110px !important;
  height: 70px !important;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Información */
.popular-post__info {
  flex: 1;
}

/* Fecha */
.popular-post__date {
  display: block;
  color: #d32f7b !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: capitalize;
}

/* Título */
.popular-post__title {
  font-size: 0.75rem !important;   /* ≈12px */
  line-height: 1.3 !important;     /* ligeramente más compacto */
  margin: 0 !important;
  font-weight: 600 !important;
  color: #222 !important;
}

.popular-post__title a {
  color: inherit !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-post__title a:hover {
  color: #d32f7b !important;
}

/* Responsivo */
@media (max-width: 600px) {
  .popular-post {
    flex-direction: column;
  }

  .popular-post__thumbnail img {
    width: 100% !important;
    height: auto !important;
  }
}
