.gh-eventos-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gh-evento {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(190px, .8fr) minmax(250px, 1.2fr) minmax(120px, 160px);
  gap: 34px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.gh-evento-imagen {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.gh-evento-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gh-evento-identidad h2 {
  margin: 14px 0 20px;
  padding: 0;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 400;
}

.gh-evento-autor {
  display: block;
  margin-top: 9px;
  color: #666;
  font-size: 14px;
}

.gh-evento-fecha {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: #EEF0FF;
  color: #3F51B5;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.gh-evento-fecha svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.gh-evento-autor span {
  margin-right: 8px;
  color: #777;
}

.gh-evento-descripcion {
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.gh-evento-descripcion p:last-child {
  margin-bottom: 0;
}

.gh-evento-accion {
  display: flex;
  justify-content: center;
}

.gh-evento-boton,
.gh-evento-boton:hover {
  display: inline-block;
  padding: 12px 23px;
  border-radius: 999px;
  background: #3F51B5;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.gh-evento-boton:hover {
  background: #303F9F;
}

/* Compatibilidad visual del shortcode antiguo. */
.gh-articulos-list { display: flex; flex-direction: column; gap: 1.5rem; }
.gh-articulo { display: grid; grid-template-columns: 130px 1fr 150px; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid #eee; border-radius: 8px; background: #fff; }
.gh-articulo-thumb { width: 125px !important; height: 125px !important; object-fit: cover; border-radius: 8px; display: block; }
.gh-sin-imagen { display: flex; align-items: center; justify-content: center; background: #f5f5f5; color: #666; font-size: .8rem; }
.gh-articulo-titulo { margin: 0; font-size: 1.3rem; }
.gh-articulo-titulo a { color: #222; text-decoration: none; }
.gh-articulo-extracto { color: #555; font-size: .95rem; }
.gh-articulo-boton { display: flex; justify-content: center; }
.gh-boton-leer-mas { padding: .6rem 1.2rem; border-radius: 999px; background: #0073aa; color: #fff !important; text-decoration: none; font-weight: 600; }

@media (max-width: 980px) {
  .gh-evento { grid-template-columns: 16fr 14fr; gap: 24px; }
  .gh-evento-descripcion { grid-column: 1 / 2; }
  .gh-evento-accion { grid-column: 2 / 3; justify-content: flex-start; }
}

@media (max-width: 680px) {
  .gh-evento,
  .gh-articulo { grid-template-columns: 1fr; gap: 18px; }
  .gh-evento-descripcion,
  .gh-evento-accion { grid-column: auto; }
  .gh-evento-accion,
  .gh-articulo-boton { justify-content: flex-start; }
}
