.eab-wrapper {  margin: 0 auto; }
.eab-cats { display:none; flex-wrap:wrap; gap:10px; margin: 0 0 20px; }
.eab-cats .eab-cat-link { display:inline-block; padding:8px 14px; border-radius:999px; border:1px solid #ddd; text-decoration:none; font-size:14px; }
.eab-cats .eab-cat-link.active { background:#111; color:#fff; border-color:#111; }
.eab-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; position:relative; }
.eab-card { background:#FDFDF9; border:1px solid #eee; border-radius:14px; overflow:hidden; }
.eab-thumb img { width:100%; display:block; }
.eab-content { padding:16px; padding-bottom: 30px; }
.eab-title a{ font-size:20px; text-decoration:none !important; color:#000; font-weight:bold; font-family:'Poppins'; margin:0 0 8px; line-height:1; }
.eab-pagination { margin-top:26px; display:flex; justify-content:center; }
.eab-empty { padding:30px; text-align:center; color:#666; border:1px dashed #ddd; border-radius:12px; }

.eab-readmore a{text-decoration:none !important; color:#000; font-weight:bold; font-family:'Poppins'; margin:0 0 8px; line-height:1.3;}

.eab-card {
  display: flex;
  flex-direction: column;
}

.eab-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Esto es la clave */
.eab-readmore {
  margin-top: auto;

}

.eab-readmore a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s ease;
}

.eab-readmore a:hover {
  transform: translateX(4px);
  opacity: 0.8;
}


@media (max-width: 767px) {

  .eab-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .eab-card {
    border-radius: 16px;
  }

  .eab-thumb img {
    width: 100%;
    height: auto;
    display: block;
  }

  .eab-content {
    padding: 18px 16px 22px;
  }

  .eab-title {
    margin: 0 0 14px;
  }

  .eab-title a {
    display: block;
    font-size: 28px;
    line-height: 1.15;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .eab-readmore {
    margin-top: 18px;
  }

  .eab-readmore a {
    font-size: 18px;
    line-height: 1.2;
  }
}