/* Ocultar autor */
.blog-post-author {
  display: none;
}

/* Imágenes más premium */
.entry-content img,
.post-content img,
.wp-post-image,
.gridlove-post img,
.gridlove-box img,
.gridlove-featured-image img,
img.size-full,
img.size-large {
  border-radius: 14px;
  overflow: hidden;
}

/* Cards redondeadas */
.gridlove-box,
.gridlove-post,
.gridlove-content,
.widget {
  border-radius: 16px;
  overflow: hidden;
}

/* Botón WhatsApp */
.whatsapp-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  max-width: 400px;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(to right, #00E676, #FFA726);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.whatsapp-icon {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Widgets: Últimas noticias y Tendencias */
#recent-posts-2,
#top-posts-2 {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  font-family: Arial, sans-serif;
}

#recent-posts-2 .widget-title,
#top-posts-2 .widget-title {
  font-size: 21px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  border-bottom: 3px solid #ffa500;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

#recent-posts-2 ul,
#top-posts-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: list-counter;
}

#recent-posts-2 ul li,
#top-posts-2 ul li {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
  line-height: 1.45;
  transition: transform .2s ease;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

#recent-posts-2 ul li:last-child,
#top-posts-2 ul li:last-child {
  border-bottom: none;
}

#recent-posts-2 ul li:hover,
#top-posts-2 ul li:hover {
  transform: translateX(4px);
}

#recent-posts-2 ul li:before,
#top-posts-2 ul li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #ffa500;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#recent-posts-2 ul li a,
#top-posts-2 ul li a {
  text-decoration: none;
  color: #222;
  transition: color .25s ease;
}

#recent-posts-2 ul li a:hover,
#top-posts-2 ul li a:hover {
  color: #ffa500;
}