/* How it works, three steps. */
.sg-steps {
    padding: 48px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}

.sg-steps__title {
    margin: 0 0 28px;
    font-size: clamp(1.5rem, 1.2vw + 1.25rem, 2.1rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sg-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sg-step {
    display: flex;
    gap: 16px;
    padding: 22px;
    background-color: #ffffff;
    border: 1px solid var(--sg-line);
    border-radius: var(--sg-radius-lg);
    box-shadow: var(--sg-shadow);
}

.sg-step__num {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 999px;
    background-color: var(--sg-green);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.sg-step__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
}

.sg-step__body {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--sg-muted);
}

@media (min-width: 64rem) {
    .sg-steps {
        padding: 72px 0;
    }

    .sg-steps__list {
        flex-direction: row;
        align-items: stretch;
    }

    .sg-step {
        flex: 1;
        flex-direction: column;
        text-align: left;
    }

    .sg-step__num {
        width: 48px;
        height: 48px;
    }
}
