#postTitleBanner{
    /* margin-top: -30px; */
    padding: 20px 30px;
    height: fit-content;
    background-color: #005496;
    display: flex;
    justify-content: space-between
}

.container {
    padding-top: 0px;
}
#postTitle{
    color: white;
    font-size: 1.5em;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "gentona","Georgia",serif;
    margin: 0;
    width: 60%;
}
#postOverview{
    position: relative;
    height: fit-content;
    /* border: 1px solid gray; */
}
#categoryBanner {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 85%;
    overflow: hidden;
}
#banner {
    position: absolute;
    height: 100%;
    transform: skewY(-4deg);
    top: -80px;
    width: 100%;

}
#postOverviewContent{
    position: relative;
    padding-top: 15px;
}
#postOverviewContent h6{
    color: white;
    margin-bottom: 5px;
    font-weight: 400;
}
#postOverviewContent h6 a {
    color: white;
}
#postOverviewContent p {
    color: white;
    font-size: 0.9em;
}
#postImage {
    height: 14em;
    width: 24em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#postContent{
    padding-top: 25px;
}
#latestPostsSection{
    margin-top: 80px;
}
#latestPosts {
    display: flex;
    height: 19em;
    flex-wrap: wrap;
    max-width: 800px
}
.smallPost{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50%;
}
.largePost{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.col-left{
    flex-grow: 1;
}
.col-right{
    flex-grow: 2;
}
@media (max-width: 992px) {
    .col-right{
        flex-grow: 1;
    }
}
