.wp-block-sheen-blocks-event-list {
	padding: 0;
	margin: 0;
}
@media (min-width: 961px) {
	.wp-block-sheen-blocks-event-list {
		max-width: 100%;
		padding: 0;
	}
}
.wp-block-sheen-blocks-event-list .sheen-event-list-layout {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.wp-block-sheen-blocks-event-list .sheen-event-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-event-list .sheen-event-list-link:hover {
	color: var(--wp--preset--color--ugm-primary);
}
.wp-block-sheen-blocks-event-list .sheen-event-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-event-list .sheen-event-list-link:hover .sheen-event-list-link-arrow {
	background: var(--wp--preset--color--ugm-secondary);
	color: var(--wp--preset--color--ugm-primary);
}
.wp-block-sheen-blocks-event-list .sheen-event-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: 16px 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-event-list .sheen-event-list-scroll::-webkit-scrollbar {
	display: none;
}
.wp-block-sheen-blocks-event-list .sheen-event-list-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.wp-block-sheen-blocks-event-list .sheen-event-list-progress {
	flex: 1;
	position: relative;
	height: 4px;
	min-width: 40px;
	align-self: center;
}
.wp-block-sheen-blocks-event-list .sheen-event-list-progress-track {
	position: absolute;
	inset: 0;
	background: #e8e8e8;
	border-radius: 2px;
}
.wp-block-sheen-blocks-event-list .sheen-event-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-event-list .sheen-event-list-nav {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.wp-block-sheen-blocks-event-list .sheen-event-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-event-list .sheen-event-nav-btn:hover {
	background: var(--wp--preset--color--ugm-primary);
	color: #fff;
}
/* Event card — clean, minimal design */
.wp-block-sheen-blocks-event-list .sheen-event-card {
	flex: 0 0 auto;
	min-width: 300px;
	width: fit-content;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	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-event-list .sheen-event-card:hover {
	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-event-list .sheen-event-thumbnail {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}
.wp-block-sheen-blocks-event-list .sheen-event-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.wp-block-sheen-blocks-event-list .sheen-event-card:hover .sheen-event-thumbnail img {
	transform: scale(1.03);
}
.wp-block-sheen-blocks-event-list .sheen-event-thumbnail-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 50%, #f5f5f5 100%);
	background-size: 200% 200%;
	animation: sheen-shimmer 1.5s ease-in-out infinite;
}
.wp-block-sheen-blocks-event-list .sheen-event-card-content {
	padding: 20px;
}
.wp-block-sheen-blocks-event-list .sheen-event-date-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 10px;
}
.wp-block-sheen-blocks-event-list .sheen-event-date-block {
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.wp-block-sheen-blocks-event-list .sheen-event-date-year {
	font-size: 13px;
	color: #888;
	white-space: nowrap;
}
.wp-block-sheen-blocks-event-list .sheen-event-date-main {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	white-space: nowrap;
}
.wp-block-sheen-blocks-event-list .sheen-event-date-weekday {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
}
.wp-block-sheen-blocks-event-list .sheen-event-separator {
	font-size: 14px;
	color: #ccc;
}
.wp-block-sheen-blocks-event-list .sheen-event-title {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 14px 0;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wp-block-sheen-blocks-event-list .sheen-event-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wp-block-sheen-blocks-event-list .sheen-event-location {
	font-size: 13px;
	color: #888;
	flex: 1;
}
.wp-block-sheen-blocks-event-list .sheen-event-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-event-list .sheen-event-card:hover .sheen-event-arrow {
	background: var(--wp--preset--color--ugm-secondary);
	color: var(--wp--preset--color--ugm-primary);
}
/* Live badge + countdown badge */
.wp-block-sheen-blocks-event-list .sheen-event-thumbnail .sheen-event-live-badge,
.wp-block-sheen-blocks-event-list .sheen-event-thumbnail .sheen-event-countdown-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
}
@media (max-width: 768px) {
	.wp-block-sheen-blocks-event-list .sheen-event-card {
		flex: 0 0 auto;
		min-width: 260px;
		width: fit-content;
	}
	.wp-block-sheen-blocks-event-list .sheen-event-list-footer {
		flex-wrap: wrap;
		gap: 0;
		padding-top: 16px;
	}
	.wp-block-sheen-blocks-event-list .sheen-event-list-progress {
		flex: 0 0 100%;
		width: 100%;
		order: -1;
		margin-bottom: 12px;
	}
}

.wp-block-sheen-blocks-event-list .sheen-event-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, #073C64);
	background: transparent;
	border: none;
	padding: 4px 0;
	border-radius: 0;
	box-shadow: none;
	line-height: 1.4;
	float: none;
	text-align: left;
}
.wp-block-sheen-blocks-event-list .sheen-event-list-link:hover {
	background: transparent;
	color: var(--wp--preset--color--ugm-primary, #073C64);
}
.wp-block-sheen-blocks-event-list .sheen-event-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, #073C64);
	color: var(--wp--preset--color--ugm-secondary-bg, #fff);
	padding: 0;
	transition: background .2s ease;
}
.wp-block-sheen-blocks-event-list .sheen-event-list-link:hover .sheen-event-list-link-arrow {
	background: var(--wp--preset--color--ugm-secondary, #facc15);
	color: var(--wp--preset--color--ugm-primary, #073C64);
}

/* LIVE badge + countdown badge */
.sheen-event-thumbnail {
	position: relative;
}
.sheen-event-live-badge,
.sheen-event-countdown-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .5px;
	color: #fff;
	border-radius: 4px;
	line-height: 1.4;
}
.sheen-event-live-badge {
	background: #e53e3e;
	animation: sheen-live-pulse 2s ease-in-out infinite;
}
.sheen-event-live-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	flex-shrink: 0;
}
.sheen-event-countdown-badge {
	background: rgba(0, 0, 0, .65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
@keyframes sheen-live-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .7; }
}
.post-event .sheen-event-live-badge,
.post-event .sheen-event-countdown-badge {
	font-size: 10px;
	padding: 1px 8px;
}
