#news img {
    border-radius: 4px;
}

#news .section-grid {
    margin: 2.25rem -1.125rem 0 -1.125rem;
    width: calc(100% + 2.25rem);
}

#news .grid-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

#features .feature-image {
    display: block;
    position: relative;
    border-radius: 4px;
    width: 100%;
    padding-top: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .2s;
    margin-bottom: 0; /* ✅ Remove any spacing */
}

@media screen and (min-width: 992px) {

    #features .feature-image {
        padding-top: 175%;
    }

    #features li {
        position: relative;
        min-height: 1px;
        padding: 15px;
        width: 20%;
        float: left;
        overflow: hidden;
        border-radius: 4px;
        transition: .2s;
        margin-bottom: 0; /* ✅ Remove bottom margin */
    }

    #features .feature-image::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #111;
        border-radius: 4px 4px 0 0;
        opacity: .4;
        transition: .2s;
    }

    #features li:hover .feature-image::before {
        opacity: 0;
    }

    #features li:hover {
        back