/* Banner de categoría */
.banner-linea-producto {
    position: relative;
    max-width: 100% !important;
    height: 380px;
    overflow: hidden;
    display: block;
    margin: 0 !important;

    img{
        display:block;
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        object-position: center;
        /* filter: brightness(0.7) */
    }

    &::before {
        content: '';
        position: absolute;
        inset: 0;
       /*  background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 100%
        ); */
        z-index: 1;
        pointer-events: none;
    }
/* 
    .texto-banner{
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        text-align: center;
        padding: 1rem;
        h1{
            padding: 0;
            margin: 0;
        }

        p{
            font-weight: 500;
            font-size: var(--wp--preset--font-size--medium);
        }
    }

 */
}

/*
** MEDIA QUERIES
*/
@media (max-width: 768px) {

    .banner-linea-producto{ 

            height: 300px;
        
    }
}