/* === Custom Block Styling === */
.blogGrid__postTitle{
    color: #4d4d4d;
    font-size: 24px;
}

.blogGrid__postThumbnail{
    width: 100%;
    border-radius: 25px;
}

.blogGrid__outerWrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blogGrid__topInnerWrapper{
    padding-bottom: 16px;
}

.blogGrid__postLink{
    border: solid 2px #4d4d4d;
    border-radius: 30px;
    background-color: #4d4d4d;
    color: #464646;
    text-transform: uppercase;
    width: fit-content;
    padding: 4px 16px;
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	text-decoration-line: none !important;
	transition: all .155s ease-in;
}

.blogGrid__outerPostLink:hover .blogGrid__postLink{
    background-color: transparent;
	color: #4d4d4d;
	transition: all .155s ease-in;
}

@media screen and (max-width: 767px){
    .blogGrid__topInnerWrapper{
        padding-bottom: 0px;
    }
}