.large-article-header {
    background: url("../img/engineering-dark-blue.jpg") no-repeat center;
    background-size: cover;
    height: 30rem;
    position: relative;
}

@media screen and (max-width: 39.9375em) {
    .large-article-header {
        height: 20.83333rem;
    }
}

.large-article-header-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    bottom: 15rem;
    left: 0;
    right: 0;
}

@media screen and (max-width: 39.9375em) {
    .large-article-header-content {
        bottom: 5rem;
    }
}

.large-article-header-content .center-container {
    width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 39.9375em) {
    .large-article-header-content .center-container {
        width: 100%;
        padding: 0 1.25rem;
    }
}

.large-article-header-content .article-date {
    color: #fefefe;
    font-size: 2em;
    padding-top: 10px;
}

.large-article-header-content .article-title h1 {
    line-height: 3.125rem;
    color: #fefefe;
    font-weight: 600;
    font-size: 5em;
}

@media screen and (max-width: 39.9375em) {
    .large-article-header-content .article-title h1 {
        font-size: 3em;
    }
    .large-article-header-content .article-date {
        font-size: 1em;
    }
}

.large-article-header-content .article-details {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}