/**
 * Listof.Best — Editorial 3-Column Video Hub CSS (Matching News / Best Layout)
 */

/* ─── Variables & Tokens ─── */
:root {
	--vh-bg-card: #ffffff;
	--vh-border: #e2e8f0;
	--vh-border-hover: #cbd5e1;
	--vh-text-main: #0f172a;
	--vh-text-muted: #5b6675;
	--vh-text-light: #767f8c;
	--vh-primary: #FF6A2B;
	--vh-primary-600: #E85A1E;
	--vh-primary-glow: rgba(255, 106, 43, 0.25);
	--vh-surface-2: #f7f8fa;
	--vh-radius: 12px;
	--vh-radius-sm: 8px;
	--vh-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
	--vh-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
}

[data-brx-theme="dark"],
.dark {
	--vh-bg-card: #18181b;
	--vh-border: rgba(255, 255, 255, 0.1);
	--vh-border-hover: rgba(255, 255, 255, 0.22);
	--vh-text-main: #f8fafc;
	--vh-text-muted: #a1a1aa;
	--vh-text-light: #71717a;
	--vh-surface-2: #27272a;
	--vh-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--vh-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

/* ─── Container Bounds ─── */
.lb-archive[data-v2-type="video"] {
	display: block !important;
	max-width: 1280px !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding: 0 16px 60px !important;
	box-sizing: border-box !important;
}

.lb-archive[data-v2-type="video"] .lb-rail {
	display: none !important;
}

.lb-archive[data-v2-type="video"] .lb-results {
	width: 100% !important;
	max-width: 100% !important;
}

.lb-archive[data-v2-type="video"] .lb-results__hd {
	display: none !important;
}

/* ─── Top Filter & Navigation Bar ─── */
.lb-video-hub-controls {
	margin-bottom: 24px;
	width: 100%;
}

.lb-video-nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.lb-video-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 3px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: var(--vh-radius);
	border: 1px solid var(--vh-border);
}

[data-brx-theme="dark"] .lb-video-tabs {
	background: rgba(255, 255, 255, 0.03);
}

.lb-video-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--vh-text-muted);
	text-decoration: none;
	transition: all 0.15s ease;
	white-space: nowrap;
}

.lb-video-tab:hover {
	color: var(--vh-text-main);
	background: rgba(0, 0, 0, 0.04);
}

[data-brx-theme="dark"] .lb-video-tab:hover {
	background: rgba(255, 255, 255, 0.06);
}

.lb-video-tab.is-active {
	background: var(--vh-bg-card);
	color: var(--vh-text-main);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--vh-border-hover);
}

/* Search */
.lb-video-search {
	position: relative;
	width: 260px;
}

.lb-video-search__icon {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--vh-text-light);
	pointer-events: none;
}

.lb-video-search__input {
	width: 100%;
	padding: 7px 10px 7px 32px;
	font-size: 0.84rem;
	background: var(--vh-bg-card);
	border: 1px solid var(--vh-border);
	border-radius: var(--vh-radius-sm);
	color: var(--vh-text-main);
	box-shadow: var(--vh-shadow-sm);
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.lb-video-search__input:focus {
	outline: none;
	border-color: var(--vh-primary);
	box-shadow: 0 0 0 3px var(--vh-primary-glow);
}

/* Sort */
.lb-video-sort-group {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lb-video-sort-btn {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	background: var(--vh-bg-card);
	border: 1px solid var(--vh-border);
	border-radius: var(--vh-radius-sm);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--vh-text-muted);
	text-decoration: none;
	transition: all 0.15s ease;
}

.lb-video-sort-btn:hover {
	border-color: var(--vh-border-hover);
	color: var(--vh-text-main);
}

.lb-video-sort-btn.is-active {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

[data-brx-theme="dark"] .lb-video-sort-btn.is-active {
	background: #f8fafc;
	color: #0f172a;
	border-color: #f8fafc;
}

/* Service Filter Chips */
.lb-video-service-chips {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding-top: 4px;
}

.lb-video-service-chips__title {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--vh-text-light);
}

.lb-video-service-chips__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.lb-video-service-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 9px;
	background: var(--vh-bg-card);
	border: 1px solid var(--vh-border);
	border-radius: 9999px;
	font-size: 0.76rem;
	font-weight: 500;
	color: var(--vh-text-main);
	text-decoration: none;
	transition: all 0.15s ease;
}

