.post-bg-card {
	display: grid;
	grid-gap: 8px;
}

.post-news-bg-box {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--blue-ribbon-200);
}

.post-bg-card-desc {
	font-size: 16px;
	color: var(--spun-pearl-700);
	line-height: 24px;
	margin-top: 8px;
}

.post-bg-card .csp-btn-icon {
	margin-top: 24px;
}

.post-bg-card--link {
	display: block;
	height: 100%;
}

.post-bg-card--img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

@media (max-width: 576px) {
	.post-news-bg-box {
		margin-bottom: 12px;
	}

	.post-bg-card--img {
		max-height: 260px;
		order: 0;
	}

	.post-bg-card__body {
		order: 1;
	}

	.post-bg-card-title {
		font-size: 20px;
		line-height: 32px;
		font-weight: 600;
	}

	.post-bg-card-title br {
		display: none;
	}
}

@media (min-width: 577px) {
	.post-bg-card {
		position: relative;
		grid-template-columns: 255px 1fr;
		align-items: flex-end;
		grid-gap: 24px;
		min-height: 365px;
	}

	.post-bg-card-title {
		position: absolute;
		top: 0;
		left: 0;
		font-size: 28px;
		font-weight: 600;
		line-height: 48px;
	}

	.post-bg-card-title span {
		display: inline-block;
		padding: 4px 24px 4px 0;
		background: var(--spun-pearl-50);
	}

	.post-bg-card-title span.first-part {
		border-radius: 0 16px 0 0;
	}

	.post-bg-card-title span.second-part {
		border-radius: 0 16px 16px 0;
	}

	.post-bg-card-title span.third-part {
		border-radius: 0 0 16px 0;
	}
}