/* Add border-dashed-right to platform-first-col on larger screens */
@media (min-width: 992px) {
    .columns-with-2-head .featured-services__second-column {
        border: none !important;
        border-left: 1px dashed var(--color-dashed-border) !important;
        border-image: repeating-linear-gradient(to bottom, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
        border-image-slice: 1 !important;
    }

    .columns-with-2-head .featured-services__first-row {
        border: none !important;
        border-bottom: 1px dashed var(--color-dashed-border) !important;
        border-image: repeating-linear-gradient(to right, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
        border-image-slice: 1 !important;
    }

    .columns-with-2-head .featured-services__second-row {
        border: none !important;
        
    }

    .columns-with-2-head .featured-services__second {
        border-top: 1px dashed var(--color-dashed-border) !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-image: repeating-linear-gradient(to right, var(--color-dashed-border) 0, var(--color-dashed-border) 6px, transparent 6px, transparent 10px) 1 !important;
        border-image-slice: 1 !important;
    }
}