/* ── ARTICLE HERO ── */
.article-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-img { position: absolute; inset: 0; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
.article-hero-body { position: relative; z-index: 2; padding: 7rem 0 4rem; width: 100%; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .2s; margin-bottom: 2rem; }
.back-link:hover { color: rgba(255,255,255,.9); }
.back-link i { font-size: .6rem; }
.article-tag-hero { display: inline-block; padding: .22rem .75rem; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--c-red); color: #fff; margin-bottom: .9rem; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.05; color: #fff; max-width: 20ch; margin-bottom: 1.4rem; }
.article-hero-meta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.meta-author { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); }
.meta-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.meta-date { font-size: .75rem; color: rgba(255,255,255,.45); }
.meta-read { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ── ARTICLE BODY ── */
.article-body { padding: 5rem 0; }
.article-lede { font-size: 1.22rem; line-height: 1.85; color: var(--c-ink); font-weight: 400; margin-bottom: 2.2rem; max-width: 68ch; }
.article-text { font-size: 1.05rem; line-height: 1.9; color: var(--c-mid); margin-bottom: 2rem; max-width: 68ch; }
.article-divider { width: 3rem; height: 2px; background: var(--c-red); margin: 2.8rem 0; }

/* ── VIDEO BLOCK ── */
.video-block { position: relative; aspect-ratio: 16/9; background: var(--c-bg2); border: 1px solid var(--c-line); overflow: hidden; margin: 2.5rem 0; }
.video-block iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── PHOTO GALLERY ── */
.photo-gallery { margin: 2.8rem 0; }
.photo-gallery-label { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-mid); margin-bottom: 1rem; }
.gallery-grid { display: grid; gap: 6px; grid-template-columns: repeat(3, 1fr); }
.gallery-item { position: relative; overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.25,.46,.45,.94); display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; pointer-events: none; }
.gallery-item:hover::after { background: rgba(0,0,0,.25); }
.gallery-zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6); opacity: 0; transition: opacity .3s, transform .3s; color: #fff; font-size: 1.6rem; z-index: 2; pointer-events: none; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }
@media (max-width: 575px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── LIGHTBOX ── */
.lb-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(10,10,10,.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s cubic-bezier(.4,0,.2,1); }
.lb-overlay.lb-open { opacity: 1; pointer-events: all; }
.lb-stage { position: relative; max-width: min(90vw, 1200px); max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 100%; max-height: 88vh; object-fit: contain; border: none; display: block; transform: scale(.94); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.lb-overlay.lb-open .lb-img { transform: scale(1); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: background .2s; backdrop-filter: blur(6px); z-index: 2; }
.lb-btn:hover { background: rgba(255,255,255,.18); }
.lb-prev { left: -4.5rem; }
.lb-next { right: -4.5rem; }
.lb-close { position: fixed; top: 1.5rem; right: 1.8rem; background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.5rem; cursor: pointer; z-index: 10000; transition: color .2s; }
.lb-close:hover { color: #fff; }
.lb-counter { position: fixed; bottom: 1.6rem; left: 50%; transform: translateX(-50%); font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.lb-dots { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; align-items: center; }
.lb-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.25); transition: background .2s, transform .2s; cursor: pointer; border: none; }
.lb-dot.active { background: #fff; transform: scale(1.4); }
@media (max-width: 767px) { .lb-prev { left: .5rem; } .lb-next { right: .5rem; } }

/* ── SHARE BAR ── */
.share-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.8rem 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); margin: 3rem 0; }
.share-label { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-mid); }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .95rem; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--c-line); color: var(--c-mid); transition: border-color .2s, color .2s; }
.share-btn:hover { border-color: var(--c-red); color: var(--c-red); }

/* ── AUTHOR CARD ── */
.author-card { background: var(--c-bg2); border: 1px solid var(--c-line); padding: 1.8rem 2rem; display: flex; gap: 1.4rem; align-items: flex-start; }
.author-avatar { width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--c-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; font-weight: 800; color: var(--c-mid); }
.author-name { font-size: .9rem; font-weight: 800; color: var(--c-ink); margin-bottom: .2rem; }
.author-role { font-size: .72rem; color: var(--c-red); font-weight: 600; letter-spacing: .06em; margin-bottom: .55rem; }
.author-bio { font-size: .85rem; color: var(--c-mid); line-height: 1.75; margin: 0; }
