/**
 * Featured Video styles
 * Admin metabox and frontend video display.
 *
 * @package JLLT Genesis Block - Child
 */

/* ── Admin: Featured Video metabox ─────────────────────── */

.sfv-wrap label {
	margin-right: 12px;
	font-weight: 600;
}

.sfv-section {
	padding: 8px 0;
}

.sfv-section video {
	max-width: 100%;
	display: block;
	margin: 6px 0;
}

.sfv-section input[type="url"] {
	width: 100%;
}

.sfv-remove {
	color: #b32d2e;
	cursor: pointer;
	display: inline-block;
	margin-top: 4px;
}

/* ── Frontend: Video wrapper ───────────────────────────── */

.sfv-video-wrap {
	width: 100%;
}

.sfv-video-wrap video {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: var(--sfv-aspect-ratio, 16 / 9);
}

.sfv-video-wrap.sfv-embed-wrap {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: var(--sfv-padding-bottom, 56.25%);
}

.sfv-video-wrap.sfv-embed-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.blogs-post-listing .wp-block-post-featured-image .sfv-video-wrap video {
    height: 283px;
    aspect-ratio: unset;
    object-fit: cover;
}

.blogs-post-listing .wp-block-post-featured-image .sfv-video-wrap {
    height: 283px;
    overflow: hidden;
}