/*
 * TPPL Weekly Leaks — Single Issue Hero Panel
 * File: weekly-leaks-issue-hero.css
 * Prefix: wlh-
 * No hover states anywhere — static, professional presentation only.
 * Video area: compact thumbnail card, click swaps to inline player.
 * All three video states (pending / thumbnail / playing) share a
 * fixed height so the box never resizes on click.
 */

.wlh-panel {
    --bg-deep: #0d0a1a;
    --panel: rgba(29, 21, 53, 0.94);
    --accent: #d169ff;
    --pink: #F02E65;
    --cyan: #22d3ee;
    --gold: #f4c860;
    --text-light: #eae6ff;
    --text-sub: #cfc9f2;
    --muted: #c4b8d8;
    --border: rgba(164, 124, 255, 0.22);
    --border-strong: rgba(164, 124, 255, 0.48);

    background: radial-gradient(circle at 20% 30%, #2e2250 0%, #0d0a1a 100%), #0d0a1a;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: var(--text-light);
    font-family: Archivo, sans-serif;
    padding-bottom: 40px;
}

.wlh-statusbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-sub);
    flex-wrap: wrap;
    gap: 8px;
}
.wlh-live-dot { color: var(--cyan); font-size: 9px; margin-right: 6px; }
.wlh-status-left { font-weight: 600; letter-spacing: 0.3px; }
.wlh-status-right { color: var(--muted); font-weight: 600; letter-spacing: 0.3px; }

.wlh-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: start;
}

.wlh-tag-row { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.wlh-tag { border-radius: 20px; padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; border: 1px solid var(--border); }
.wlh-tag.accent { color: var(--accent); border-color: rgba(209,105,255,0.4); background: rgba(209,105,255,0.1); }
.wlh-tag.pink { color: var(--pink); border-color: rgba(240,46,101,0.4); background: rgba(240,46,101,0.1); }
.wlh-tag.cyan { color: var(--cyan); border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.1); }

.wlh-kicker { color: var(--muted); font-size: 12px; letter-spacing: 2px; font-weight: 700; margin-bottom: 14px; }
.wlh-kicker-hl { color: var(--gold); }

.wlh-headline {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    color: var(--text-light);
    margin: 0 0 28px 0;
}
.wlh-headline em {
    font-style: normal;
    background: linear-gradient(90deg, var(--accent), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.wlh-dek { color: var(--text-sub); font-size: 16px; line-height: 1.6; max-width: 620px; margin: 0 0 24px 0; }

.wlh-receipts-box {
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: block;
    background: rgba(244, 200, 96, 0.05);
}
.wlh-receipts-label { display: block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.wlh-receipts-links { font-size: 13px; color: var(--text-sub); }
.wlh-receipts-links a { color: var(--cyan); text-decoration: none; }

.wlh-actions { display: flex; align-items: center; gap: 16px; margin: 12px 0 28px 0; flex-wrap: wrap; }

.wlh-btn-gradient {
    background: linear-gradient(90deg, var(--accent), var(--pink));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.wlh-btn-solid {
    background: var(--pink);
    border: 2px solid var(--pink);
    color: #fff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.wlh-jump-link { color: var(--cyan); font-size: 13px; text-decoration: none; }

.wlh-findings-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wlh-finding-card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.wlh-finding-num { display: block; color: var(--accent); font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.wlh-finding-title { display: block; color: var(--text-light); font-size: 12px; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 6px; }
.wlh-finding-desc { color: var(--muted); font-size: 12px; line-height: 1.4; }

/* Side video panel — compact card */
.wlh-video-panel {
    background: linear-gradient(160deg, #1a1230 0%, #0d0a1a 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* All three video states share this exact footprint — height is fixed,
   not aspect-ratio, so the box never resizes when clicked. */
.wlh-video-lazy,
.wlh-video-embed-live,
.wlh-video-pending {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
}

.wlh-video-lazy {
    border: none;
    padding: 0;
    background: #000;
    cursor: pointer;
    display: block;
}
.wlh-video-embed-wrap { position: relative; display: block; width: 100%; height: 100%; }
.wlh-video-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.wlh-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--pink));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.wlh-video-lazy-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--pink));
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    margin: 118px auto 14px;
}

.wlh-video-embed-live iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.wlh-video-pending {
    border: 1px dashed var(--border-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    gap: 6px;
}
.wlh-video-pending-label { color: var(--text-light); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.wlh-video-pending-sub { color: var(--muted); font-size: 11px; max-width: 220px; }

.wlh-video-quote { text-align: center; color: var(--text-light); font-size: 15px; font-style: italic; line-height: 1.4; margin-bottom: 6px; }
.wlh-video-quote em { color: var(--accent); font-style: normal; }
.wlh-video-caption { text-align: center; color: var(--muted); font-size: 10px; letter-spacing: 0.5px; margin-bottom: auto; }

.wlh-video-docs {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--gold);
    gap: 10px;
}
.wlh-video-docs a { color: var(--cyan); text-decoration: none; white-space: nowrap; }

.wlh-social-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Modal (kept for optional full-size 9:16 playback if used elsewhere) */
.wlh-video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 7, 20, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wlh-video-modal-box {
    position: relative;
    width: 90vw;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    max-height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border-strong), 0 20px 60px rgba(0,0,0,0.6);
}

.wlh-video-modal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.wlh-video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .wlh-grid { grid-template-columns: 1fr; }
    .wlh-headline { font-size: 32px; }
    .wlh-findings-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .wlh-panel { transition: none !important; }
}