/* ── Layout noticia ──────────────────────────────────── */
.noticia-wrap { max-width: 1200px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; }

/* ── Header ──────────────────────────────────────────── */
.noticia-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid #eee; }
.noticia-header__volanta { font-size: 12px; font-weight: 700; color: #e74c3c; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-family: -apple-system, sans-serif; }
.noticia-header__titulo { font-family: Georgia, serif; font-size: 32px; font-weight: 700; line-height: 1.25; color: #1a1a1a; margin: 0 0 16px; }
.noticia-header__sumario { font-size: 18px; line-height: 1.6; color: #444; font-family: Georgia, serif; font-style: italic; border-left: 4px solid #e74c3c; padding-left: 16px; margin-bottom: 16px; }
.noticia-header__meta { display: flex; gap: 16px; font-size: 13px; font-family: -apple-system, sans-serif; color: #888; flex-wrap: wrap; }

/* ── Cuerpo ──────────────────────────────────────────── */
.noticia-cuerpo__figura { margin: 0 0 24px; cursor: zoom-in; position: relative; }
.noticia-cuerpo__figura img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 4px; display: block; }
.noticia-cuerpo__caption { font-size: 12px; color: #888; font-style: italic; text-align: center; padding: 8px 0; font-family: -apple-system, sans-serif; }
.noticia-cuerpo__zoom-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.5); color: #fff; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0; transition: opacity .2s; pointer-events: none; }
.noticia-cuerpo__figura:hover .noticia-cuerpo__zoom-hint { opacity: 1; }
.noticia-cuerpo__texto { font-family: Georgia, serif; font-size: 17px; line-height: 1.8; color: #222; }
.noticia-cuerpo__texto p { margin-bottom: 20px; }

/* ── Footer ──────────────────────────────────────────── */
.noticia-footer { margin-top: 32px; padding-top: 20px; border-top: 2px solid #eee; }
.noticia-footer__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tag-seccion, .tag-autor { padding: 4px 12px; border-radius: 20px; font-size: 12px; text-decoration: none; font-family: -apple-system, sans-serif; font-weight: 600; }
.tag-seccion { background: #e74c3c; color: #fff; }
.tag-autor { background: #f0f0f0; color: #555; }
.noticia-footer__compartir { display: flex; align-items: center; gap: 8px; font-size: 13px; font-family: -apple-system, sans-serif; color: #888; }
.btn-compartir { padding: 6px 14px; border-radius: 3px; font-size: 12px; font-weight: 600; text-decoration: none; color: #fff; transition: opacity .2s; }
.btn-compartir:hover { opacity: .85; }
.btn-fb { background: #1877f2; }
.btn-tw { background: #000; }
.btn-wa { background: #25d366; }

/* ── Galería de fotos ────────────────────────────────── */
.noticia-galeria { margin: 32px 0; }
.noticia-galeria__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; border-bottom: 2px solid #1a1a2e; padding-bottom: 8px; }
.noticia-galeria__titulo { font-size: 16px; font-weight: 700; margin: 0; color: #1a1a2e; }
.noticia-galeria__count { font-size: 12px; background: #1a1a2e; color: #fff; padding: 3px 10px; border-radius: 12px; }
.noticia-galeria__grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
.galeria-item { display: block !important; float: none !important; width: auto !important; cursor: pointer !important; border-radius: 4px !important; overflow: hidden !important; background: #f0f0f0 !important; transition: transform .2s, box-shadow .2s !important; }
.galeria-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.galeria-item__img-wrap { aspect-ratio: 4/3 !important; overflow: hidden !important; position: relative !important; display: block !important; }
.galeria-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.galeria-item:hover .galeria-item__img-wrap img { transform: scale(1.04); }
.galeria-item__meta { padding: 8px 10px; background: #fff; }
.galeria-item__pie { font-size: 12px; color: #333; margin: 0 0 3px; line-height: 1.4; }
.galeria-item__creditos { font-size: 11px; color: #888; font-style: italic; }

/* ── Lightbox galería ────────────────────────────────── */
.lightbox { display: none !important; position: fixed !important; inset: 0 !important; width: 100vw !important; height: 100vh !important; background: rgba(0,0,0,.93) !important; z-index: 999999 !important; }
.lightbox.activo { display: flex !important; align-items: center !important; justify-content: center !important; flex-direction: column !important; }
.lightbox__contenido { display: flex !important; flex-direction: column !important; align-items: center !important; width: 92vw !important; max-width: 1100px !important; max-height: 92vh !important; margin: 0 auto !important; position: relative !important; }
.lightbox__img-wrap { width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; max-height: 80vh !important; overflow: hidden !important; }
.lightbox__img-wrap img { max-width: 92vw !important; max-height: 80vh !important; object-fit: contain !important; width: auto !important; height: auto !important; }
.lightbox__info { text-align: center !important; padding: 10px 0 0 !important; width: 100% !important; }
.lightbox__pie { color: #eee !important; font-size: 14px !important; margin-bottom: 4px !important; }
.lightbox__creditos { color: #aaa !important; font-size: 12px !important; font-style: italic !important; }
.lightbox__counter { color: #666 !important; font-size: 12px !important; }
.lightbox__prev, .lightbox__next { position: fixed !important; top: 50% !important; transform: translateY(-50%) !important; background: rgba(255,255,255,.2) !important; border: none !important; color: #fff !important; font-size: 40px !important; cursor: pointer !important; padding: 16px 20px !important; border-radius: 4px !important; z-index: 1000000 !important; line-height: 1 !important; transition: background .2s !important; }
.lightbox__prev { left: 12px !important; }
.lightbox__next { right: 12px !important; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.4) !important; }
.lightbox__cerrar { position: fixed !important; top: 14px !important; right: 16px !important; background: rgba(255,255,255,.15) !important; border: none !important; color: #fff !important; font-size: 28px !important; cursor: pointer !important; width: 44px !important; height: 44px !important; border-radius: 50% !important; z-index: 1000000 !important; line-height: 44px !important; text-align: center !important; }
.lightbox__cerrar:hover { background: rgba(255,255,255,.3) !important; }

/* ── Lightbox imagen principal ───────────────────────── */
.lb-principal { display: none !important; position: fixed !important; inset: 0 !important; width: 100vw !important; height: 100vh !important; background: rgba(0,0,0,.93) !important; z-index: 999999 !important; align-items: center !important; justify-content: center !important; cursor: zoom-out !important; }
.lb-principal.activo { display: flex !important; }
.lb-principal__contenido { max-width: 95vw !important; max-height: 95vh !important; display: flex !important; flex-direction: column !important; align-items: center !important; cursor: default !important; }
.lb-principal__contenido img { max-width: 95vw !important; max-height: 88vh !important; object-fit: contain !important; width: auto !important; height: auto !important; display: block !important; }
.lb-principal__caption { color: #ddd !important; font-size: 14px !important; text-align: center !important; padding: 10px 0 0 !important; }
.lb-principal__cerrar { position: fixed !important; top: 14px !important; right: 16px !important; background: rgba(255,255,255,.15) !important; border: none !important; color: #fff !important; font-size: 28px !important; cursor: pointer !important; width: 44px !important; height: 44px !important; border-radius: 50% !important; z-index: 1000000 !important; line-height: 44px !important; text-align: center !important; }
.lb-principal__cerrar:hover { background: rgba(255,255,255,.3) !important; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) { .noticia-wrap { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .noticia-galeria__grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .noticia-galeria__grid { grid-template-columns: 1fr !important; } }
