/*# sourceMappingURL=block-recent-posts.css.map */

.block-recent-posts {
	margin: 50px 0;
	padding: 0px 20px;
}

.block-recent-posts .inner {
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}

.block-recent-posts .inner .title {
	color: #424448;
	margin-bottom: 20px;
}

.block-recent-posts .inner .posts {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.block-recent-posts .inner .posts .post {
	padding: 20px;
	border-radius: 25px;
	padding-bottom: 30px;
	text-align: start;
}

.block-recent-posts .inner .posts .post * {
	color: #fff;
}

.block-recent-posts .inner .posts .post:first-child {
	background-color: var(--primaryColor);
}

.block-recent-posts .inner .posts .post:nth-child(2) {
	background-color: var(--bgSecondaryColor);
}

.block-recent-posts .inner .posts .post:last-child {
	background-color: var(--tertiaryColor);
}

.block-recent-posts .inner .posts .post img {
	width: 100%;
	height: auto;
	margin-bottom: 8px;
}

.block-recent-posts .inner .posts .post .post-title {
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 30px;
	line-height: 1.875rem;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 39px;
}

.block-recent-posts .inner .posts .post .content {
	margin-bottom: 15px;
}

.block-recent-posts .inner .posts .post .cta {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 0px;
}

.block-recent-posts .inner .posts .post .cta svg {
	margin-left: 15px;
}

@media (min-width: 768px) {
	.block-recent-posts {
		padding: 0 38px;
	}
	
	.block-recent-posts .inner .title {
		margin-bottom: 30px;
	}
	
	.block-recent-posts .inner .posts {
		flex-direction: row;
		justify-content: center;
	}
	
	.block-recent-posts .inner .posts .thumbnail {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	
	.block-recent-posts .inner .posts .post {
		flex: 0 0 calc(33% - 15px);
		max-width: 60%;
		padding: 40px;
	}
	
	.block-recent-posts .inner .posts .post img {
		margin-bottom: 10px;
	}
	
	.block-recent-posts .inner .posts .post .content {
		min-height: 135px;
	}
	
	.block-recent-posts .inner .posts .post .post-title {
		font-size: 28px;
		font-size: 1.75rem;
		min-height: 155px;
	}
}

@media (min-width: 1280px) {
	.block-recent-posts {
		padding: 0px 40px;
		margin: 70px 0 80px;
	}
	
	.block-recent-posts .inner .title {
		margin-bottom: 70px;
		font-size: 65px;
	}
	
	.block-recent-posts .inner .posts .post img {
		max-height: 190px;
		-o-object-fit: cover;
		object-fit: cover;
		margin-bottom: 20px;
	}
}
