.steps_atelier {
    background: var(--color-bg);
    padding: 80px 40px;
    text-align: center;
}

/* HEADER */
.steps__header span {
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 2px;
}

.steps__header h2 {
    font-family: var(--font-title);
    font-size: 36px;
    margin: 10px 0 60px;
}

/* TIMELINE */
.steps__timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
}

/* LIGNE */
.steps__timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(212,175,55,0.3);
}

/* STEP */
.step_atelier {
    position: relative;
    z-index: 2;
}

/* CERCLE */
.step__circle {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    background: #000;
}

/* SVG */
.step__circle svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

/* NUMBER */
.step__number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 12px auto;
    font-size: 12px;
}

/* TITLE */
.step_atelier h3 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* TEXT */
.step_atelier p {
    font-size: 11px;
    color: var(--color-text-muted);
    max-width: 130px;
    margin: 0 auto;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .steps__timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps__timeline::before {
        display: none;
    }
}