/* =========================================================
   Vendavo Single Post Card  (vspc-*)
   ========================================================= */

.vspc-wrap {
	display: flex;
	align-items: center;
	gap: 0;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
}

/* Image side */
.vspc-image-col {
	flex: 0 0 45%;
	position: relative;
	overflow: hidden;
	min-height: 320px;
}

.vspc-image-col img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.vspc-no-image {
	background: #e8e4f2;
}

/* Content side */
.vspc-content-col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 48px;
	gap: 16px;
}

/* Badge */
.vspc-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #e55;
	/* text-transform: uppercase; */
}

/* Title */
.vspc-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1440;
}

/* Description */
.vspc-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #52527a;
}

/* CTA button */
.vspc-btn {
	display: inline-block;
	align-self: flex-start;
	/*margin-top: 8px;*/
	padding: 11px 26px;
	border: 2px solid #e55;
	border-radius: 999px;
	background: transparent;
	color: #e55;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.vspc-btn:hover {
	background: #e55;
	color: #fff;
}

/* Image right variant */
.vspc-wrap--img-right {
	flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {

	.vspc-wrap,
	.vspc-wrap--img-right {
		flex-direction: column;
	}

	.vspc-image-col {
		flex: 0 0 auto;
		min-height: 220px;
		width: 100%;
	}

	.vspc-content-col {
		padding: 28px 24px;
	}

	.vspc-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 1024px) {

	.vspc-wrap {
		flex-direction: column;
	}
}