/* Section */
.category-snippet-2-col-section {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dddddd;
}

@media (min-width: 1024px){
    .category-snippet-2-col-section {
        padding-bottom: 32px;
        padding-top: 32px;
        border-bottom-width: 1px;
        border-bottom-color: #dddddd;
        flex-direction: column;
    }
}

/* Grid */
.category-snippet-2-col-section .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
}

@media (min-width:1024px) {
    .category-snippet-2-col-section .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-wrap: wrap;
    }
}

/* Col 1 */
.category-snippet-2-col-section .content-grid .col-1 {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 16px;
}

@media (min-width:1024px){
    .category-snippet-2-col-section .content-grid .col-1 {
        padding-right: 16px;
        padding-bottom: 0;
        border-right: 1px solid #dddddd;
        border-bottom: none;
    }
}

/* Col 2 */
.category-snippet-2-col-section .content-grid .col-2 {
    flex-direction: column;
    padding: 16px 0 0 0;
}

@media (min-width:1024px) {
    .category-snippet-2-col-section .content-grid .col-2 {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 16px;
    }
}

.category-snippet-2-col-section .content-grid .col-2 .category-snippet-col-2-card {
    padding-bottom: 24px;
    padding-top: 24px;
    border-bottom: 1px solid #dddddd;
}






