.steps-section .title-section {
    margin-bottom: 16px;
}

.steps-section .title-section__titre * {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 550px) {
    .steps-section .title-section__titre * {
        font-size: 32px;
        line-height: 1.2;
    }
}

.steps-section__steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1000px;
    margin: auto;
}

.steps-section__step {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 12px;
    gap: 8px;
}

/* The step cards ship transparent, so on a sage section the sage shows
   through and they stop reading as cards. Every other card in the theme
   (.avantage-card, .services-grid__card, .simple-cards-section__card)
   carries its own white, so this was the only one left behind - it hit the
   5 service pages, where "Comment ça se passe ?" lands on the alternate
   background. Scoped to .section--alt so it follows the alternation if the
   section order ever changes. */
.section--alt .steps-section__step {
    background-color: var(--color-white);
}

.steps-section__step-number {
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    min-width: 34px;
    height: 34px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    background-color: var(--color-white);
}

.steps-section__step-copy * {
    line-height: 1.4;
}

/* No bullets in the step cards: each step is a single statement, so a
   marker adds nothing and just indents the text. */
.steps-section__step-copy ul,
.steps-section__step-copy ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.steps-section__step-copy li {
    list-style: none;
}

.steps-section__step-copy li::marker {
    content: "";
}
