  /* Banner Styles nuevos */
       .banner {
            height: 45vh; /* Abarca el 45% de la altura de la pantalla */
            margin-top: 10px;
            margin-bottom: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            /*Ya se paso la imagen de fondo en cada template*/
            background-size: cover; /* Se adapta a lo ancho y lo alto */
            color: white;
            padding: 5rem 1rem;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            /* Fondo oscuro para mejor legibilidad */
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
        }

        .banner-content h1 {
            font-size: 2.5rem;
            margin: 0;
            font-weight: 600;
        }

        .banner-content p {
            margin-top: 10px;
            font-size: 1.3rem;
        }
        
        .blog-entry{
            padding: 18px 80px;
        }
        
        @media (max-width: 768px) {
         .banner-content h1 {
            font-size: 1.5rem;
        }

        .blog-entry{
            padding: 18px;
        }
        
        .blog-entry img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        }