.entry-header {
    min-height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entry-title {
    color: #fff;
}

.blog-archive {
    margin-bottom: 5em;
    min-height: 420px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2em;
}

.blog-link,
.blog-link:hover,
.blog-link:visited {
    color: #0B3B59;
}

.blog-link:hover h2 {
    color: #FFBB12;
}

.blog-entry {
    margin-bottom: 1em;
    border-radius: 12px;
    box-shadow: 2px 2px 21px 0px #0B3B5933;
    padding: 1em;
    flex: 0 0 calc(33.333% - 20px);
}

.check-back-soon {
    text-align: center;
}

@media screen and (max-width: 950px) {
    .blog-archive {
        flex-direction: column;
    }
}