.lb-video-service-chip:hover {
	border-color: var(--vh-primary);
	transform: translateY(-1px);
}

.lb-video-service-chip.is-active {
	background: rgba(255, 106, 43, 0.1);
	border-color: var(--vh-primary);
	color: var(--vh-primary-600);
	font-weight: 600;
}

.lb-video-service-chip__logo {
	width: 13px;
	height: 13px;
	border-radius: 2px;
	object-fit: contain;
}

.lb-video-service-chip__count {
	font-size: 0.7rem;
	padding: 1px 4px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 9999px;
	color: var(--vh-text-muted);
}

.lb-video-service-chip--reset {
	color: #ef4444;
	border-color: rgba(239, 68, 68, 0.25);
	background: rgba(239, 68, 68, 0.05);
}

/* =========================================================================
   3-COLUMN EDITORIAL HERO GRID
   ========================================================================= */

.lb-video-editorial-wrapper {
	width: 100%;
	box-sizing: border-box;
}

.lb-video-editorial-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.24fr) minmax(0, 1.08fr) minmax(0, 0.95fr);
	gap: 22px;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
}

.lb-video-col {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.lb-video-subhd {
	font-size: 0.84rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--vh-text-light);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lb-video-subhd__dot {
	width: 6px;
	height: 6px;
	background: var(--vh-primary);
	border-radius: 50%;
	box-shadow: 0 0 6px var(--vh-primary);
}

/* ─── COLUMN 1: Story / Video of the Day (Hero Card) ─── */
.lb-video-col--hero {
	height: 100%;
}

.lb-video-hero-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	flex: 1;
	border-radius: var(--vh-radius);
	border: 1.5px solid var(--vh-primary);
	background: var(--vh-bg-card);
	box-shadow: 0 4px 16px rgba(255, 106, 43, 0.1);
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}

.lb-video-hero-card:hover {
	border-color: var(--vh-primary-600);
	box-shadow: 0 8px 24px rgba(255, 106, 43, 0.18);
	transform: translateY(-2px);
}

.lb-video-hero-card__cover {
	position: relative;
	margin: 0;
	width: 100%;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #0b0f19;
	flex-shrink: 0;
}

.lb-video-hero-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lb-video-hero-card:hover .lb-video-hero-card__cover img {
	transform: scale(1.04);
}

/* Overlay badges */
.lb-video-hero-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
}

.lb-video-hero-card__tool-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 8px;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	font-size: 0.74rem;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	z-index: 3;
}

.lb-video-hero-card__tool-icon {
	width: 13px;
	height: 13px;
	border-radius: 2px;
	object-fit: contain;
}

.lb-video-hero-card__duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 3;
}

/* Play glow button in hero */
.lb-video-hero-play-btn {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #0f172a;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 4;
}

.lb-video-hero-play-btn svg {
	margin-left: 2px;
}

.lb-video-hero-card:hover .lb-video-hero-play-btn {
	transform: translate(-50%, -50%) scale(1.06);
	background: var(--vh-primary);
	color: #ffffff;
	box-shadow: 0 0 25px rgba(255, 106, 43, 0.6);
}

/* Liquid Glass Title Overlay */
.lb-video-hero-card__glass {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.4rem 1.1rem 0.85rem;
	background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.45) 28%, rgba(8, 12, 20, 0.82) 65%, rgba(8, 12, 20, 0.96) 100%);
	backdrop-filter: blur(10px);
	z-index: 2;
}

.lb-video-hero-card__title {
	font-size: 1.18rem;
	font-weight: 750;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: #ffffff;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.lb-video-hero-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	box-sizing: border-box;
}

.lb-video-hero-card__desc {
	font-size: 0.88rem;
	color: var(--vh-text-muted);
	line-height: 1.45;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lb-video-hero-card__meta {
	margin-top: auto;
	padding-top: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--vh-text-light);
	border-top: 1px solid var(--vh-border);
}

.lb-video-hero-card__channel {
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	color: var(--vh-text-main);
}

.lb-video-hero-card__stats {
	display: flex;
	align-items: center;
	gap: 4px;
}

.lb-video-hero-card__views {
	font-weight: 600;
	color: var(--vh-primary);
}

