.minga-post-cta {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease-in-out;
}
.minga-post-cta:hover {
	transform: scale(1.025);
}
.minga-post-cta--link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.minga-post-cta--image {
	position: relative;
	width: 100%;
	padding-bottom: 50%;
}
.minga-post-cta--image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.minga-post-cta--content {
	padding: 40px 40px 60px 40px;
	text-align: center;
}
.minga-post-cta--title {
	font-weight: 800;
	font-size: 26px;
    margin-bottom: 45px;
}
.minga-post-cta--categories {
	margin: 0;
	padding: 0;
	list-style-type: none;
    display: flex;
    flex-direction:column;
    align-items: center;
    gap: 2px;
}
.minga-post-cta--categories li {
    display: inline-block;
    padding:5px 8px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    line-height: 1.1em;
}

.minga-post-cta--pink {
	background-color: #fdefef;
}
.minga-post-cta--green {
	background-color: #edf9f4;
}
.minga-post-cta--blue {
	background-color: #edf6fa;
}

.minga-post-cta--pink .minga-post-cta--categories li {
    background-color: #FBD6D8;
}
.minga-post-cta--green .minga-post-cta--categories li {
    background-color: #D2F1E3;
}
.minga-post-cta--blue .minga-post-cta--categories li {
    background-color: #C4E0EE;
}