/* LM Content Columns */

.lmcc-cols {
    --lmcc-gap: 24px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: var(--lmcc-gap);
    width: 100%;
    margin: 24px 0;
}

.lmcc-col {
    min-width: 0;
}

.lmcc-col > :first-child {
    margin-top: 0;
}

.lmcc-col > :last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .lmcc-cols {
        grid-template-columns: 1fr;
    }
}
