#cnh-features {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    margin-bottom: 4em;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    #cnh-features {
        padding: 0 1.5em 1.5em 1.5em;
    }
}

.cnh-feature {
    display: flex;
    flex-direction: column;
    flex: 1 1 1px;
    flex-basis: 1;
    align-items: stretch;
    min-width: 300px;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    .cnh-feature {
        margin: 0 0 1.5em 0;
    }
}

.cnh-feature .header {
    width: 100%;
    min-height: 5em;
    background-color: #B34220;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex: 0 0 3em;
    border-bottom: 2px solid white;
}

.cnh-feature .header::before {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #B34220;
    opacity: .5;
    width: 100%;
    height: 100%;
    z-index: 88;
}

.cnh-feature .content {
    line-height: 1.3;
    background-color: #e3e3e3;
    padding: 1.5em;
    flex: 1 0 auto;
    border-bottom: 2px solid white;
}

.cnh-feature .content h2 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 1em 0;
    min-height: 3.5em;
}

/* Small (sm) */
@media (min-width: 0px) and (max-width:767px) {
    .cnh-feature .content h2 {
        min-height: auto;
    }
}

.cnh-feature .footer {
    background-color: #B34220;
    color: white;
    font-size: 0.9em;
    text-transform: uppercase;
    padding: 1.2em 1.5em;
    flex: 0 0 auto;
}

.cnh-feature a.footer {
    display: block;
    color: white;
    text-decoration: none;
}

.cnh-feature a.footer:hover {
    background-color: #57200f;
}

.cnh-feature a.footer:hover {
    text-decoration: underline;
}