/* ============================================
   PROJVIDEO BLOCK STYLES
   ============================================ */

.projvideo-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.projvideo-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.projvideo-image,
.projvideo-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.projvideo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.45 );
	z-index: 2;
}

.projvideo-logo-wrap {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.projvideo-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* ---- Editor preview only ---- */
.projvideo-editor-preview {
	position: relative;
	border: 1px dashed #ccc;
	padding: 10px;
	text-align: center;
	min-height: 200px;
}

.projvideo-logo-preview {
	max-width: 150px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	z-index: 3;
}

.projvideo-overlay-preview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.35 );
	z-index: 2;
}