.rfzj_post_card {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 16px;
	width: 100%;
	max-width: 680px;
	padding: 16px 0;
	border-bottom: 1px solid #dedee3;
	background: transparent;
	transition: border-color var(--rfzj_transition);
}

.rfzj_post_card:hover {
	border-color: rgba(0, 0, 0, .18);
}

.rfzj_post_card__media {
	position: relative;
	display: block;
	overflow: hidden;
	width: 150px;
	aspect-ratio: 16 / 10;
	border-radius: 16px;
	background: #f5f5f7;
	text-decoration: none;
}

.rfzj_post_card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--rfzj_transition);
}

.rfzj_post_card:hover .rfzj_post_card__media img {
	transform: scale(1.025);
}

.rfzj_post_card__media span {
	position: absolute;
	top: 10px;
	right: 10px;
	max-width: calc(100% - 20px);
	overflow: hidden;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	color: var(--rfzj_color_text);
	font-size: 12px;
	font-weight: 800;
	line-height: 24px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rfzj_post_card__body {
	min-width: 0;
}

.rfzj_post_card__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--rfzj_color_text);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.32;
	text-decoration: none;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rfzj_post_card__title:hover,
.rfzj_post_card__title:focus {
	color: var(--rfzj_color_text);
	text-decoration: none;
}

.rfzj_post_card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 7px;
	color: var(--rfzj_color_subtle);
	font-size: 13px;
	line-height: 1.35;
}

