.grid-card {
    background: transparent !important;

    &:hover {
        background-color: var(--color-primary) !important;
    }
}

@media (min-width: 992px) {
    .three-cards-row {
        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;
    }

    .three-cards-row .card-width-33 {
        flex: 1;
        width: 33.333%;
    }

    .three-cards-row .card-width-33 .grid-card {
        border: none !important;
        border-bottom: none !important;
    }

    .three-cards-row .card-width-33:first-child .grid-card {
        border-right: 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;
    }

    .three-cards-row .card-width-33:nth-child(2) .grid-card {
        border-left: 1px dashed var(--color-dashed-border) !important;
        border-right: 1px dashed var(--color-dashed-border) !important;
        border-color: 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;
    }

    .three-cards-row .card-width-33:last-child .grid-card {
        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;
    }

}