/* Videos page - matches homepage v2 editorial minimal style.
   All selectors scoped to body.v2 to win specificity against design-v2.css resets. */

body.v2 .vp-hero { padding: 72px 24px 48px !important; background: var(--bg-card) !important; border-bottom: 1px solid var(--border) !important; }
body.v2 .vp-hero-inner { max-width: 1000px !important; margin: 0 auto !important; text-align: center; }
body.v2 .vp-hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.03em; font-weight: 800; color: var(--text-primary); font-family: var(--font-display); }
body.v2 .vp-hero h1 em { font-style: italic; color: var(--brand); font-weight: 700; }
body.v2 .vp-hero p { font-size: 18px; color: var(--text-secondary); max-width: 640px; margin: 0 auto 28px; line-height: 1.55; }
body.v2 .vp-hero-stats { display: flex; justify-content: center; gap: 32px; font-size: 14px; color: var(--text-secondary); flex-wrap: wrap; }
body.v2 .vp-hero-stats strong { color: var(--text-primary); font-weight: 700; }
body.v2 .vp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; justify-content: center; }
body.v2 .vp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

body.v2 .vp-section { padding: 56px 24px !important; background: var(--bg-card) !important; border-bottom: 1px solid var(--border); }
body.v2 .vp-section.alt { background: var(--bg-page) !important; }
body.v2 .vp-section-inner { max-width: 1200px !important; margin: 0 auto !important; width: 100%; }
body.v2 .vp-section-head { margin-bottom: 32px; display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 16px; }
body.v2 .vp-section-eyebrow { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
body.v2 .vp-section h2 { font-size: 28px; margin: 0; letter-spacing: -0.02em; color: var(--text-primary); font-family: var(--font-display); }

body.v2 .vp-card { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: 14px !important; overflow: hidden !important; transition: all .15s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
body.v2 .vp-card:hover { border-color: var(--border-strong) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,18,32,.06) !important; }
body.v2 .vp-card-featured { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
body.v2 .vp-card-featured .vp-thumb { border-radius: 0; }

@media (max-width: 900px) {
  body.v2 .vp-card-featured { grid-template-columns: 1fr; }
}

body.v2 .vp-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #1F2937, #0B1220); overflow: hidden; }
body.v2 .vp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.v2 .vp-play { position: absolute; inset: 0; display: grid; place-items: center; }
body.v2 .vp-play-btn { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .15s; }
body.v2 .vp-card:hover .vp-play-btn { transform: scale(1.08); }
body.v2 .vp-play-btn svg { width: 22px; height: 22px; color: var(--brand); margin-left: 3px; }

body.v2 .vp-meta { padding: 20px !important; }
body.v2 .vp-tag { display: inline-block !important; background: var(--brand-light) !important; color: var(--brand) !important; padding: 4px 10px !important; border-radius: 999px !important; font-size: 11px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .05em !important; margin-bottom: 10px !important; }
body.v2 .vp-card-title { font-size: 18px; font-weight: 700 !important; margin: 0 0 8px !important; line-height: 1.35; letter-spacing: -0.01em; color: var(--text-primary) !important; font-family: var(--font-display); }
body.v2 .vp-card-featured .vp-card-title { font-size: 24px; }
body.v2 .vp-card-sub { font-size: 14px; color: var(--text-secondary) !important; margin: 0 0 12px !important; line-height: 1.5; }
body.v2 .vp-card-foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-secondary); }

body.v2 .vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { body.v2 .vp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { body.v2 .vp-grid { grid-template-columns: 1fr; } }

body.v2 .vp-cta { background: var(--bg-dark, #0B1220) !important; color: #fff; padding: 56px 24px !important; text-align: center; }
body.v2 .vp-cta h3 { font-size: 26px; margin: 0 0 12px; letter-spacing: -0.02em; color: #fff; font-family: var(--font-display); }
body.v2 .vp-cta p { color: #94A3B8; margin: 0 auto 20px; max-width: 520px; }

body.v2 .vp-empty { text-align: center; padding: 40px 20px; background: var(--bg-card); border: 1px dashed var(--border); border-radius: 14px; }
body.v2 .vp-empty-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); font-family: var(--font-display); }
body.v2 .vp-empty p { color: var(--text-secondary); margin: 0 0 20px; }

body.v2 .vp-lb { position: fixed; inset: 0; background: rgba(11,18,32,.92); display: none; align-items: center; justify-content: center; z-index: 999; padding: 24px; }
body.v2 .vp-lb.open { display: flex; }
body.v2 .vp-lb-box { width: 100%; max-width: 1000px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; position: relative; }
body.v2 .vp-lb-box iframe { width: 100%; height: 100%; border: 0; }
body.v2 .vp-lb-close { position: absolute; top: -40px; right: 0; background: transparent; border: 0; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; padding: 4px 12px; }
