#tples-hometext {
    position: relative;
    background-color: #000;
    background: url('../img/bg-about-sh.webp') no-repeat center center;
    background-size: cover;

    &::after{
        content:'';
        background: url('../img/cat-chimere.webp') no-repeat center center;
        background-size: 45%;
        background-position: right;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }

    > div{
        width: 35%;
        color: #fff;
        background: transparent linear-gradient(180deg,#131519,rgba(19,21,25,.698) 68%,transparent) 0 0 no-repeat padding-box;
        padding: 3rem 45px;
        margin-left: 15%;

        p{
            line-height: 1.5;
            font-weight: 300;
        }
    }

    h2 {
        color: #C5B47A;
        font-size: 3rem;
        margin-bottom: 1rem;
    }
}

#tples-homereviews{
    h2{
        font-size: 3rem;
    }
    article{
        background-color: #C5B47A1F; 
        text-align: center;
        color: #615733;
        max-height: 165px;
        overflow-y: auto;
    }
}

#tples-homereviews {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

#tples-homereviews h2#titre-avis {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #615733;
}

#tples-homereviews .avis {
    background-color: #C5B47A1F;
    text-align: center;
    color: #615733;
    padding: 1.25rem;
    border-radius: 12px;
    
}

#tples-homereviews .avis header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

#tples-homereviews .avis header p {
    font-size: .85rem;
    margin: .25rem 0 1rem;
    opacity: .9;
}

#tples-homereviews .avis p[itemprop="reviewBody"] {
    font-size: .95rem;
    line-height: 1.4;
    margin: 0;
}

/* Grid responsive */
#tples-homereviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(max-width:1200px){
    #tples-hometext{
        &::after{
            display: none;
        }
        > div{
            width: 100%;
            margin-left: 0px;
        }
    }
}

@media (min-width: 600px){
    #tples-homereviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px){
    #tples-homereviews-grid { grid-template-columns: repeat(4, 1fr); }
}