.lb-video-hero-card__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}

.lb-video-btn--hero-play {
	background: var(--vh-primary);
	color: #ffffff;
	border: none;
	padding: 7px 14px;
	border-radius: var(--vh-radius-sm);
	font-size: 0.82rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: background 0.15s;
}

.lb-video-btn--hero-play:hover {
	background: var(--vh-primary-600);
}

.lb-video-btn--hero-tool {
	background: transparent;
	color: var(--vh-text-muted);
	border: 1px solid var(--vh-border);
	padding: 6px 12px;
	border-radius: var(--vh-radius-sm);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s;
}

.lb-video-btn--hero-tool:hover {
	color: var(--vh-text-main);
	border-color: var(--vh-border-hover);
}

/* ─── COLUMN 2: Trending Now (Stack of Cards) ─── */
.lb-video-col--cards {
	height: 100%;
}

.lb-video-card-stack {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	height: 100%;
	flex: 1;
}

.lb-video-stack-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--vh-radius-sm);
	background: var(--vh-surface-2);
	border: 1px solid var(--vh-border);
	text-decoration: none;
	flex: 1;
	min-height: 0;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.lb-video-stack-card:hover {
	background: var(--vh-bg-card);
	border-color: color-mix(in srgb, var(--vh-primary) 40%, var(--vh-border));
	transform: translateX(3px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lb-video-stack-card__thumb-wrap {
	position: relative;
	width: 96px;
	aspect-ratio: 16 / 10;
	flex: 0 0 96px;
	border-radius: 6px;
	overflow: hidden;
	background: #0b0f19;
}

.lb-video-stack-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lb-video-stack-card__play {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	opacity: 0.85;
	transition: opacity 0.15s, background 0.15s;
}

.lb-video-stack-card:hover .lb-video-stack-card__play {
	background: rgba(255, 106, 43, 0.85);
	opacity: 1;
}

.lb-video-stack-card__dur {
	position: absolute;
	bottom: 3px;
	right: 3px;
	font-size: 0.65rem;
	font-weight: 700;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.8);
	padding: 1px 4px;
	border-radius: 3px;
}

.lb-video-stack-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.lb-video-stack-card__title {
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--vh-text-main);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.15s;
}

.lb-video-stack-card:hover .lb-video-stack-card__title {
	color: var(--vh-primary);
}

.lb-video-stack-card__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.74rem;
	color: var(--vh-text-light);
	flex-wrap: wrap;
}

.lb-video-stack-card__tag {
	font-size: 0.7rem;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.05);
	color: var(--vh-text-muted);
}

.lb-video-stack-card__tag--tutorial { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.lb-video-stack-card__tag--review   { background: rgba(16, 185, 129, 0.1); color: #059669; }
.lb-video-stack-card__tag--demo     { background: rgba(245, 158, 11, 0.1); color: #d97706; }

.lb-video-stack-card__tool {
	font-weight: 600;
	color: var(--vh-text-main);
}

/* ─── COLUMN 3: Trending This Week (Briefing List) ─── */
.lb-video-col--minimal {
	height: 100%;
}

.lb-video-minimal-list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	flex: 1;
}

.lb-video-minimal-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 8px 10px;
	border-radius: var(--vh-radius-sm);
	text-decoration: none;
	transition: background 0.12s ease;
	cursor: pointer;
}

.lb-video-minimal-item:hover {
	background: var(--vh-surface-2);
}

.lb-video-minimal-item__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.lb-video-minimal-title {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--vh-text-main);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.12s;
}

.lb-video-minimal-item:hover .lb-video-minimal-title {
	color: var(--vh-primary);
}

.lb-video-minimal-play-icon {
	color: var(--vh-text-light);
	opacity: 0.5;
	transition: opacity 0.15s, color 0.15s;
	flex-shrink: 0;
	margin-top: 2px;
}

.lb-video-minimal-item:hover .lb-video-minimal-play-icon {
	opacity: 1;
	color: var(--vh-primary);
}

.lb-video-minimal-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.74rem;
	color: var(--vh-text-light);
}

.lb-video-minimal-tag {
	font-weight: 600;
	color: var(--vh-primary);
}

.lb-video-minimal-tool {
	font-weight: 600;
	color: var(--vh-text-main);
}

