.two-cols-block{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    padding-top: var(--two-cols-mt-mobile, 0);
    padding-bottom: var(--two-cols-mb-mobile, 0);
    padding-left: var(--gutters);
    padding-right: var(--gutters);
    justify-content: space-between;
}
@media (min-width: 768px) {
    .two-cols-block {
        /* desktop defaults use CSS variables set inline on the wrapper */
        padding-top: var(--two-cols-mt-desktop, 0);
        padding-bottom: var(--two-cols-mb-desktop, 0);
    }
}
.two-cols-block__title{
    display: flex;
    color: var(--wp--preset--color--bleu);
    font-size: 13px;
    font-weight: 500;
    line-height: 22.51px;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1rem;
}
.two-cols-block__title::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
}
.two-cols-block__subtitle h3{
    color: var(--wp--preset--color--bleu);
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
.two-cols-block__subtitle h3 strong{
    font-size: 31px;
    font-family: "dunbar-tall", sans-serif;
}
.two-cols-block__cols{
    display: flex;
    width: 100%;
    gap: 4%;
}
.two-cols-block__cols.grey-bkg{
    margin-top: 2rem;
}
.two-cols-block__col{
    display: flex;
    flex-direction: column;
    width: 48%;
}
.two-cols-block__cols.grey-bkg .two-cols-block__col--right .two-cols-block__text{
    background-color: var(--wp--preset--color--beige);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}
.two-cols-block__cols.grey-bkg .two-cols-block__col--right .two-cols-block__text h4{
    color: var(--wp--preset--color--bleu);
    font-size: 13px;
    font-weight: 500;
    line-height: 22.51px;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.two-cols-block__cols.grey-bkg .two-cols-block__col--right .two-cols-block__text h4::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
    margin-right: 0.5rem;
}
.two-cols-block__cols.grey-bkg .two-cols-block__col--right .two-cols-block__text ul{
    list-style: disc;
}
.two-cols-block__cols.grey-bkg .two-cols-block__col--right .two-cols-block__text ul li{
    margin-left: 1.5rem;
}
@media (max-width: 767px) { 
    .two-cols-block__cols{ 
        flex-direction: column; 
        gap: 0;
    }
    .two-cols-block__col { 
        width: 100%; 
    }
    .two-cols-block__subtitle h3{
        font-size: 23px;
    }
    .two-cols-block__subtitle h3 strong{
        font-size: 21px;
    }
} 