/*
Theme Name: Front Child
Theme URI: https://tusitio.com
Description: Tema hijo de Front
Author: Tu Nombre
Template: front
Version: 1.0
*/
/* 🔹 Banner Parallax para single.php */
.noticia-banner-parallax {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Sombra oscura sobre la imagen */
.noticia-banner-parallax .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* 🔹 Contenido centrado (título, autor, fecha) */
.noticia-banner-parallax .banner-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.noticia-banner-parallax .banner-content h1 {
  font-size: 2rem;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.noticia-banner-parallax .banner-content p {
  color: #e5e5e5;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .noticia-banner-parallax {
    height: 200px;
    margin-top: 70px;
    background-attachment: scroll; /* evita saltos en móviles */
  }

  .noticia-banner-parallax .banner-content h1 {
    font-size: 1.5rem;
  }
}