.wd-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.wd-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px;
	flex: 1;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.wd-carousel::-webkit-scrollbar {
	display: none;
}

.wd-tile {
	--wd-gap: 24px;
	scroll-snap-align: start;
	flex: 0 0 calc((100% - (var(--wd-gap) * (var(--wd-visible) - 1))) / var(--wd-visible));
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	overflow: hidden;
	background: var(--wd-tile-color, #101820);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wd-tile:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.wd-tile-title {
	font-family: 'TiemposFine', serif;
	font-weight: 300;
	font-size: 32px;
	line-height: 1;
	color: var(--wd-tile-text, #ffffff);
	padding: 20px 20px 0;
	height: 96px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.wd-tile-img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
	margin-top: 16px;
}

.wd-tile-body {
	padding: 16px 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	flex: 1;
}

.wd-tile-excerpt {
	font-family: 'Rand', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--wd-tile-text, #ffffff);
	opacity: 0.85;
	height: 96px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.wd-tile-date-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wd-tile-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Rand', sans-serif;
	font-size: 14px;
	color: var(--wd-tile-text, #ffffff);
}

.wd-tile-date-icon {
	flex-shrink: 0;
}

.wd-tile-price {
	flex-shrink: 0;
	text-align: right;
	font-family: 'Rand', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--wd-tile-text, #ffffff);
}

.wd-tile-btn {
	align-self: flex-start;
	margin-top: auto;
	border-radius: 999px;
	padding: 10px 20px;
	font-family: 'Rand', sans-serif;
	font-size: 14px;
	background: #3253FF;
	color: #ffffff;
	text-decoration: none;
	border: 2px solid #3253FF;
	transition: background 0.2s ease, color 0.2s ease;
}
.wd-tile-btn:hover {
	background: #ffffff;
	color: #3253FF;
}

.wd-carousel-arrow {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid #101820;
	background: #fff;
	cursor: pointer;
}
.wd-carousel-arrow:hover {
	background: #101820;
	color: #fff;
}

/* [workshop_dates_list] — used on a single workshop's own page.
   Card wrapper matching the "Registration details" reference pattern —
   pair this with a Heading widget above it reading "Upcoming Dates". */

.wd-list {
	background: #D7E4EA;
	padding: 48px;
}

.wd-list-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid #101820;
}
.wd-list-row:last-child {
	border-bottom: none;
}

.wd-list-date {
	font-family: 'Rand', sans-serif;
	font-size: 16px;
	color: #101820;
}

.wd-list-availability {
	font-style: italic;
	color: #666666;
}
.wd-tile-availability {
	font-style: italic;
	color: var(--wd-tile-text, #ffffff);
	opacity: 0.65;
}

.wd-list-btn {
	font-family: 'Rand', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #3253FF;
	text-decoration: none;
	white-space: nowrap;
}
.wd-list-btn:hover {
	text-decoration: underline;
}

.wd-empty {
	color: #666666;
	font-style: italic;
}
