/************** BLOG *****************/
.blog-section {
    padding: 87px 0 130px;
}

.blog-section__h2 {
    margin-bottom: 60px;
	padding-left: 15px;
}
.blog-posts-container {
	display: flex;
	flex-wrap: wrap;
}
.blog-post {
    padding: 40px 0;
    border-top: 1px solid #c8c8c8;
	position: relative;
	height: 100%;
}

.blog-post--3,
.blog-post--4 {
	border-bottom: 1px solid #c8c8c8;
}

.blog-post__date-top {
    border-radius: 6px 6px 0px 0px;
    background: #0D1322;
    width: 70px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    padding: 13px;
}
.blog-post__date-top p {
	line-height: 22px;
}
.blog-post__date-bottom {
    border-radius: 0px 0px 6px 6px;
    background: #FFF8E2;
	width: 70px;
	padding: 16px;
}

p.blog-post__day {
	font-size: 30px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.blog-post__right {
    padding: 0 40px 0 67px;
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-post__title {
	line-height: 1.2;
}
a.blog-post__title-link {
	font-size: 26px;
	font-weight: 400;
	line-height: 34px;
	letter-spacing: 0.26px;
	color: var(--h-color);
}

a.blog-post__title-link:hover {
	color: var(--secondary-cta-color);
}

.blog-post__btn {
	font-size: 15px;
}
.page-template-blog .blog-post,
.archive .blog-post {
	height: auto;
}

@media screen and (max-width: 1600px) {
	.blog-section {
		padding: 105px 0 94px;
	}
}

@media screen and (max-width: 1200px) {
	.blog-section {
		padding-top: 67px;
	}
}

@media screen and (max-width:600px) {
	.blog-section {
		padding: 67px 0 81px;
	}

	.blog-section__h2 {
		text-align: left;
		margin-bottom: 32px;
	}
	a.blog-post__title-link {
    font-size: 22px;
    line-height: 26px;
}
	.blog-post {
		padding: 27px 0;
		flex-direction: column;
		border-top: none;
		border-bottom: 1px solid #c8c8c8;
	}

	.blog-post__date {
		display: flex;
	}

	.blog-post__date-top {
		border-radius: 6px 0 0 6px;
		font-size: 13px;
		letter-spacing: 0.78px;
		padding: 9px 10px;
	}

	.blog-post__year,
	.blog-post__month {
		line-height: 18px;
	}

	p.blog-post__day {
		font-size: 22px;
		letter-spacing: 1.32px;
	}

	.blog-post__date-bottom {
		border-radius: 0px 6px 6px 0px;
		width: unset;
		padding: 17px 14px;
	}

	.blog-post__right {
		padding: 15px 0 0;
	}

	.blog-post__title {
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0.2px;
		margin-bottom: 10px;
	}

	.blog-post__image,
	.blog-post__right:hover .blog-post__image {
		display: none;
		opacity: 0;
		visibility: hidden;
	}
}