/* ──────────────────────────────────────────────────────────
   MNC Video List Widget
   ────────────────────────────────────────────────────────── */

.mnc-video-list-wrapper {
	width: 100%;
}

/* ── Header row ──────────────────────────────────────────── */

.mnc-video-list-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 20px;
}

.mnc-video-list-heading {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111;
	margin: 0;
}

.mnc-video-list-see-all {
	font-size: 0.9rem;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: 16px;
}

.mnc-video-list-see-all:hover {
	text-decoration: underline;
}

.mnc-video-list-see-all::after {
	content: ' ›';
}

/* ── Scroll container ────────────────────────────────────── */

.mnc-video-list-scroll-outer {
	position: relative;
}

.mnc-video-list-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px; /* room for scrollbar */
	scrollbar-width: none; /* hide scrollbar Firefox */
}

.mnc-video-list-scroll::-webkit-scrollbar {
	display: none; /* hide scrollbar Chrome/Safari */
}

/* ── Arrow button ────────────────────────────────────────── */

.mnc-video-list-arrow {
	position: absolute;
	top: 0;
	right: 0;
	height: calc(100% - 8px); /* match scroll container minus padding */
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	color: #333;
	z-index: 2;
	transition: background 0.15s ease;
}

.mnc-video-list-arrow:hover {
	background: rgba(255, 255, 255, 0.97);
}

.mnc-video-list-arrow.mnc-arrow-hidden {
	display: none;
}

/* ── Card ────────────────────────────────────────────────── */

.mnc-video-list__item {
	flex: 0 0 auto;
	width: 260px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

/* ── Thumbnail ───────────────────────────────────────────── */

.mnc-video-list__thumb-wrap {
	position: relative;
	width: 100%;
}

.mnc-video-list__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #1a5c9e;
}

.mnc-video-list__thumb--empty {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #1a5c9e;
}

.mnc-video-list__duration {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
	color: #111;
	font-size: 0.68rem;
	font-weight: 600;
	padding: 1px 5px;
	font-variant-numeric: tabular-nums;
	line-height: 1.5;
	pointer-events: none;
}

.mnc-video-list__duration::before {
	content: '▶ ';
	font-size: 0.55rem;
	vertical-align: middle;
}

/* ── Info ────────────────────────────────────────────────── */

.mnc-video-list__info {
	padding: 10px 0 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.mnc-video-list__title {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
	margin-bottom: 8px;
}

.mnc-video-list__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.mnc-video-list__theme {
	font-size: 0.75rem;
	color: #2563eb;
}

.mnc-video-list__date {
	font-size: 0.75rem;
	color: #999;
}

/* ── Vertical layout ─────────────────────────────────────── */

.mnc-video-list-vertical-outer {
	width: 100%;
}

.mnc-video-list-vertical {
	display: flex;
	flex-direction: column;
}

.mnc-video-list-vertical .mnc-video-list__item {
	width: 100%;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid #ebebeb;
	transition: background 0.15s ease;
}

.mnc-video-list-vertical .mnc-video-list__item:last-child {
	border-bottom: none;
}

.mnc-video-list-vertical .mnc-video-list__item:hover {
	background: rgba(0, 0, 0, 0.03);
}

.mnc-video-list-vertical .mnc-video-list__thumb-wrap {
	flex-shrink: 0;
	width: 160px;
}

.mnc-video-list-vertical .mnc-video-list__info {
	padding-top: 0;
	justify-content: space-between;
}
