.offres-block{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    padding-top: var(--offres-mt-mobile, 0);
    padding-bottom: var(--offres-mb-mobile, 0);
    padding-left: var(--gutters);
    padding-right: var(--gutters);
    justify-content: space-between;
}
@media (min-width: 768px) {
    .offres-block {
        /* desktop defaults use CSS variables set inline on the wrapper */
        padding-top: var(--offres-mt-desktop, 0);
        padding-bottom: var(--offres-mb-desktop, 0);
    }
}
.offres-block__inner{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    align-items: center;
}
.offres-block__header{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.offres-block__title-heading{
    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;
}
.offres-block__title-heading::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
    margin-right: 0.5rem;
}
.offres-block__text h2{
    color: var(--wp--preset--color--bleu);
    font-size: 33px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
}
.offres-block__text h2 strong{
    font-family: "dunbar-tall", sans-serif;
    font-weight: 500;
    font-size: 31px;
}
.offres-block__list{
    display: flex;
    width: 100%;
    padding: 0 var(--gutters);
    flex-wrap: wrap;
    gap: 2%;
}
.offres-block__card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--wp--preset--color--beige);
    padding: 0.5rem;
    border-radius: 5px;
    width: 32%;
    background-color: var(--wp--preset--color--bleu-fonce);
    margin-bottom: 1.5rem;
    min-height: 215px;
}
.offres-block__link{
    display: flex;
    height: 100%;
    width: 100%;
    padding: 2rem;
    border: solid 1px var(--wp--preset--color--blanc);
    border-radius: 5px;
    flex-direction: column;
}
.offres-block__specialites{
    color: var(--wp--preset--color--blanc);
    font-size: 12px;
    font-weight: 500;
    line-height: 22.51px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}
.offres-block__specialites::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
    margin-right: 0.5rem;
}
.offres-block__title{
    color: var(--wp--preset--color--blanc);
    font-family: "dunbar-tall", sans-serif;
    font-size: 23px;
    font-weight: 500;
}
@media (max-width: 768px) {
   .offres-block__list{
    flex-direction: column;
    gap: 0;
   }
   .offres-block__card{
    width: 100%;
   }
   .offres-block__text h2{
    font-size: 23px;
    }
    .offres-block__text h2 strong{
        font-size: 21px;
    }
}