/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 10 2025 | 18:24:57 */
/* === Estilos para el Widget de Entradas Destacadas === */

.featured-posts-widget {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}



.featured-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.featured-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}


.featured-date {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.6rem;
  gap: 6px;
}

.featured-date i {
  color: #e26a00;
}

.featured-title {
  font-size: .75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.featured-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-title a:hover {
  color: #e26a00;
}

.featured-read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e26a00;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.featured-read-more:hover {
  color: #ff8b2d;
}

/* === Responsivo === */
@media (max-width: 768px) {
  .featured-image img {
    height: 180px;
  }

  .featured-title {
    font-size: 0.75rem;
  }
}
