.block-posts {
  padding: 5.563rem 0;
  position: relative;
}
.block-posts .btn-container {
    text-align: center;
    padding: 3.75rem 1.875rem 0;
}
.block-posts .btn {
    background-color: #af959a;
    color: var(--white);
	padding: 0.5rem 1.5rem;
	letter-spacing: 0.8px;
    border-radius: 2rem;
    font-weight: 600;
    line-height: 1.5;
}
.block-posts .btn:hover {
    color: var(--white);
}
.block-posts .container {
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 5.938rem;
}
.block-posts .article {
	flex: 0 1 32.5%;
}
.block-posts .article .content {
    /*min-height: 557px;*/
    background-position: center;
    background-size: cover;
    min-height: 30vw;
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem 1rem;
}
.block-posts .article .content::before {
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000006e;
    z-index: 0;
    top: 0;
	bottom: 0;
}
.block-posts .title-entry {
    font-family: 'Ivymode';
    font-size: var(--size-subtitle);
    color: var(--white);
    z-index: 1;
	position: relative;
	margin-bottom: 0;
}
.block-posts .cat-entry {
	font-family: 'Neue Haas Grotesk Display Pro';
	font-size: var(--size-text);
	color: var(--white);
	z-index: 1;
	position: relative;
	font-weight: 600;
}
.block-posts .link-entry {
	display: block;
}
.block-posts .link-entry:hover {
    text-decoration: none;
}
@media (max-width: 1280px) {
	.block-posts .container {
		padding: 0 3.688rem;
	}
}
@media (max-width: 992px) {
	.block-posts .article {
	  	flex: 0 1 100%;
	  	padding: 11px 0;
	}
	.block-posts {
	    padding: 1.875rem 0;
	}
	.block-posts .container {
		padding: 0 1.375rem;
		flex-direction: column;
	}	
	.block-posts .article .content {
	    min-height: 330px;
	}
	.block-posts .btn-container {
	    text-align: center;
	    padding: 2.875rem 1.875rem 0;
	}
}