/* Lead stage — unified flagship composition */
.desk-lead {
    padding: 1.5rem 0 0.25rem;
}

.desk-stage {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 0;
    min-height: 420px;
    border: 1px solid var(--desk-line);
    border-radius: 1.25rem;
    overflow: hidden;
    background:
        radial-gradient(700px 280px at 0% 0%, color-mix(in srgb, var(--desk-ember) 12%, transparent), transparent 55%),
        linear-gradient(160deg, #12151c 0%, #0c0e13 55%, #0a0b0f 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 28px 60px rgba(0, 0, 0, 0.38);
}

.desk-stage__mast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-inline-end: 1px solid var(--desk-line);
    background:
        linear-gradient(180deg, rgba(247, 243, 234, 0.03), transparent 40%);
}

.desk-stage__mast .desk-display {
    max-width: 12ch;
    animation: desk-rise 0.7s ease both;
}

.desk-stage__mast .desk-dek {
    max-width: 36ch;
    animation: desk-rise 0.7s ease 0.08s both;
}

.desk-lead__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
    animation: desk-rise 0.7s ease 0.14s both;
}

@keyframes desk-rise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cinematic spotlight — full-bleed image + bottom copy */
.desk-spotlight {
    position: relative;
    isolation: isolate;
    min-height: 420px;
    background: #0a0c10;
    animation: desk-rise 0.75s ease 0.05s both;
}

.desk-spotlight__viewport {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.desk-spotlight__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.desk-spotlight__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.desk-spotlight__slide[hidden] {
    display: block !important;
    visibility: hidden;
}

.desk-spotlight__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.desk-spotlight__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a0c10;
}

.desk-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.desk-spotlight__slide.is-active .desk-spotlight__img { transform: scale(1.1); }

.desk-spotlight__glow {
    position: absolute;
    inset: auto -8% -25% auto;
    width: 50%;
    height: 65%;
    background: radial-gradient(circle, color-mix(in srgb, var(--desk-ember) 32%, transparent), transparent 70%);
    pointer-events: none;
}

.desk-spotlight__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.55) 42%, rgba(8, 9, 12, 0.12) 72%, transparent 100%),
        linear-gradient(90deg, rgba(8, 9, 12, 0.35), transparent 45%);
    pointer-events: none;
}

html[dir="rtl"] .desk-spotlight__veil {
    background:
        linear-gradient(0deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.55) 42%, rgba(8, 9, 12, 0.12) 72%, transparent 100%),
        linear-gradient(270deg, rgba(8, 9, 12, 0.35), transparent 45%);
}

.desk-spotlight__content {
    position: absolute;
    z-index: 2;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.45rem 3.4rem;
    max-width: 34rem;
}

.desk-spotlight__title {
    margin: 0;
    font-family: var(--desk-display);
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.desk-spotlight__title a { position: relative; z-index: 2; }
.desk-spotlight__title a:hover { color: var(--desk-ember); }

.desk-spotlight__excerpt {
    margin: 0.55rem 0 0;
    color: rgba(247, 243, 234, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.desk-spotlight__content .desk-text-link { position: relative; z-index: 2; }

.desk-spotlight__controls {
    position: absolute;
    z-index: 3;
    inset-inline-end: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem;
    border: 1px solid rgba(247, 243, 234, 0.14);
    border-radius: 999px;
    background: rgba(10, 11, 15, 0.7);
    backdrop-filter: blur(12px);
}

.desk-spotlight__btn {
    width: 1.9rem;
    height: 1.9rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--desk-ink);
    cursor: pointer;
}

.desk-spotlight__btn:hover { background: var(--desk-ember-soft); color: var(--desk-ember); }

.desk-spotlight__dots { display: flex; gap: 0.3rem; padding: 0 0.2rem; }

.desk-spotlight__dot {
    width: 0.4rem;
    height: 0.4rem;
    border: 0;
    border-radius: 999px;
    background: rgba(247, 243, 234, 0.28);
    cursor: pointer;
    padding: 0;
}

.desk-spotlight__dot.is-active {
    width: 1.15rem;
    background: var(--desk-ember);
}

.desk-feature--empty {
    display: grid;
    place-content: center;
    min-height: 420px;
    padding: 1.5rem;
    color: var(--desk-muted);
    text-align: center;
    background: #0d0f14;
}

@media (prefers-reduced-motion: reduce) {
    .desk-stage__mast .desk-display,
    .desk-stage__mast .desk-dek,
    .desk-lead__actions,
    .desk-spotlight,
    .desk-spotlight__img {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 991.98px) {
    .desk-stage {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .desk-stage__mast {
        border-inline-end: 0;
        border-bottom: 1px solid var(--desk-line);
        padding: 1.35rem 1.25rem;
    }

    .desk-stage__mast .desk-display { max-width: none; }

    .desk-spotlight,
    .desk-spotlight__viewport,
    .desk-feature--empty {
        min-height: 320px;
    }

    .desk-spotlight__media { position: absolute; }
}
