/* Render de bloques de contenido de las páginas de Casa Rotaria */
.cr-bloque { padding: clamp(40px, 6vw, 76px) 0; }
.cr-bloque:nth-child(even) { background: var(--paper); }
.cr-bloque .section-title { margin-bottom: 18px; }
.cr-cuerpo p, .cr-txtcol p { color: var(--ink-soft); line-height: 1.78; margin: 0 0 14px; font-size: 1.02rem; }
.cr-cuerpo p:last-child, .cr-txtcol p:last-child { margin-bottom: 0; }

/* bloque imagen: dos columnas */
.cr-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.cr-split.cr-img-izq .cr-txtcol { order: 2; }
.cr-split.cr-img-izq .cr-foto { order: 1; }
.cr-foto { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.cr-foto img { display: block; cursor: zoom-in; }
.cr-arriba .cr-foto { aspect-ratio: 16 / 7; margin-bottom: 24px; }

/* bloque galería (integrantes / proyectos) */
.cr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; }
.cr-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .18s, box-shadow .25s; }
.cr-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.cr-gfoto { aspect-ratio: 3 / 3.4; overflow: hidden; }
.cr-gfoto img { display: block; cursor: zoom-in; }
.cr-lb { position: fixed; inset: 0; background: rgba(8,20,38,.93); display: none; place-items: center; z-index: 9999; padding: 24px; cursor: zoom-out; }
.cr-lb.open { display: grid; }
.cr-lb img { max-width: 94vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.cr-gfoto.imgph { background-color: #e9eef5; background-image: repeating-linear-gradient(135deg, #e2e9f2 0 12px, #eef3f9 12px 24px); }
.cr-cardmeta { padding: 14px 16px 18px; }
.cr-cardmeta b { display: block; color: var(--ink); font-size: 1.04rem; }
.cr-cardmeta span { display: block; margin-top: 3px; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--azure); font-weight: 800; }

/* ── Galería de fotos (tipo "galeria_fotos"): mosaico tipo masonry ── */
.cr-masonry { column-width: 260px; column-gap: 16px; }
.cr-mfoto { break-inside: avoid; margin: 0 0 16px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.cr-mfoto img { display: block; width: 100%; height: auto; cursor: zoom-in; transition: transform .3s ease; }
.cr-mfoto:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .cr-split { grid-template-columns: 1fr; }
  .cr-split.cr-img-izq .cr-txtcol, .cr-split.cr-img-izq .cr-foto { order: 0; }
  .cr-masonry { column-width: 150px; column-gap: 12px; }
  .cr-mfoto { margin-bottom: 12px; }
}

/* ── Feed de noticias en páginas de proyecto (equinoterapia, festival, becas) ── */
#noticias-proyecto .np-grid {
  display: grid; gap: 22px; margin-top: 26px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
#noticias-proyecto .news-card { overflow: hidden; display: flex; flex-direction: column; }
#noticias-proyecto .news-card .news-photo { aspect-ratio: 16/9; overflow: hidden; }
#noticias-proyecto .news-card .news-photo img { width: 100%; height: 100%; object-fit: cover; }
#noticias-proyecto .news-card .imgph { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
#noticias-proyecto .news-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
#noticias-proyecto .news-card .date { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: .03em; }
#noticias-proyecto .news-card .vermas { margin-top: auto; color: var(--azure); font-weight: 700; font-size: 13.5px; }