.lb-video-all-link-wrap {
	margin-top: auto;
	padding-top: 10px;
	text-align: right;
}

.lb-video-all-link {
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--vh-primary);
	text-decoration: none;
	transition: color 0.15s;
}

.lb-video-all-link:hover {
	color: var(--vh-primary-600);
	text-decoration: underline;
}

/* ─── Genre & Duration Badges ─── */
.lb-video-genre-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background: rgba(15, 23, 42, 0.82);
	backdrop-filter: blur(8px);
	border-radius: 9999px;
	font-size: 0.74rem;
	font-weight: 600;
	color: #f8fafc;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.lb-video-genre-badge--tutorial   { border-color: rgba(139, 92, 246, 0.5); color: #c4b5fd; }
.lb-video-genre-badge--review     { border-color: rgba(16, 185, 129, 0.5); color: #6ee7b7; }
.lb-video-genre-badge--demo       { border-color: rgba(245, 158, 11, 0.5); color: #fcd34d; }
.lb-video-genre-badge--comparison { border-color: rgba(6, 182, 212, 0.5); color: #67e8f9; }

.lb-video-duration-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 6px;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 600;
	color: #ffffff;
}

/* ─── Lightbox Modal ─── */
.lb-video-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	box-sizing: border-box;
}

.lb-video-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.lb-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 16, 0.88);
	backdrop-filter: blur(12px);
}

.lb-video-modal__container {
	position: relative;
	width: 100%;
	max-width: 960px;
	background: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--vh-radius);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
	overflow: hidden;
	transform: scale(0.96) translateY(8px);
	transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 10;
	box-sizing: border-box;
}

.lb-video-modal.is-open .lb-video-modal__container {
	transform: scale(1) translateY(0);
}

.lb-video-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	gap: 12px;
}

.lb-video-modal__header-info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	overflow: hidden;
}

.lb-video-modal__title {
	font-size: 1rem;
	font-weight: 700;
	color: #f8fafc;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lb-video-modal__close-btn {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.15s;
	flex-shrink: 0;
}

.lb-video-modal__close-btn:hover {
	background: #ef4444;
	color: #ffffff;
	transform: rotate(90deg);
}

.lb-video-modal__player {
	background: #000000;
	width: 100%;
}

.lb-video-modal__iframe-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

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

.lb-video-modal__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: #0b1120;
	gap: 12px;
	flex-wrap: wrap;
}

.lb-video-modal__meta-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.lb-video-modal__channel-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: #f1f5f9;
}

.lb-video-modal__stat-pills {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lb-video-modal__stat-pill {
	font-size: 0.74rem;
	padding: 2px 8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 9999px;
	color: #94a3b8;
}

.lb-video-modal__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lb-video-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: var(--vh-radius-sm);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.15s ease;
}

.lb-video-btn--outline {
	background: transparent;
	color: #e2e8f0;
	border-color: rgba(255, 255, 255, 0.2);
}

.lb-video-btn--outline:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.06);
}

.lb-video-btn--yt {
	background: #ff0000;
	color: #ffffff;
}

.lb-video-btn--yt:hover {
	background: #cc0000;
}

/* Empty State */
.lb-video-empty {
	text-align: center;
	padding: 50px 20px;
	background: var(--vh-bg-card);
	border: 1px dashed var(--vh-border);
	border-radius: var(--vh-radius);
	margin: 20px 0;
	width: 100%;
	box-sizing: border-box;
}

.lb-video-empty__icon {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.lb-video-empty h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--vh-text-main);
	margin: 0 0 4px;
}

.lb-video-empty p {
	color: var(--vh-text-muted);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

/* ─── Responsive Breakpoints ─── */
@media (max-width: 992px) {
	.lb-video-editorial-grid {
		grid-template-columns: 1fr 1fr;
	}

	.lb-video-col--hero {
		grid-column: span 2;
	}
}

@media (max-width: 640px) {
	.lb-video-editorial-grid {
		grid-template-columns: 1fr;
	}

	.lb-video-col--hero {
		grid-column: span 1;
	}

	.lb-video-nav-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.lb-video-search {
		width: 100%;
	}

	.lb-video-modal__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.lb-video-modal__actions {
		width: 100%;
		justify-content: space-between;
	}
}
