/* BLOCK #reinsurance_block - Style moderne violet ******************************************************************** */
/* #reinsurance_block {
    background: #925da2;
    padding: 5px 0;
    margin: 0;
    overflow: hidden;
    color: white;
}


#reinsurance_block ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    gap: 2em;
    margin-top: 5px;
    margin-bottom: 5px;
}

#reinsurance_block li img {
  filter: invert(1);
  width: 2.5em;
} */

#reinsurance_block {
    background: #925da2;
    padding: 15px 0;
    margin: 0;
    overflow: hidden;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

#reinsurance_block ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* utile pour le responsive */
    gap: 3em;
    padding: 0;
    margin: 0;
}

#reinsurance_block li {
    display: flex;
    align-items: center;
    gap: 0.75em;
    max-width: 210px;
}

#reinsurance_block li img {
    filter: invert(1);
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

#reinsurance_block li span {
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 768px) {
  #reinsurance_block ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  #reinsurance_block li {
    justify-content: center;
    text-align: center;
  }
}