{#---------Quantity of Cards---------#}
.blog_posts_card__content {
	position: relative;
	width: 100%;
}

.blog_posts_card__content:hover{
	-webkit-transition: all .3s ease-in-out !important;
	-o-transition: all .3s ease-in-out !important;
	transition: all .3s ease-in-out !important;
}

@media only screen and (min-width: 600px) {
	.blog_posts_card__content {
		width: calc(50% - 34px);
	}
}

@media only screen and (min-width: 992px) {
	.blog_posts_card__content {
		width: calc(33.33% - 34px);
	}
}

{#---------General Styles---------#}
.blog_posts_card__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}

{#---------Card Image---------#}
.blog_posts_card__image {
	margin: 0;
}

.blog_posts_card__image img {
	height: 242px;
	display: block;
	object-fit: cover;
	width: 100%;
}

{#---------Tag and Time--------#}
.blog_posts_card__tag a {
	background: #3942EF;
	color: #ffffff;
	text-decoration: none;
	padding: 4px 12px;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 175%;
	text-transform: uppercase;
}

.blog_posts_card__tag-time {
	display: flex;
	color: #ffffff;
	flex-wrap: wrap;
}

.blog_posts_card__tag-time > span {
	padding: 0 13px;
}

.blog_post_card_tag_override{
	color: #3942EF;
}

.blog_posts_card__time .blog_post_card_tag_override{
	color: #222224;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 175%;
	text-transform: uppercase;
}

{#---------Author---------#}
.blog_posts_card__author {
	padding-bottom: 32px;
}

.blog_posts_card__author a:hover,
.blog_posts_card__author a:focus{
	text-decoration: none;
}

{#---------Card Body---------#}
.blog_posts_card__body{
	position: relative;
	margin-bottom: 70px;
	width: 100%;
}

{#---------Button Style---------#}

.blog_posts_card__button a{
	text-decoration: none;
}

.blog_posts_card__container .button svg{
	margin-left: 10px;
}

.blog_posts_card__container .button--tertiary svg path{
	stroke: #3942EF;
}
.blog_posts_card__container .button--tertiary:hover svg path{
	stroke: #ffffff;
}

{#---------End General Styles---------#}

{#---------OVERLAY---------#}
.blog_posts_card__image--overlay {
	position: relative;
}

.blog_posts_card__image--overlay a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
} 

.blog_posts_card__title--overlay{
	position: absolute;
	top: 134px;
}

.blog_posts_card__author--overlay {
	position: absolute;
	top: 195px;
}

{#---------CLEAN---------#}
.blog_posts_card__image--clean{
	display: none;
}

.blog_posts_card__body_container--clean {
	display: grid;
	grid-template-areas:
		'title'
		'author'
		'tag';
}

.blog_posts_card__tag-time--clean {
	grid-area: tag;
}

.blog_posts_card__title--clean {
	grid-area: title;
}

.blog_posts_card__author--clean {
	grid-area: author;
	padding-bottom: 8px;
}

{#---------SIDEBAR---------#}
.blog_posts_card__content--sidebar_full,
.blog_posts_card__content--sidebar_compact {
	display: flex;
	gap: 20px;
	width: 100%;
}

.blog_posts_card__image--sidebar_full img,
.blog_posts_card__image--sidebar_compact img {
	width: 150px;
	height: 150px;
}

.blog_posts_card__image--sidebar_full img:hover,
.blog_posts_card__image--sidebar_compact img:hover {
	transform: scale(1.1);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.blog_posts_card__image--sidebar_full,
.blog_posts_card__image--sidebar_compact{
	width: 150px;
	height: 150px;
	overflow: hidden;
}

.blog_posts_card__body_container--sidebar_full,
.blog_posts_card__body_container--sidebar_compact {
	display: grid;
	grid-template-areas:
		'title'
		'tag'
		'button';
	padding: 0;
	width: 60%;
}

@media only screen and (max-width: 767px){
	.blog_posts_card__image--sidebar_full,
	.blog_posts_card__image--sidebar_compact{
		width: 43%;
	}

	.blog_posts_card__body_container--sidebar_full,
	.blog_posts_card__body_container--sidebar_compact {
		width: 58%;
	}
}

.blog_posts_card__tag-time--sidebar_full,
.blog_posts_card__tag-time--sidebar_compact {
	grid-area: tag;
}

.blog_posts_card__author--sidebar_full,
.blog_posts_card__author--sidebar_compact,
.blog_posts_card__body--sidebar_full,
.blog_posts_card__body--sidebar_compact {
	display: none;
}

.blog_posts_card__button--sidebar_full,
.blog_posts_card__button--sidebar_compact {
	grid-area: button;
	position: inherit;
	margin: 0;
}

@media only screen and (max-width: 992px){
	.blog_posts_card__tag-time--sidebar_compact > span {
		padding: 0 16px;
	}
}

.blog_posts_card__content--sidebar_compact {
	justify-content: center;
}

.blog_posts_card__image--sidebar_compact {
	display: none;
}

.blog_posts_card__body_container,
.blog_posts_card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog_posts_card__body_container {
	height: 100%;
}