/* ═══════════════════════════════════════════════════════════════════════════
   videos.css — the Screening Room.
   ═══════════════════════════════════════════════════════════════════════ */
.page-videos { --top: calc(var(--bar-h) + var(--bar-gap) * 2); }
.vd-hero { padding: calc(var(--top) + clamp(16px, 4vh, 40px)) 0 clamp(32px, 5vh, 56px); }
.vd-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.vd-copy { display: grid; gap: 16px; justify-items: start; }
.vd-copy .ph-title { font-size: clamp(2.6rem, 1.4rem + 5vw, 6rem); }
.vd-feature { display: grid; gap: 10px; }
.player { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow-2); }
.player img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .8s var(--ease-out), opacity .4s; }
.player button { position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .35)); cursor: pointer; }
.player button:hover img { transform: scale(1.03); }
.player .play { width: 84px; height: 84px; border-radius: 50%; background: var(--live); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(232, 53, 43, .45); transition: transform .3s var(--ease-out); }
.player button:hover .play { transform: scale(1.08); }
.player .play svg { width: 34px; height: 34px; margin-left: 4px; fill: #fff; }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vd-feature .cap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 12px; align-items: baseline; }
.vd-feature .cap b { flex: 1 1 200px; min-width: 0; }
.vd-feature .cap b { font-family: var(--f-display); font-size: 1.05rem; letter-spacing: -.01em; font-variation-settings: 'opsz' 24, 'wdth' 100, 'wght' 650; }
.vd-feature .cap span { font-family: var(--f-display); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--live); white-space: nowrap; font-variation-settings: 'opsz' 12, 'wdth' 90, 'wght' 650; }
@media (max-width: 899px) { .vd-hero-grid { grid-template-columns: minmax(0, 1fr); } .vd-copy .ph-ctas .btn { width: 100%; } }

.vd-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; counter-reset: v; }
.vd-item { display: grid; grid-template-columns: 44px 180px minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 12px; border-radius: 16px; background: var(--cyc); border: 1px solid var(--line); transition: transform .3s var(--ease-out), box-shadow .3s, border-color .2s; }
.vd-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); border-color: var(--line-2); }
.vd-item .n { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: -.03em; color: var(--ink-3); text-align: center; font-variation-settings: 'opsz' 48, 'wdth' 100, 'wght' 750; font-variant-numeric: tabular-nums; }
.vd-item.seen .n { color: var(--sound); }
.vd-item .th { position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: var(--ink); border: 0; padding: 0; cursor: pointer; }
.vd-item .th img { width: 100%; height: 100%; object-fit: cover; }
.vd-item .th::after { content: "▶"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.2rem; text-shadow: 0 2px 8px rgba(0, 0, 0, .6); background: rgba(0, 0, 0, .1); }
.vd-item h3 { font-size: 1.05rem; letter-spacing: -.015em; line-height: 1.25; }
.vd-item .meta { font-size: .85rem; color: var(--ink-2); margin-top: 4px; display: flex; gap: 10px; flex-wrap: wrap; }
.vd-item .meta a { color: var(--sound); text-decoration: none; }
.vd-item .tick { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-2); background: var(--cyc); display: grid; place-items: center; font-size: 1rem; color: var(--ink-3); transition: background .2s, color .2s, border-color .2s; }
.vd-item .tick[aria-pressed="true"] { background: var(--sound); border-color: var(--sound); color: #fff; }
@media (max-width: 700px) { .vd-item { grid-template-columns: 32px 110px minmax(0, 1fr); } .vd-item .tick { grid-column: 1 / -1; justify-self: start; width: auto; padding: 0 12px; border-radius: 999px; height: 34px; font-size: .85rem; } .vd-item .meta { display: none; } }
