/* ==================== BFV Widgets ==================== */
.widget-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.widget-container > div {
    width: 100%;
    max-width: 46%;
}

.widget-container h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

@media (max-width: 850px) {
    .widget-container > div {
        max-width: 80%;
    }
}

#content article:nth-of-type(odd) {
    background-color: #F5F5F5;
}

#content article:nth-of-type(even) {
    background-color: #FFF;
}