.vshow-wrap {
	box-sizing: border-box;
}

.vshow-cover {
	position: relative;
	overflow: visible;
	height: 400px;
}

.vshow-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--vshow-pos-x, 50%) var(--vshow-pos-y, 50%);
	display: block;
	border-radius: inherit;
	overflow: hidden;
}

.vshow-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.vshow-overlay-text {
	font-size: 18px;
	font-style: italic;
	color: #ffffff;
	line-height: 1.5;
}

.vshow-playbar {
	display: flex;
	align-items: center;
	padding: 16px 0;
}

.vshow-play-text {
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	white-space: nowrap;
	flex-shrink: 0;
}

.vshow-play-line {
	flex: 1;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0 16px;
}

.vshow-play-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: #222222;
	border: 2px solid #222222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.vshow-play-btn svg {
	fill: #ffffff;
	width: 16px;
	height: 16px;
}

.vshow-play-btn:hover {
	opacity: 0.8;
}

/* Modal */
.vshow-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.vshow-modal.is-open {
	display: flex;
}

.vshow-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
}

.vshow-modal-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	z-index: 1;
}

.vshow-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

.vshow-modal-close:hover {
	opacity: 0.7;
}

.vshow-modal-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 4px;
}

.vshow-modal-video iframe,
.vshow-modal-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
