/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 26 2025 | 18:03:53 */
.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:0px;
  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;   
  line-height: 1.3 !important;     
  margin: 0 !important;
  font-weight: 600 !important;
  color: #141313 !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;
  }
}

#text-7 {
  border: 1px solid #1615154D;   /* borde gris */
  border-radius: 0px;
  padding: 15px;
}

#text-7 .widget-title {
  margin-bottom: 12px;
  padding-left: 5px;
}

