.blog{
    margin-bottom: 10rem;
    >header{
        min-height: 300px;
        padding: 4rem;
        background-image: url('../images/banner.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        position: relative;
        margin-bottom: 5rem;
        @media screen and (max-width: 1100px) {
            min-height: 200px;
        }
        &:before{
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,.3);
            z-index: 0;
        }
        *{
            color: white !important;
            z-index: 2;
        }
        h1{
            font-size: 6rem;
        }
    }
    .views-exposed-form{
        display: flex !important;
        margin-bottom: 2rem;
        flex-flow: wrap row;
        gap: 2rem;
        input, select{
            height: 40px;
            border: 1px solid gray;
            border-radius: 0;
            padding: 0 15px;
        }
    }
    .rows{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        @media screen and (max-width: 1100px) {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    footer{
        margin-bottom: 4rem;
    }
}

.blog-article{
    background-color: rgba(0,0,0,.02);
    position: relative;
    a{
        display: block;
        color: unset;
        width: 100%;
        height: 100%;
        box-shadow: 3px 3px 20px rgba(0,0,0,.2);
        transition: all 150ms ease-in-out;
        &:hover{
            box-shadow: 3px 3px 20px rgba(0,0,0,.4);
            color: unset;
        }
    }
    .image{
        min-height: 200px;
        height: 200px;
        background-color: lavender;
        *{
            height: 100%;
            width: 100%;
        }
        img{
            object-fit: cover;
            object-position: center;
            background-color: lavender;
        }
    }
    .content{
        padding: 2rem;
        .info{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            .tags{
                display: flex;
                gap: 10px;
                >span{
                    padding: 5px 10px;
                    background-color: #184287;
                    color: white;
                }
            }
        }
        h3{
            font-size: 22px;
        }
    }
}

.article-blog-full{
    margin-bottom: 5rem;
    .header-article{
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        flex-flow: wrap column;
        position: relative;
        margin: 5rem 0;
        h1{
            font-size: 5rem;
        }
        .info{
            width: 100%;
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
            .tags{
                display: flex;
                gap: 10px;
                >span{
                    padding: 5px 10px;
                    background-color: #184287;
                    color: white;
                }
            }
        }
        .wrap-image{
            width: 100%;
            display: flex;
            justify-content: center;
        }
    }
    .produits-associes{
        margin-top: 8rem;
        h2{
            margin-bottom: 5rem;
        }
        .wrap-products{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            @media screen and (max-width: 1100px) {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }
    .rebond-article{
        margin-top: 8rem;
        h2{
            margin-bottom: 5rem;
        }
        .views-row{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            @media screen and (max-width: 1100px) {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }
}

.product-teaser{
    background-color: rgba(0,0,0,.02);
    position: relative;
    a{
        display: flex;
        align-items: center;
        gap: 2rem;
        color: unset;
        width: 100%;
        height: 100%;
        min-height: 100px;
        padding-right: 2rem;
        box-shadow: 3px 3px 20px rgba(0,0,0,.2);
        transition: all 150ms ease-in-out;
        &:hover{
            box-shadow: 3px 3px 20px rgba(0,0,0,.4);
            color: unset;
        }
    }
    img{
        width: 100px;
        height: 100px;
    }
}