.gbnt-grid{
  font-family:'Archivo', sans-serif;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1180px;
  margin:0 auto;
}
.gbnt-card{
  background:#F7F8F5;
  overflow:hidden;
  display:block;
  color:#2A2D36;
  text-decoration:none;
}
.gbnt-img{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#eceeea;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gbnt-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  margin:0;
}
.gbnt-img-fallback{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#2A2D36,#1C1E25);
}
.gbnt-body{ padding:22px; }
.gbnt-fecha{
  font-size:12px;
  color:#74AC08;
  font-weight:700;
  margin-bottom:10px;
}
.gbnt-card h3{
  font-family:'Archivo Black', sans-serif;
  font-size:14.5px;
  font-weight:700;
  text-transform:none;
  margin:0 0 8px;
  line-height:1.3;
  color:#2A2D36;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:38px;
}
.gbnt-card p{
  font-size:14px;
  color:#5B5F69;
  margin:0;
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:42px;
}
.gbnt-vacio{ color:#999; font-style:italic; }

@media (max-width:900px){
  .gbnt-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .gbnt-grid{ grid-template-columns:1fr; }
}
