:root {
  --tutgapvert: 60px;        /*   var(--tutgapvert)  */
  --tutgaphor: 20px;         /*   var(--tutgaphor)   */
}

.tutzone
{
}

.tutstep
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--tutgaphor);
    margin-bottom: var(--tutgapvert);
}

.laststep
{
margin-bottom:0;
}


/*
.tutstep:nth-of-type(2n){
    flex-direction: row-reverse;
}

.tutstep:nth-of-type(2n+1){
    flex-direction: row;
}*/

.tuttext
{
    flex-grow: 1;
    flex-basis: 30%;
    align-self: center;
}

.tutphoto
{
    display: block;
    width: 47%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--imageradius);
    margin: auto;
}

.tutsummary
{
    flex-grow: 1;
    flex-basis: 30%;
    margin-top: 0;
    margin-bottom: 0;
}

.tutpreview
{
    display: block;
    width: 25%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--imageradius);
    margin: auto;
}

                /* extra narrow mobile formatting for button text */
                @media screen and (max-width: 681px){ /*was 388 */
                    .tutstep
                    {
                        flex-flow: column wrap;
                    }
                    .tutphoto
                    {
                        width: 100%;
                    }
                    .tutpreview
                    {
                        width: 60%;
                    }
                }