﻿.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

/*.steps__title {
    margin-bottom: 2rem;
}*/

.step {
    gap: 3rem;
}

.step:nth-child(2n) {
    flex-direction: row-reverse;
}

/*.step__content {

}*/

.step__title{
    color: rgb(var(--category-color, var(--primary-color)));
}

.step__caption {
    font-weight: 600;
}

.step__image {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .step__image {
        height: 160px;
        width: 240px;
        margin-bottom: 1.5rem;
    }

    .step {
        display: flex;
        gap: 3rem;
    }
}



/*.step__text * {
    font-size: 1rem;
}*/

