.ep-grid-item {
    position: relative;
    transition: all .3s ease;

    .ep-count {
        transition: all .3s ease;
    }

    &::before {
        content: '';
        width: 3px;
        height: 0%;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: var(--brand-1);;
        transition: all .3s ease;
    }

    &:hover {
        background-color: var(--bg-2);

        .ep-count { color: var(--brand-1) !important; }

        &::before {
            height: 100%;
        }
    }
}
