.blogs-wrapper {
    clear: both;
    width: 100%;
    position: relative;
    margin: 30px 0;
}
.blogs-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}
.blogs-wrap article {
    width: 100%;
    position: relative;
    padding: 0;
    background-color: #264091;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 20px 0;
    align-items: stretch;
}
.blogs-wrap article figure {
    width: 40%;
    margin: 0;
    padding: 0;
    line-height: 0;
    min-width: 300px;
}
.blogs-wrap article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs-wrap article .info {
    width: 100%;
    padding: 30px;
}
.blogs-wrap h4 {
    color: #fff;
    padding: 20px 0 15px 0;
    font-size: 1.25em;
    letter-spacing: 0;
}
.blogs-wrap h4 a {
    color: #fff;
    text-decoration: none;
}
.blogs-wrap .date {
    color: #9e9f9e;
    padding: 0;
}

/* HIGH CONTRAST */
    .high_contrast .blogs-wrap article {
        background-color: #000!important;
    }
    .high_contrast .blogs-wrap h4 {
        color: #fff;
    }
    .high_contrast .blogs-wrap h4 a {
        color: #fff;
    }
    .high_contrast .blogs-wrap .date {
        color: #fff!important;
    }

/* FONT SIZER */
    /* BIG +2 */
        .big .blogs-wrap article figure {
            min-width: 50%;
            width: 50%;
        }
    /* BIGGER +4 */
        .bigger .blogs-wrap article figure {
            min-width: 50%;
            width: 50%;
        }
        .bigger .blogs-wrap article figure {
            min-width: 100%;
            width: 100%;
        }
        .bigger .blogs-wrap article {
            flex-direction: column;
        }
    /* BIGGEST +6 */
        .biggest .blogs-wrap article figure {
            min-width: 50%;
            width: 50%;
        }
        .biggest .blogs-wrap article figure {
            min-width: 100%;
            width: 100%;
        }
        .biggest .blogs-wrap article {
            flex-direction: column;
        }
    
    @media all and (max-width: 1100px) {
        /* BIG +2 */
            .big .blogs-wrap article figure {
                min-width: 100%;
                width: 100%;
            }
            .big .blogs-wrap article {
                flex-direction: column;
            }   
    }

/* RESPONSIVE */
    @media all and (max-width: 1100px) {
        .blogs-wrap article figure {
            min-width: 50%;
            width: 50%;
        }
    }
    @media all and (max-width: 600px) {
        .blogs-wrap article figure {
            min-width: 100%;
            width: 100%;
        }
        .blogs-wrap article {
            flex-direction: column;
        }
    }