
/** front page edits **/
.theHero .post-thumbnail {
    position: relative;
    display: flex;
    overflow: hidden;
}
.theHero .post-thumbnail, .theHero .post-thumbnail img {
    min-height: 255px;
}
.theHero .post-thumbnail:after {
    display: block;
    content: none;
    width: 120%;
    position: absolute;
    bottom: -30px;
    left: -10%;
    height: 50px;
    border-radius: 55% 55% 0px 0;
    background: #fdfdfd;
}
    @media (min-width: 992px){
        .theHero .post-thumbnail, .theHero .post-thumbnail img {
            min-height: auto;
            max-height: 555px;
        }
        .theHero .post-thumbnail:after {
            content: '';
            height: 100px;
            bottom: -70px;
        }
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.theHero .post-thumbnail img {
		height: 100%;
		max-height: 100%;
	}
}