.vae-infographies {
    width: 100%;
    max-width: 1200px;
    margin: 3em auto;
    padding: 0 1.5em;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
}

.infographie-section {
    padding: 4em 0;
    border-bottom: 2px solid #e8e8e8;
}

.infographie-section:last-child {
    border-bottom: none;
}

.infographie {
    width: 100%;
    overflow: visible;
    margin-top: 2em;
}

.infographie img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.infographie--double {
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
    align-items: flex-start;
}

.infographie--double img {
    width: calc(50% - 0.75em) !important;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
}
.links-box {
    margin-top: 2em;
    padding: 1em 1.2em;
    background: #f0f4fa;
    border-left: 4px solid #4A7FB5;
    border-radius: 0 8px 8px 0;
}
.links-box p {
    font-size: 0.85em;
    font-weight: 500;
    color: #1B3A6B;
    margin-bottom: 0.5em;
}
.links-box a {
    display: block;
    font-size: 0.85em;
    color: #4A7FB5;
    padding: 3px 0;
    text-decoration: none;
    line-height: 1.5;
}
.links-box a:hover {
    color: #1B3A6B;
    text-decoration: underline;
}

.quote-box {
    background: white;
    border-radius: 10px;
    border-left: 5px solid #1B3A6B;
    padding: 1.2em 1.5em;
    margin: 1.5em 0;
    box-shadow: 0 2px 10px rgba(27, 58, 107, 0.08);
}
 
.quote-box p {
    font-size: 1.15em;
    line-height: 1.7em;
    color: #1B3A6B;
    font-style: italic;
    text-align: left;
    padding-left: 0;
}
 

@media (max-width: 768px) {
    .infographie--double {
        flex-direction: column;
    }
    .infographie--double img {
        width: 100%;
    }
}