.wp-block-sheen-blocks-content-list {
	padding: 0;
	margin: 0;
}
@media (min-width: 961px) {
	.wp-block-sheen-blocks-content-list {
		max-width: 100%;
		padding: 0;
	}
}
.wp-block-sheen-blocks-content-list .sheen-content-list-layout {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 6px 0;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-underline {
	width: 40px;
	height: 3px;
	background: var(--wp--preset--color--ugm-secondary);
	margin-bottom: 8px;
	border-radius: 2px;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	color: var(--wp--preset--color--ugm-primary);
	transition: color 0.2s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-link:hover {
	color: var(--wp--preset--color--ugm-primary);
}
.wp-block-sheen-blocks-content-list .sheen-content-list-link-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--wp--preset--color--ugm-primary);
	color: #fff;
	transition: background 0.2s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-link:hover .sheen-content-list-link-arrow {
	background: var(--wp--preset--color--ugm-secondary);
	color: var(--wp--preset--color--ugm-primary);
}
.wp-block-sheen-blocks-content-list .sheen-content-list-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-padding: 100vw;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 12px calc(50vw - 50% + 20px) 20px calc(50vw - 50% + 20px);
	/* Full-bleed to both viewport edges; item start/inset handled by padding. */
	margin: -12px calc(50% - 50vw) -20px;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-scroll::-webkit-scrollbar {
	display: none;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-progress {
	flex: 1;
	position: relative;
	height: 4px;
	min-width: 40px;
	align-self: center;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-progress-track {
	position: absolute;
	inset: 0;
	background: #e8e8e8;
	border-radius: 2px;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: var(--wp--preset--color--ugm-primary);
	border-radius: 2px;
	transition: width 0.1s ease-out;
	z-index: 2;
}
.wp-block-sheen-blocks-content-list .sheen-content-list-nav {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.wp-block-sheen-blocks-content-list .sheen-content-nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #333;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-nav-btn:hover {
	background: var(--wp--preset--color--ugm-primary);
	color: #fff;
}
/* Card styles — clean, minimal design */
.wp-block-sheen-blocks-content-list .sheen-content-card {
	flex: 0 0 300px;
	scroll-snap-align: start;
	display: block;
	text-decoration: none;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-card:hover {
	text-decoration: none;
	background: rgba(0,0,0,0.04);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.wp-block-sheen-blocks-content-list .sheen-content-card-thumbnail {
	width: 100%;
	height: 180px;
	overflow: hidden;
}
.wp-block-sheen-blocks-content-list .sheen-content-card-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-card:hover .sheen-content-card-thumbnail img {
	transform: scale(1.03);
}
.wp-block-sheen-blocks-content-list .sheen-content-card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 50%, #f5f5f5 100%);
	background-size: 200% 200%;
	animation: sheen-content-shimmer 1.5s ease-in-out infinite;
}
@keyframes sheen-content-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}
.wp-block-sheen-blocks-content-list .sheen-content-card-content {
	padding: 20px;
}
.wp-block-sheen-blocks-content-list .sheen-content-card-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.wp-block-sheen-blocks-content-list .sheen-content-card-title {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
	min-width: 0;
}
.wp-block-sheen-blocks-content-list .sheen-content-card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #333;
	flex-shrink: 0;
	transition: background 0.2s ease, color 0.2s ease;
}
.wp-block-sheen-blocks-content-list .sheen-content-card:hover .sheen-content-card-arrow {
	background: var(--wp--preset--color--ugm-secondary);
	color: var(--wp--preset--color--ugm-primary);
}
.wp-block-sheen-blocks-content-list .sheen-content-card-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 768px) {
	.wp-block-sheen-blocks-content-list .sheen-content-card {
		flex: 0 0 260px;
	}
	.wp-block-sheen-blocks-content-list .sheen-content-list-footer {
		flex-wrap: wrap;
		gap: 0;
		padding-top: 16px;
	}
	.wp-block-sheen-blocks-content-list .sheen-content-list-progress {
		flex: 0 0 100%;
		width: 100%;
		order: -1;
		margin-bottom: 12px;
	}
}