.rfzj_post_card__meta span,
.rfzj_post_card__meta time {
	overflow: hidden;
	max-width: 180px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rfzj_post_card__summary {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 8px 0 0;
	color: #86868b;
	font-size: 14px;
	line-height: 1.45;
}

.rfzj_post_card__facts {
	display: grid;
	gap: 6px;
	margin-top: 10px;
}

.rfzj_post_card__fact {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 8px;
	color: var(--rfzj_color_muted);
	font-size: 13px;
	line-height: 1.35;
}

.rfzj_post_card__fact span {
	color: var(--rfzj_color_subtle);
	white-space: nowrap;
}

.rfzj_post_card__fact strong {
	overflow: hidden;
	color: var(--rfzj_color_text);
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rfzj_post_card__cta {
	margin-top: 12px;
}

.rfzj_post_card--feature {
	display: block;
	padding-bottom: 18px;
}

.rfzj_post_card--feature .rfzj_post_card__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
}

.rfzj_post_card--feature .rfzj_post_card__body {
	padding-top: 12px;
}

.rfzj_post_card--feature .rfzj_post_card__title {
	font-size: 20px;
}

.rfzj_post_card--related {
	grid-template-columns: 156px minmax(0, 1fr);
	gap: 18px;
	max-width: none;
	padding: 16px;
	border: 1px solid #e7eaf0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(20, 32, 51, .05);
}

.rfzj_post_card--related:hover {
	border-color: #f0babb;
	box-shadow: 0 8px 24px rgba(20, 32, 51, .08);
}

.rfzj_post_card--related .rfzj_post_card__media {
	width: 156px;
	border-radius: 12px;
}

.rfzj_post_card--related .rfzj_post_card__title {
	font-size: 17px;
}

@media (max-width: 640px) {
	.rfzj_post_card {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 13px;
	}

	.rfzj_post_card__media {
		width: 104px;
		border-radius: 14px;
	}

	.rfzj_post_card--feature {
		display: block;
	}

	.rfzj_post_card--feature .rfzj_post_card__media {
		width: 100%;
		border-radius: 16px;
	}

	.rfzj_post_card--related {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}

	.rfzj_post_card--related .rfzj_post_card__media {
		width: 104px;
		border-radius: 10px;
	}

	.rfzj_post_card--related .rfzj_post_card__title {
		font-size: 16px;
	}

	.rfzj_post_card--related .rfzj_post_card__summary {
		display: none;
	}

	.rfzj_post_card--related .rfzj_post_card__meta {
		gap: 5px;
		font-size: 12px;
	}
}

/* ============================================
   Post Card — Topic Variant
   ============================================ */

.rfzj_post_card--topic {
	position: relative;
	display: flex;
	min-height: 310px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 26px;
	border-radius: 22px;
	border-bottom: none;
	background: #f5f5f7;
	color: #1d1d1f;
	text-decoration: none;
	grid-template-columns: unset;
	gap: unset;
	max-width: unset;
	width: 100%;
	transition: transform var(--rfzj_transition), box-shadow var(--rfzj_transition);
}

.rfzj_post_card--topic:hover {
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.rfzj_post_card--topic .rfzj_post_card__bg {
	position: absolute;
	inset: 0;
	background: var(--card-bg-image) center / cover no-repeat;
	z-index: 0;
}

.rfzj_post_card--topic .rfzj_post_card__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 170% 120% at 10% 100%, #000 15%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.3) 65%, transparent 80%);
	mask-image: radial-gradient(ellipse 170% 120% at 10% 100%, #000 15%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.3) 65%, transparent 80%);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	-webkit-filter: saturate(1.4) brightness(0.85);
	filter: saturate(1.4) brightness(0.85);
}

.rfzj_post_card--topic .rfzj_post_card__gradient-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.rfzj_post_card--topic.has-bg-image,
.rfzj_post_card--topic.has-gradient-bg {
	color: #fff;
}

.rfzj_post_card--topic.has-bg-image .rfzj_post_card__copy,
.rfzj_post_card--topic.has-gradient-bg .rfzj_post_card__copy {
	max-width: 82%;
}

.rfzj_post_card--topic.has-bg-image .rfzj_post_card__label,
.rfzj_post_card--topic.has-gradient-bg .rfzj_post_card__label {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.rfzj_post_card--topic.has-bg-image .rfzj_post_card__copy h3,
.rfzj_post_card--topic.has-gradient-bg .rfzj_post_card__copy h3 {
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.rfzj_post_card--topic.has-bg-image .rfzj_post_card__copy p,
.rfzj_post_card--topic.has-gradient-bg .rfzj_post_card__copy p {
	color: rgba(255, 255, 255, 0.7);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.rfzj_post_card--topic.has-bg-image .rfzj_post_card__bottom,
.rfzj_post_card--topic.has-gradient-bg .rfzj_post_card__bottom {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	margin: 14px -26px -26px;
	padding: 18px 26px 20px;
}

.rfzj_post_card--topic .rfzj_post_card__copy {
	position: relative;
	z-index: 1;
	max-width: 75%;
}

.rfzj_post_card--topic .rfzj_post_card__label {
	display: block;
	margin-bottom: 10px;
	color: #007aff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rfzj_post_card--topic .rfzj_post_card__copy h3 {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	font-size: 30px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rfzj_post_card--topic .rfzj_post_card__copy p {
	display: -webkit-box;
	overflow: hidden;
	margin: 12px 0 0;
	color: #6e6e73;
	font-size: 17px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rfzj_post_card--topic .rfzj_post_card__bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
	margin-top: 14px;
}

.rfzj_post_card--topic .rfzj_post_card__logos {
	display: flex;
	gap: 6px;
	align-items: center;
}

.rfzj_post_card--topic .rfzj_post_card__logo-item {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.48);
	backdrop-filter: blur(12px);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.rfzj_post_card--topic .rfzj_post_card__logo-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rfzj_post_card--topic .rfzj_post_card__logo-item span {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 700;
}

.rfzj_post_card--topic .rfzj_post_card__logo-more {
	background: rgba(255, 255, 255, 0.28);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 700;
}

.rfzj_post_card--topic .rfzj_post_card__entity-count {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.rfzj_post_card--topic:not(.has-bg-image):not(.has-gradient-bg) .rfzj_post_card__entity-count {
	color: #86868b;
}

@media (max-width: 820px) {
	.rfzj_post_card--topic {
		min-height: 280px;
		padding: 22px;
	}

	.rfzj_post_card--topic .rfzj_post_card__copy {
		max-width: 88%;
	}

	.rfzj_post_card--topic .rfzj_post_card__copy h3 {
		font-size: 24px;
	}

	.rfzj_post_card--topic .rfzj_post_card__copy p {
		font-size: 15px;
	}

	.rfzj_post_card__logo-item {
		width: 38px;
		height: 38px;
		border-radius: 8px;
	}
}

@media (max-width: 640px) {
	.rfzj_post_card--topic {
		min-height: 260px;
		padding: 18px;
		border-radius: 18px;
	}

	.rfzj_post_card--topic .rfzj_post_card__copy h3 {
		font-size: 22px;
	}

	.rfzj_post_card--topic .rfzj_post_card__copy p {
		font-size: 14px;
	}

	.rfzj_post_card__logo-item {
		width: 34px;
		height: 34px;
		border-radius: 7px;
	}

	.rfzj_post_card__logo-item span {
		font-size: 15px;
	}
}
