/* Product grid */
.woo-el-product-grid {
	display: grid;
	width: 100%;
}

.woo-el-product-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: center;
}

.woo-el-product-card__image {
	display: block;
	overflow: hidden;
}

.woo-el-product-card__image img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

.woo-el-product-card__title {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.3;
}

.woo-el-product-card__title a {
	text-decoration: none;
}

.woo-el-product-card__price {
	font-weight: 600;
}

.woo-el-product-card__actions .button {
	display: inline-block;
	margin-top: 0.25rem;
}

/* Countdown block */
.woo-el-countdown-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.woo-el-countdown-block__image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.woo-el-countdown-block__title {
	margin: 0;
	font-size: 1.35rem;
}

.woo-el-countdown-block__date {
	opacity: 0.9;
}

.woo-el-countdown {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.woo-el-countdown__unit {
	min-width: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.woo-el-countdown__value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.woo-el-countdown__label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.85;
}

.woo-el-countdown-block__actions .button {
	display: inline-block;
}

.woo-el-empty {
	padding: 1rem;
	border: 1px dashed currentColor;
	opacity: 0.8;
}

/* Event schedule table */
.woo-el-schedule {
	width: 100%;
	box-sizing: border-box;
}

.woo-el-schedule__inner {
	width: 100%;
}

.woo-el-schedule__row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 0;
	box-sizing: border-box;
}

.woo-el-schedule__cell {
	box-sizing: border-box;
	min-width: 0;
	word-break: break-word;
}

.woo-el-schedule__row--head .woo-el-schedule__cell {
	font-weight: 600;
}

.woo-el-schedule__cell--cta {
	text-align: center;
}

.woo-el-schedule__divider {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	border: 0;
	padding: 0;
}

.woo-el-schedule__btn {
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1.25;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: 0;
	transition: opacity 0.15s ease;
}

.woo-el-schedule__btn:hover,
.woo-el-schedule__btn:focus {
	opacity: 0.9;
}

.woo-el-schedule__btn--soon {
	cursor: default;
}

@media (max-width: 767px) {
	.woo-el-schedule {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.woo-el-schedule__inner {
		min-width: 36rem;
	}
}
