.marques-grid{
    display:grid;
    gap:24px;
    grid-template-columns:1fr
}
@media (min-width:700px){
    .marques-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
}
@media (min-width:1024px){
    .marques-grid{
        grid-template-columns:repeat(3,minmax(0,1fr))
    }
}
.marque-card{
    background:#fff;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.25s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%
}
.marque-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12)
}
.marque-link{
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    height:100%
}
.marque-title{
    color:#000;
    margin:0 0 12px;
    font-size:24px!important;
    font-weight:600!important
}
.marque-excerpt{
    color:#000;
    margin:0;
    font-size:14px;
    line-height:1.6;
    opacity:.7
}
.marque-single{
    background:#fff;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.07)
}
.marque-content{
    color:#000;
    line-height:1.8;
    font-size:16px
}
@media (max-width:600px){
    .marque-single{
        padding:28px
    }
    .marque-h1{
        font-size:24px
    }
}
