.jlc-video-toggle {
	width: 100%;
}

.jlc-video-toggle__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #0f5380;
}

.jlc-video-toggle__wrapper iframe,
.jlc-video-toggle__wrapper video,
.jlc-video-toggle__thumbnail {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.jlc-video-toggle__thumbnail {
	cursor: pointer;
}

.jlc-video-toggle__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jlc-video-toggle__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	background: #007ac9;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.jlc-video-toggle__play {
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.jlc-video-toggle__thumbnail:hover .jlc-video-toggle__play {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.jlc-video-toggle__play svg {
	width: 28px;
	height: 28px;
	color: white;
}

.jlc-video-toggle__thumbnail:hover .jlc-video-toggle__play {
	transform: translate(-50%, -50%) scale(1.1);
}

.jlc-video-toggle__buttons {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.jlc-video-toggle__btn {
	padding: 8px 16px;
	border: 2px solid #e0e0e0;
	background: #ffffff;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.jlc-video-toggle__btn:hover {
	background: #e8f3fb;
	border-color: #1e73be;
	color: #1e73be;
}

.jlc-video-toggle__btn.active {
	background: #007ac9;
	border-color: #007ac9;
	color: #ffffff;
}

@media (max-width: 768px) {
	.jlc-video-toggle__buttons {
		justify-content: center;
	}

	.jlc-video-toggle__btn {
		font-size: 13px;
		padding: 7px 14px;
	}

	.jlc-video-toggle__play {
		width: 60px;
		height: 60px;
	}

	.jlc-video-toggle__play svg {
		width: 24px;
		height: 24px;
	}
}
