.item-description .youtube {
	max-width: 700px;
	margin: 0;
	aspect-ratio: 16 / 9;
	height: auto;
	padding-top: 0;
}

.youtube > p {
	margin: 0;
}

.taya-top-hero-slider {
	position: relative;
	width: 100%;
	margin: 0 0 30px;
	background: #171412;
	overflow: hidden;
	--taya-hero-ink: #191714;
	--taya-hero-paper: #f7f4ee;
	--taya-hero-line: #d9d0c7;
	--taya-hero-red: #9f1f27;
}

.taya-top-hero-slider__viewport {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 268px;
	grid-template-rows: auto auto;
	width: 100%;
	background: var(--taya-hero-paper);
}

.taya-top-hero-slider__stage {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 2 / 1;
	background: #ded8ce;
}

.taya-top-hero-slider__slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.taya-top-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.taya-top-hero-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.taya-top-hero-slider__details {
	position: relative;
	grid-column: 1;
	grid-row: 2;
	box-sizing: border-box;
	min-height: 94px;
	padding: 18px 30px 18px 34px;
	border-left: 6px solid var(--taya-hero-red);
	border-bottom: 1px solid var(--taya-hero-line);
	background:
		linear-gradient(90deg, rgba(159, 31, 39, 0.08), rgba(159, 31, 39, 0) 34%),
		linear-gradient(180deg, #fff, var(--taya-hero-paper));
	color: var(--taya-hero-ink);
}

.taya-top-hero-slider__caption {
	box-sizing: border-box;
	display: none;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 28px;
	width: 100%;
	min-height: 58px;
	color: var(--taya-hero-ink);
	text-decoration: none;
}

.taya-top-hero-slider__caption.is-active {
	display: grid;
}

.taya-top-hero-slider__caption-main {
	display: block;
	grid-column: 1;
	grid-row: 1;
	overflow: hidden;
	color: var(--taya-hero-red);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.taya-top-hero-slider__caption-description {
	display: block;
	grid-column: 1;
	grid-row: 2;
	margin-top: 6px;
	overflow: hidden;
	color: var(--taya-hero-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.55;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.taya-top-hero-slider__caption-cta {
	grid-column: 2;
	grid-row: 1 / 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid var(--taya-hero-ink);
	background: var(--taya-hero-ink);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.taya-top-hero-slider__caption:hover,
.taya-top-hero-slider__caption:focus {
	text-decoration: none;
}

.taya-top-hero-slider__caption:hover .taya-top-hero-slider__caption-cta,
.taya-top-hero-slider__caption:focus .taya-top-hero-slider__caption-cta {
	border-color: var(--taya-hero-red);
	background: var(--taya-hero-red);
}

.taya-top-hero-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: none;
	width: 44px;
	height: 60px;
	border: 0;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, opacity 0.2s ease;
}

.taya-top-hero-slider__arrow:hover,
.taya-top-hero-slider__arrow:focus {
	background: rgba(0, 0, 0, 0.76);
	outline: 2px solid rgba(255, 255, 255, 0.8);
	outline-offset: 2px;
}

.taya-top-hero-slider__arrow--prev {
	left: 15px;
}

.taya-top-hero-slider__arrow--next {
	right: 15px;
}

.taya-top-hero-slider__dots {
	position: absolute;
	right: 16px;
	bottom: 12px;
	z-index: 3;
	display: none;
	justify-content: center;
	gap: 7px;
	padding: 0;
	box-sizing: border-box;
}

.taya-top-hero-slider__dot {
	display: block;
	width: 9px;
	height: 9px;
	margin: 0 auto;
	padding: 0;
	border: 1px solid rgba(25, 23, 20, 0.62);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.taya-top-hero-slider__dot.is-active,
.taya-top-hero-slider__dot:hover,
.taya-top-hero-slider__dot:focus {
	background: var(--taya-hero-red);
	border-color: var(--taya-hero-red);
	outline: none;
}

.taya-top-hero-slider__thumbs {
	grid-column: 2;
	grid-row: 1 / 3;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 0;
	padding: 12px 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
		#171412;
}

.taya-top-hero-slider__thumb {
	position: relative;
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	flex: 1 1 0;
	overflow: hidden;
	width: 100%;
	min-width: 0;
	min-height: 54px;
	padding: 6px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.82);
	cursor: pointer;
	text-align: left;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.taya-top-hero-slider__thumb-media {
	display: block;
	overflow: hidden;
	width: 68px;
	aspect-ratio: 5 / 2;
	background: #000;
}

.taya-top-hero-slider__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.taya-top-hero-slider__thumb-copy {
	display: block;
	min-width: 0;
}

.taya-top-hero-slider__thumb-label {
	display: -webkit-box;
	overflow: hidden;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.32;
	text-overflow: clip;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.taya-top-hero-slider__thumb-note {
	display: block;
	overflow: hidden;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.48);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 10px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.taya-top-hero-slider__thumb.is-active,
.taya-top-hero-slider__thumb:hover,
.taya-top-hero-slider__thumb:focus {
	border-color: rgba(159, 31, 39, 0.8);
	background: var(--taya-hero-paper);
	color: var(--taya-hero-ink);
	outline: none;
	box-shadow: inset 4px 0 0 var(--taya-hero-red);
}

.taya-top-hero-slider__thumb.is-active .taya-top-hero-slider__thumb-note,
.taya-top-hero-slider__thumb:hover .taya-top-hero-slider__thumb-note,
.taya-top-hero-slider__thumb:focus .taya-top-hero-slider__thumb-note {
	color: rgba(25, 23, 20, 0.52);
}

@media screen and (max-width: 980px) {
	.taya-top-hero-slider__viewport {
		display: block;
	}

	.taya-top-hero-slider__stage {
		display: block;
	}

	.taya-top-hero-slider__details {
		min-height: 112px;
		padding: 16px 18px 36px;
		border-left: 0;
		border-top: 5px solid var(--taya-hero-red);
	}

	.taya-top-hero-slider__caption {
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 14px;
		min-height: 60px;
	}

	.taya-top-hero-slider__caption-main {
		font-size: 12px;
	}

	.taya-top-hero-slider__caption-description {
		display: -webkit-box;
		font-size: 14px;
		line-height: 1.55;
		text-overflow: clip;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.taya-top-hero-slider__caption-cta {
		min-height: 38px;
		padding: 0 14px;
		font-size: 12px;
	}

	.taya-top-hero-slider__arrow {
		display: block;
	}

	.taya-top-hero-slider__dots {
		display: flex;
		right: 18px;
		bottom: 13px;
	}

	.taya-top-hero-slider__thumbs {
		display: none;
	}
}

@media screen and (max-width: 700px) {
	.taya-top-hero-slider {
		margin-bottom: 22px;
	}

	.taya-top-hero-slider__details {
		padding: 14px 14px 36px;
	}

	.taya-top-hero-slider__arrow {
		width: 36px;
		height: 46px;
		border-radius: 0;
		font-size: 36px;
	}

	.taya-top-hero-slider__arrow--prev {
		left: 0;
	}

	.taya-top-hero-slider__arrow--next {
		right: 0;
	}

	.taya-top-hero-slider__caption {
		display: none;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		gap: 0;
	}

	.taya-top-hero-slider__caption.is-active {
		display: block;
	}

	.taya-top-hero-slider__caption-description {
		margin-top: 5px;
		font-size: 13px;
		-webkit-line-clamp: 2;
	}

	.taya-top-hero-slider__caption-cta {
		display: inline-flex;
		margin-top: 10px;
		min-height: 32px;
		padding: 0 12px;
	}
}

.youtube .taya-youtube-lite {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #222;
}

.taya-youtube-lite__button {
	display: flex;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 0;
	background: linear-gradient(135deg, #2f2f2f, #111);
	color: #fff;
	cursor: pointer;
}

.taya-youtube-lite__button:hover,
.taya-youtube-lite__button:focus {
	background: linear-gradient(135deg, #3b3b3b, #161616);
	outline: 3px solid #d7a543;
	outline-offset: -3px;
}

.taya-youtube-lite__play {
	display: grid;
	place-items: center;
	width: 74px;
	height: 52px;
	border-radius: 10px;
	background: #c9302c;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.taya-youtube-lite__play::before {
	content: "";
	display: block;
	margin-left: 5px;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 21px solid #fff;
}

.taya-youtube-lite__label {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}
