body.blog {
	background: #f5f6f8 !important;
}

body.blog article {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.blog .cm-posts {
	gap: 5px !important;
}

body.blog .pde-card {
	position: relative;
	display: flex;
	gap: 10px;
	background: #f0f7fa;
	border-radius: 14px;
	padding: 10px 14px 28px;
	border: 1px solid #e1e5ea;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
	box-sizing: border-box;
}

body.blog .pde-card:hover {
	background: #e8f2f6;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
	transform: translateY(-1px);
}

body.blog article:first-of-type .pde-card {
	margin-top: 5px !important;
}

body.blog .pde-card-img {
	width: 50px;
	height: 50px;
	flex: 0 0 50px;
	border-radius: 12px;
	overflow: hidden;
	background: #edf0f4;
}

body.blog .pde-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.blog .pde-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

body.blog .pde-card-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	color: #000;
	word-break: break-word;
}

body.blog .pde-card-date {
	position: absolute;
	right: 12px;
	bottom: 6px;
	font-size: 11px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: 0.9;
}

body.blog .pde-card-link {
	position: absolute;
	inset: 0;
	z-index: 5;
}
