/**
 * 缩略图填充模式
 * fill = 拉伸铺满（完整显示、不裁切放大）
 */
.bg-fill {
	background-size: 100% 100% !important;
	background-repeat: no-repeat !important;
}

/* 列表卡片圆角加大 */
.post-item {
	border-radius: 0.75rem;
}

.post-item .entry-media,
.post-item .entry-media .media-img {
	border-radius: inherit;
}

/*
 * 列表卡片封面改为填充：覆盖主题默认 cover，避免裁切放大。
 * contain / auto 仍可按后台选项生效。
 */
.post-item .entry-media .media-img,
.post-item .entry-media .media-img.bg-cover,
.post-item .entry-media .media-img.bg-fill {
	background-size: 100% 100% !important;
	background-repeat: no-repeat !important;
}

.post-item .entry-media .media-img.bg-contain {
	background-size: contain !important;
}

.post-item .entry-media .media-img.bg-auto {
	background-size: auto !important;
}

.post-item .entry-media .media-img.bg-cover-crop {
	background-size: cover !important;
}
