/* index.css - define styles specific to the index page only */
#frontPageFeatured {
    margin-top: 30px;
}
#frontPageFeatured article {
    text-align: center;
    float: left;
    width: 25%;
}
#frontPageFeatured article img {
    width: 100%;
    height: auto;
    padding: 0 15px;
}
@media (min-width: 641px) and (max-width: 1280px) {
    #frontPageFeatured .max-width-wrapper>.row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media (min-width: 421px) and (max-width: 640px) {
    #frontPageFeatured article {
        width: 50%;
        padding-bottom: 30px;
    }
    #frontPageFeatured .max-width-wrapper>.row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media (max-width: 420px) {
    #frontPageFeatured article {
        width: 80%;
        padding-bottom: 30px;
        float: none;
        display: block;
        margin: auto;
    }
}


