.texts.bg-mint {
    background-color: var(--mint);
}

.texts.bg-orchid {
    background-color: var(--orchid);
}

.texts.bg-white {
    background-color: var(--white);
}

.texts .boxed {
    padding-top: 100px;
    padding-bottom: 100px;
}

.texts .boxed.width-100 .rows {
    width: 100%;
}

.texts .boxed.width-70 .rows {
    width: 70%;
}

.texts .boxed.width-50 .rows {
    width: 50%;
}

.texts .boxed .rows {
    display: grid;
    grid-auto-rows: auto;
    gap: 6px;
}

.texts .boxed .rows .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 60px;
}

.texts .boxed .rows .col h2 {
    margin-bottom: 0;
}

.texts .boxed .rows .col .contents h3 {
    margin-bottom: 36px;
}

.texts .boxed .rows .col .contents .content blockquote {
    border-left: 1px solid var(--plum);
    padding: 0 0 0 18px;
}


/* bestaand blijft zoals je had … */

@media (max-width: 768px) {
    .texts .boxed .rows {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .texts .boxed .rows .row {
        display: contents;
    }

    .texts .boxed .rows .row .col {
        order: var(--o, 0);
    }

    .texts .boxed .rows .row .col:empty {
        display: none;
    }

    .texts .boxed .rows .row .col .content {
        margin-top: .25rem;
    }
    .texts .boxed.width-70 .rows {
        width: 100%;
    }
}
