.toggle-block{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    padding-top: var(--toggle-mt-mobile, 0);
    padding-bottom: var(--toggle-mb-mobile, 0);
    padding-left: var(--gutters);
    justify-content: space-between;
}
@media (min-width: 768px) {
    .toggle-block {
        /* desktop defaults use CSS variables set inline on the wrapper */
        padding-top: var(--toggle-mt-desktop, 0);
        padding-bottom: var(--toggle-mb-desktop, 0);
    }
}
.toggle-block__inner{
    display: flex;
    width: 100%; 
    gap: 4%;
}
.toggle-block__column {
    display: flex;
    flex-direction: column;
    width: 48%;
}
.toggle-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;
    margin-bottom: 0;
}
.toggle-block__title::before{
    content: ''; 
    display: block; 
    width: 5px; 
    height: 5px; 
    background-color: var(--wp--preset--color--bleu); 
    margin-right: 0.5rem;
}
.toggle-block__text h3{
    color: var(--wp--preset--color--bleu);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0;
}
.toggle-block__text h3 strong{
    color: var(--wp--preset--color--bleu);
    font-family: "dunbar-tall", sans-serif;
    font-size: 23px;
    font-weight: 500;
}
.faq-item{
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: color ease .3s;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(var(--wp--preset--color--bleu-rgb, 34,77,153), 0.4);
}
.faq-item-question{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: var(--wp--preset--color--noir);
    font-size: 17px;
    font-weight: 500;
    transition: color ease-in .3s;
}
.faq-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
}
.faq-item-answer{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows ease .3s;
}
.faq-item-answer div{
    overflow: hidden;
    transition: max-height ease .3s;
    max-height: 0;
}
.faq-item-answer div *{
    line-height: 22px;
}
.faq-item-answer div ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}
.faq-item-answer div p{
    margin-bottom: 0;
}
.faq-item-answer div ul li, .faq-item-answer div ul li span{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.faq-item-answer div ul li{
    flex-direction: column;
}
.faq-item-answer div ul li span::before{
    content: '';
    display: flex;
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--wp--preset--color--bleu);
    border-radius: 100%;
    margin-right: 0.5rem;
    position: absolute;
    top: 0.5rem;
    left: 0;
}
.faq-item-answer div ul li span{
    align-items: center;
    display: block;
    padding-left: 1rem;
    position: relative;
}
.faq-item-answer div ul li span strong{
    font-weight: 700;
    padding: 0 0.25rem;
}
.faq-item.active .faq-icon{
    transform: rotate(45deg);
}
.faq-item.active .faq-item-answer{
    grid-template-rows: 1fr;
}
.faq-item.active .faq-item-answer div{
    max-height: 1000px; /* large enough to show the full content */
}
.faq-item:hover{
    cursor: pointer;
}
.toggle-block__column--right{
    display: flex;
    max-height: 500px;
    min-height: 300px;
    position: relative;
}
.toggle-block__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.faq-item.active .faq-item-question{
    color: var(--wp--preset--color--bleu);
}
@media (max-width: 768px) {
    .toggle-block{
        padding-right: var(--gutters);
    }
    .toggle-block__column{
        width: 100%;
    }
    .toggle-block__column--right{
        display: none;
    }
    .toggle-block__text h3{
        font-size: 23px;
    }
    .toggle-block__text h3 strong{
        font-size: 21px;
    }
}