.feature__list {
    position: relative;
    width: 100%;
    max-width: 1015px;
    margin: 0 auto;
    padding: 0 25px;
}
.feature__list::after {
    content: "";
    display: block;
    width: 32.5%;
    height: 0;
}
li.feature-item {
    width: 32.5%;
    max-width: 320px;
    margin-bottom: 1.25%;
    background: #f5f5f5;
}
li.feature-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #171717;
    font-weight: 500;
    transition: opacity .3s;
}
li.feature-item img {
    width: 100%;
    max-width: none;
}
li.feature-item p {
    margin: 0;
    padding: 15px;
    line-height: 1.5em;
}

@media (hover: hover) {
    li.feature-item a:hover {
        opacity: 0.7;
        text-decoration: none;
    }
}

@media all and (max-width: 750px) {
    .feature__list {
        padding: 0 10px;
    }
    li.feature-item p {
        padding: 10px;
        font-size: 0.875em;
    }
}
