.banner__youtube-position {
	position: absolute;
	top: calc(var(--header-height) + 7px);
	left: 50%;
	z-index: 4;
	height: 57px;
	padding: 0 96px;
	pointer-events: none;
	transform: translateX(-50%);
}

.banner__youtube-button {
	display: flex;
	align-items: center;
	gap: 16px;
	width: max-content;
	margin-left: auto;
	color: #fff;
	pointer-events: auto;
}

.banner__youtube-icon {
	display: flex;
	flex: 0 0 57px;
	align-items: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	color: #fff;
	background: var(--primary-default, #e92d28);
	border-radius: 50%;
	box-shadow: 0 3px 14px rgba(0, 0, 0, .35);
	transition: background-color .3s, transform .3s;
}

.banner__youtube-icon svg {
	width: 14px;
	height: 16px;
	margin-left: 3px;
}

.banner__youtube-text {
	padding-bottom: 3px;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: .01em;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
	border-bottom: 1px dotted rgba(255, 255, 255, .7);
}

.banner__youtube-arrow {
	display: none;
}

.banner__youtube-button:hover {
	color: #fff;
}

.banner__youtube-button:hover .banner__youtube-icon {
	background: var(--primary-hover, #cf2420);
	transform: scale(1.06);
}

.banner__youtube-button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 5px;
}

@media (max-width: 900px) {
	.banner__youtube-position {
		top: calc(var(--header-height) + 12px);
		padding: 0 12px;
	}

	.banner__youtube-button {
		gap: 12px;
	}

	.banner__youtube-icon {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
	}

	.banner__youtube-text {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.banner__slide--has-youtube {
		padding-bottom: 119px;
	}

	.banner__youtube-position {
		top: auto;
		bottom: 0;
		height: auto;
		padding: 0;
	}

	.banner__youtube-button {
		gap: 12px;
		width: 100%;
		min-height: 76px;
		margin-left: 0;
		padding: 16px 12px;
		color: #15130f;
		background: #fff;
		border-bottom: 1px solid #e9e7e3;
	}

	.banner__youtube-button:hover {
		color: #15130f;
	}

	.banner__youtube-icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.banner__youtube-icon svg {
		width: 14px;
		height: 16px;
	}

	.banner__youtube-text {
		padding: 0;
		font-size: 15px;
		text-shadow: none;
		border: 0;
	}

	.banner__youtube-arrow {
		display: block;
		flex: 0 0 8px;
		width: 8px;
		height: 14px;
		margin-left: auto;
		color: #c7c3bc;
	}

	.banner__youtube-button:focus-visible {
		outline-color: var(--primary-default, #e92d28);
		outline-offset: -4px;
	}
}