.aijun-card {
	background: var(--aijun-surface);
	border: 1px solid var(--aijun-border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(31, 26, 20, 0.08);
	height: auto;
	display: flex;
	flex-direction: column;
	will-change: transform, box-shadow;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.aijun-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(31, 26, 20, 0.12);
	border-color: rgba(240, 131, 26, 0.35);
}

.aijun-card-media img {
	width: 100%;
	height: var(--aijun-card-image-height, 200px);
	object-fit: cover;
	display: block;
}

.aijun-card-body {
	padding: 22px 24px 26px;
	flex: 1;
}

.aijun-card-body h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.aijun-card-sub {
	margin: 0 0 12px;
	color: var(--aijun-text-muted);
	font-weight: 600;
}

.aijun-card-text {
	color: var(--aijun-text-muted);
	margin-bottom: 12px;
}

.aijun-card-meta {
	color: var(--aijun-text-muted);
	margin: 6px 0;
}
