.content-item {
    display: inline-block;
    vertical-align: top;
    width: 480px;
    height: 140px;
    flex: 1 1 480px;
    margin: 0 10px 10px 0;
}

    .content-item a div {
        background-repeat: no-repeat;
        float: left;
        width: 84px;
        height: 84px;
    }

    .content-item a {
        display: block;
        background: var(--bs-light);
        text-decoration: none;
        padding: 28px 14px 28px 30px;
        height: 140px;
        box-sizing: border-box;
        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    }


        .content-item a h3,
        .content-item a > p {
            color: var(--bs-gray-dark); /*text color*/
            margin: 5px 5px 0 103px;
        }

        .content-item a h3 {
            font-size: 1.5em;
            line-height: 1.1em;
        }

        .content-item a:hover {
            color: #fff;
            background-color: var(--bs-primary);
        }

            .content-item a:hover h3,
            .content-item a:hover > p {
                color: #fff;
            }
