/**
 * =======================================================================
 * SILVERFOX ENGINE: VIDEO REPOSITORY STYLESHEET
 * =======================================================================
 */

/* Responsive iFrame Container */
.video-responsive-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	background-color: #000;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	margin-bottom: 20px;
}

.video-responsive-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Video Metadata Styling */
.video-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	background: #fdfdfd;
	border: 1px solid #eaeaea;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	color: #555;
}

.video-meta-item strong {
	display: block;
	color: #842c21;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 3px;
}

.video-category-header {
	color: #333;
	border-bottom: 2px solid #842c21;
	padding-bottom: 10px;
	margin-top: 40px;
	margin-bottom: 30px;
}

.margin-bottom-30 { margin-bottom: 30px}