@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

/* ───────────────────────────────
   Related Videos Container
─────────────────────────────── */
.matchday-related-container {
	font-family: 'Montserrat', sans-serif;
	margin-top: 0px;
	color: #F6BC5E;
}

/* Section Title */
.related-title {
	font-size: 22px;
	font-weight: 700;
	color: #F6BC5E;
	margin-bottom: 15px;
}

/* ───────────────────────────────
   Grid Layout (Vertical)
─────────────────────────────── */
.matchday-related-grid {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Each Item Row */
.related-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: transparent;
	border-bottom: 1px solid rgba(246, 188, 94, 0.15);
	padding-bottom: 12px;
}

/* ───────────────────────────────
   Thumbnail with Zoom Effect
─────────────────────────────── */
.related-thumb {
	display: block;
	border-radius: 6px;
	overflow: hidden;              /* important for zoom clipping */
	width: 125px;
	flex-shrink: 0;                /* prevents squishing in narrow layouts */
}

.related-thumb img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
	transition: transform 0.35s ease, opacity 0.25s ease;
	transform: scale(1);
}

.related-thumb:hover img {
	transform: scale(1.07);        /* zoom in smoothly */
	opacity: 0.9;                  /* subtle dim on hover */
}

/* ───────────────────────────────
   Meta Info
─────────────────────────────── */
.related-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Title Link */
.related-title-text a {
	color: #F6BC5E;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.3;
	display: inline-block;
	margin-bottom: 4px;
	transition: color 0.25s ease;
}

.related-title-text a:hover {
	color: #ffcf7e;
}

/* Date */
.related-date {
	font-size: 13px;
	opacity: 0.8;
}

/* ───────────────────────────────
   Responsive Layout
─────────────────────────────── */
@media (max-width: 600px) {
	.related-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
	}

	.related-thumb {
		width: 100%;
		max-width: 260px;
	}
}

/* NEW Badge */
.related-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	background-color: #F6BC5E;
	color: #220b17;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	text-transform: uppercase;
	z-index: 2;
}

/* Ensure the badge positions correctly over thumbnails */
.related-thumb {
	position: relative;
	display: block;
	border-radius: 6px;
	overflow: hidden;
	width: 125px;
	flex-shrink: 0;
}

.vod-views-container {
	font-family: 'Montserrat', sans-serif;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: flex-end; /* ✅ Align entire block to the right */
	gap: 8px; /* tighter spacing */
	margin-top: 0px;
	opacity: 0.9;
	width: 100%; /* ensures full width for proper right alignment */
	text-align: right;
}

/* Eye icon (smaller + aligned) */
.material-symbols-outlined.vod-eye {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 16px; /* ✅ smaller, subtler */
	letter-spacing: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	user-select: none;
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 20;
}