.howto-page{
    max-width:1000px;
    margin:0 auto;
    padding:4rem 2rem 6rem;
}

.howto-page .section-heading{
    display:block;
    text-align:center;
    margin-bottom:4rem;
}

.howto-page .section-heading h2{
    font-size:clamp(2rem,4vw,3.5rem);
    margin-top:0.5rem;
}

.howto-block{
    margin-bottom:5rem;
}

.howto-block > h3{
    text-align:center;
    margin-bottom:3rem;
    color:var(--gold-soft);
    font-size:1.25rem;
}

.step{
    position:relative;

    display:grid;
    grid-template-columns:60px 1fr;
    gap:1.5rem;

    margin-bottom:2rem;
}

.step:not(:last-child)::after{
    content:"↓";

    position:absolute;

    left:18px;
    top:52px;

    color:var(--teal);

    font-size:2rem;
    font-weight:700;
}

.step-number{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--teal);

    color:white;

    font-weight:800;
    font-size:1.1rem;
}

.step-content h4{
    margin:0 0 0.5rem;

    font-size:1.1rem;

    color:var(--text);
}

.step-content p{
    margin:0;

    color:var(--muted);

    line-height:1.8;
}

.step-content code{
    display:block;

    margin-top:0.5rem;

    padding:0.75rem;

    border-radius:8px;

    background:rgba(255,255,255,0.04);

    border:1px solid var(--line);

    color:var(--gold-soft);

    font-family:monospace;
}

@media (max-width:700px){

    .howto-page{
        padding:3rem 1rem 5rem;
    }

    .step{
        grid-template-columns:50px 1fr;
        gap:1rem;
    }

    .step-number{
        width:38px;
        height:38px;
    }
}

.howto-link{
    color:var(--gold-soft);
    font-weight:700;
    text-decoration:none;
}

.howto-link:hover{
    text-decoration:underline;
}

