.otc-upcoming {
	--otc-sky: #009ad7;
	--otc-sky-dark: #0781ad;
	--otc-blue: #27348b;
	--otc-ink: #253139;
	--otc-line: #e2e2e2;
	max-width: 1160px;
	margin: 52px auto 72px;
	color: var(--otc-ink);
	font-family: Roboto, Arial, sans-serif;
}

.otc-upcoming__title {
	width: max-content;
	max-width: 100%;
	margin: 0 auto 48px;
	padding: 0 0 7px;
	border-bottom: 5px solid var(--otc-sky);
	font-family: "Arial Narrow", Oswald, sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.otc-upcoming__list {
	display: grid;
	gap: 30px;
}

.otc-upcoming__empty {
	max-width: 1160px;
	margin: 40px auto;
	padding: 20px;
	border-left: 5px solid #009ad7;
	background: #edf5f9;
	color: #253139;
	font-family: Roboto, Arial, sans-serif;
	text-align: center;
}

.otc-upcoming-card {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, 1fr);
	min-height: 350px;
	background: #fff;
	box-shadow: 0 3px 14px rgba(24, 42, 52, .16);
	overflow: hidden;
}

.otc-upcoming-card__image {
	display: block;
	min-height: 350px;
	background: linear-gradient(135deg, var(--otc-blue), var(--otc-sky));
	overflow: hidden;
}

.otc-upcoming-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 350px;
	object-fit: cover;
	transition: transform .35s ease;
}

.otc-upcoming-card__image:hover img {
	transform: scale(1.025);
}

.otc-upcoming-card__placeholder {
	display: flex;
	height: 100%;
	min-height: 350px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
}

.otc-upcoming-card__placeholder strong {
	font-size: 90px;
	line-height: .9;
}

.otc-upcoming-card__content {
	display: flex;
	min-width: 0;
	padding: 42px 38px 36px;
	flex-direction: column;
	align-items: flex-start;
}

.otc-upcoming-card__content h3 {
	width: 100%;
	margin: 10px 0 18px;
	font-family: "Arial Narrow", Oswald, sans-serif;
	font-size: clamp(24px, 2.6vw, 31px);
	line-height: 1.1;
	text-transform: uppercase;
}

.otc-upcoming-card__content h3 a {
	color: #111;
	text-decoration: none;
}

.otc-upcoming-card__meta {
	width: 100%;
	padding: 9px 0;
	border-top: 1px solid var(--otc-line);
	border-bottom: 1px solid var(--otc-line);
}

.otc-upcoming-card__meta p {
	margin: 3px 0;
	color: #687078;
	font-size: 16px;
	text-transform: uppercase;
}

.otc-upcoming-card__prices {
	margin: 11px 0 22px;
	padding: 0;
	list-style: none;
	color: var(--otc-sky-dark);
	font-size: 15px;
	text-transform: uppercase;
}

.otc-upcoming-card__prices li {
	margin: 1px 0;
}

.otc-upcoming-card__prices strong,
.otc-upcoming-card__prices .woocommerce-Price-amount {
	font-weight: 800;
}

.otc-upcoming-card__button {
	align-self: flex-end;
	margin-top: auto;
	padding: 12px 25px;
	background: var(--otc-sky);
	color: #fff !important;
	font-family: "Arial Narrow", Oswald, sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background .2s ease;
}

.otc-upcoming-card__button:hover {
	background: var(--otc-sky-dark);
}

@media (max-width: 800px) {
	.otc-upcoming {
		margin: 36px 16px 52px;
	}

	.otc-upcoming__title {
		margin-bottom: 28px;
	}

	.otc-upcoming-card {
		grid-template-columns: 1fr;
	}

	.otc-upcoming-card__image,
	.otc-upcoming-card__image img,
	.otc-upcoming-card__placeholder {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.otc-upcoming-card__content {
		padding: 25px 22px;
	}

	.otc-upcoming-card__content h3 {
		margin-top: 4px;
	}

	.otc-upcoming-card__button {
		width: 100%;
		padding: 14px;
		text-align: center;
	}
}
