/* ── LIGHTBOX ── */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 200; align-items: center; justify-content: center; padding: 2rem; }
.lightbox-overlay.open { display: flex; }
.lightbox-overlay::before,
.lightbox-overlay::after { content: ''; position: absolute; top: 0; bottom: 0; width: max(0px, calc(50% - 430px)); pointer-events: none; z-index: 5; }
.lightbox-overlay::before { left: 0; background: linear-gradient(to right, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.2) 85%, transparent 100%); }
.lightbox-overlay::after { right: 0; background: linear-gradient(to left, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.2) 85%, transparent 100%); }
.lightbox-box { background: transparent; width: 100%; max-width: 860px; overflow: visible; position: relative; z-index: 1; }
.lightbox-carousel { position: relative; width: 100%; aspect-ratio: 16/9; background: transparent; overflow: visible; }
.carousel-track { display: flex; gap: 1rem; height: 100%; transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.carousel-slide { flex: 0 0 calc(100% - 6rem); height: 100%; position: relative; opacity: 0.6; transition: opacity 0.35s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.6rem; line-height: 1; z-index: 10; transition: background 0.2s, color 0.2s; }
.carousel-btn:hover { background: rgba(0,0,0,0.8); color: #fff; }
.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; }
.carousel-dots { position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; z-index: 10; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: rgba(255,255,255,0.9); }
.lightbox-info { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.75rem 2rem; align-items: start; }
.lightbox-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.lightbox-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; }
.lightbox-desc { font-size: 0.85rem; color: rgba(240,237,232,0.6); line-height: 1.7; }
.lightbox-meta { display: flex; flex-direction: column; gap: 1rem; min-width: 120px; }
.lightbox-meta-item span:first-child { display: block; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.lightbox-meta-item span:last-child { font-size: 0.85rem; color: var(--text); }
#lbLink { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
#lbLink:hover { color: var(--text); }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; background: rgba(10,10,10,0.8); border: 1px solid var(--border); color: var(--muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: color 0.2s, border-color 0.2s; z-index: 201; }
.lightbox-close:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }
