.strike-company-grid-wrap {
    display: grid;
    /* 2 grid columns per row */
    grid-template-columns: repeat(2, 1fr);
    @media screen and (max-width: 1024px){
        margin: 0 2rem;
    }
    @media screen and (max-width: 767px) {
        /* 1 grid column per row */
        grid-template-columns: repeat(1, 1fr);
    }
    margin: 0 10vw;
    .company {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 4rem;
        position: relative;
        bottom: 0;
        @media screen and (max-width: 1024px) {
            padding: 2rem;
        }
        img {
            top: 0;
            height: 3.5rem;
            width: auto;
            position: relative;
        }
        .content {
            margin: 4rem 0;
            height: 100%;
            .name {
                font-weight: 700;
            }
        }
        .link {
            font-weight: 700;
            font-style: italic;
            color: var(--wp--preset--color--primary);
            text-transform: uppercase;
            position: absolute;
            bottom: 0;
            margin-bottom: 3rem;
        }
    }
    .company::after {
        content: '';
        position: absolute;
    }
    @media screen and (min-width: 768px) {
        .b-left.company::before {
            content: '';
            border-left: 1px solid var(--wp--preset--color--primary);
            height: 94%;
            left: 0;
            position: absolute;
        }
        .b-right.company::before {
            content: '';
            border-right: 1px solid var(--wp--preset--color--primary);
            height: 94%;
            right: 0;
            position: absolute;
        }
        .b-top.company::after {
            border-top: 1px solid var(--wp--preset--color--primary);
            width: 94%;
            top: 0;
        }
        .b-bottom.company::after {
            border-bottom: 1px solid var(--wp--preset--color--primary);
            width: 94%;
            bottom: 0;
        }
    }
    @media screen and (max-width: 767px) {
        .b-bottom.company::after,
        .b-top.company::after,
        .b-right.company::after,
        .b-left.company::after {
            border: none;
        }
        .company::after {
            border-bottom: 1px solid var(--wp--preset--color--primary) !important;
            width: 94%;
            height: 100%;
        }
        .last.company::after {
            border: none;
        }
    }
}