.articleGallery {
    background: rgb(134,213,184);
    background: linear-gradient(180deg, rgba(134,213,184,1) 0%, rgba(214,227,66,1) 29%, rgba(255,255,255,1) 88%);
    padding: .5em 0;
}

.articleGallery__inner {
    display: block;
}

.articleGallery__title {
    margin: 0;
    font-family: 'Caylee', Sans-Serif;
    font-size: 6em;
    line-height: 1.2;
    color: #0a4153;
}

.articleGallery__item {
    margin-bottom: 1em;
    padding: 1.5em;
}

.articleGallery__content {
    height: 100%;
}

@media (min-width: 600px) {
    .articleGallery__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .articleGallery__title {
        font-size: 8em;
    }

    .articleGallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 968px) {
    .articleGallery__title {
        font-size: 12em;
    }

    .articleGallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}