/* ============================================
   AYUSH CONCLAVE PAGE — ayushconclave.css
   Extends tokens from style.css
   ============================================ */

/* ── ARTICLE HERO ──────────────────────────── */
.article-hero {
    background: var(--av-forest);
    background-image:
        radial-gradient(ellipse at 15% 20%, rgba(200,168,75,.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(212,120,26,.08) 0%, transparent 55%);
    padding: 160px 0 90px;
    position: relative;
    overflow: hidden;
}
.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 50px,
        rgba(200,168,75,.02) 50px, rgba(200,168,75,.02) 51px
    );
}
.article-hero-container { position: relative; z-index: 1; }

.press-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,168,75,.12);
    border: 1px solid rgba(200,168,75,.32);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--av-gold);
    font-weight: 700;
}

.article-title {
    font-family: var(--disp-font);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--av-white);
    line-height: 1.22;
    margin-bottom: 24px;
}

.article-dateline {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .03em;
    margin-bottom: 28px;
}
.dot-sep { margin: 0 10px; color: var(--av-gold); }

.article-hero-container .award-pills {
    justify-content: center;
}

/* ── GALLERY ───────────────────────────────── */
.gallery-grid {}
.gallery-item-wrap {}
.gallery-item {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: var(--av-forest);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item--tall  { aspect-ratio: 3/4; }
.gallery-item--wide   { aspect-ratio: 16/9; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.gallery-placeholder img { display: none; }
.gallery-placeholder-content {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,.35);
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(200,168,75,.08), rgba(212,120,26,.08));
}
.gallery-item.gallery-placeholder .gallery-placeholder-content { display: flex; }
.gallery-placeholder-content i { font-size: 2.2rem; }
.gallery-placeholder-content small { font-size: .7rem; line-height: 1.5; }

.gallery-caption-bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15,36,25,.92), transparent);
    color: rgba(255,255,255,.92);
    font-size: .78rem;
    padding: 28px 14px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-caption-bar,
.gallery-item:focus .gallery-caption-bar { opacity: 1; transform: translateY(0); }
.gallery-caption-bar i { color: var(--av-gold); }

/* ── LIGHTBOX MODAL ────────────────────────── */
.lightbox-content {
    background: var(--av-forest);
    border: 1px solid rgba(200,168,75,.25);
    border-radius: var(--radius);
    padding: 16px;
    position: relative;
}
.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    opacity: .8;
}
.lightbox-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(0,0,0,.2);
}
.lightbox-caption {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 4px;
}

/* ── ARTICLE BODY ──────────────────────────── */
.bg-white { background: var(--av-white); }
.article-body { font-size: 1rem; }
.article-body .lede {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--av-forest);
    margin-bottom: 24px;
}
.article-body p {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--av-muted);
    margin-bottom: 22px;
}
.article-body strong { color: var(--av-ink); }

.article-pullquote {
    border-left: 4px solid var(--av-saffron);
    background: var(--av-cream);
    padding: 22px 28px;
    margin: 32px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--serif-font);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--av-forest);
    line-height: 1.6;
    position: relative;
}
.article-pullquote i { color: var(--av-gold); font-size: 1.4rem; margin-right: 6px; vertical-align: -4px; }
.article-pullquote em { color: var(--av-saffron); font-style: italic; }

.quote-card {
    background: var(--av-forest);
    border-radius: var(--radius);
    padding: 32px 30px;
    margin: 32px 0;
    position: relative;
}
.quote-card-icon {
    color: var(--av-gold);
    font-size: 2rem;
    opacity: .5;
    display: block;
    margin-bottom: 8px;
}
.quote-card-text {
    font-family: var(--serif-font);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,.88);
    line-height: 1.75;
    margin-bottom: 14px;
}
.quote-card-author {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--av-gold);
    font-weight: 700;
    margin: 0;
}

/* ── SHARE BAR ─────────────────────────────── */
.share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--av-border);
    margin-top: 16px;
}
.share-label {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--av-muted);
    font-weight: 700;
}
.share-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--av-cream);
    border: 1px solid var(--av-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--av-forest);
    font-size: 1rem;
    transition: background .2s, color .2s, transform .2s;
}
.share-btn:hover { background: var(--av-forest); color: var(--av-gold); transform: translateY(-2px); }

/* ── AWARDS STRIP ──────────────────────────── */
.awards-strip {
    background: var(--av-parchment);
    padding: 60px 0;
}
.award-card {
    background: var(--av-white);
    border: 1px solid var(--av-border);
    border-top: 4px solid var(--av-gold);
    border-radius: var(--radius);
    padding: 32px 30px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.award-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.award-icon {
    width: 52px; height: 52px;
    background: rgba(212,120,26,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--av-saffron);
    margin-bottom: 18px;
}
.award-card-label {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--av-sage);
    font-weight: 700;
    margin-bottom: 6px;
}
.award-card-title {
    font-family: var(--disp-font);
    font-size: 1.4rem;
    color: var(--av-forest);
    margin-bottom: 6px;
}
.award-card-recipient {
    font-size: .88rem;
    font-weight: 700;
    color: var(--av-saffron);
    margin-bottom: 14px;
}
.award-card-desc {
    font-size: .87rem;
    color: var(--av-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── FACT BOXES ────────────────────────────── */
.fact-box {
    padding: 20px 10px;
}
.fact-num {
    font-family: var(--disp-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--av-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.fact-label {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 0;
}
.event-orgs {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.event-orgs strong { color: rgba(255,255,255,.85); }

/* ── NEWSPAPER CARDS ───────────────────────── */
.newspaper-card {
    display: block;
    width: 100%;
    background: var(--av-white);
    border: 1px solid var(--av-border);
    border-radius: var(--radius);
    padding: 14px 14px 18px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.newspaper-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--av-gold);
}
.newspaper-thumb {
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ece4d0, #e0d6ba);
    border: 1px solid var(--av-border);
}
.newspaper-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.newspaper-thumb.newspaper-placeholder img { display: none; }
.newspaper-placeholder-content {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--av-muted);
    text-align: center;
    padding: 14px;
}
.newspaper-thumb.newspaper-placeholder .newspaper-placeholder-content { display: flex; }
.newspaper-placeholder-content i { font-size: 2rem; color: var(--av-saffron); opacity: .6; }
.newspaper-placeholder-content small { font-size: .68rem; line-height: 1.5; }

.newspaper-zoom-hint {
    position: absolute;
    inset: 0;
    background: rgba(30,61,47,.78);
    color: var(--av-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .22s;
}
.newspaper-card:hover .newspaper-zoom-hint { opacity: 1; }

.newspaper-name {
    font-family: var(--disp-font);
    font-size: 1rem;
    color: var(--av-forest);
    margin-bottom: 3px;
}
.newspaper-date {
    font-size: .76rem;
    color: var(--av-muted);
    margin: 0;
}

.press-note {
    font-size: .8rem;
    color: var(--av-muted);
}
.press-note code {
    background: rgba(30,61,47,.08);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--av-forest);
    font-size: .78rem;
}

/* ── CTA STRIP ─────────────────────────────── */
.cta-strip {
    background: var(--av-forest2);
    padding: 80px 0;
    text-align: center;
}
.cta-eyebrow {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--av-gold);
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-title {
    font-family: var(--disp-font);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--av-white);
    margin-bottom: 12px;
}
.cta-sub {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    max-width: 480px;
    margin: 0 auto;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 767.98px) {
    .article-hero { padding: 130px 0 60px; }
    .article-title { font-size: 1.7rem; }
    .award-pills { flex-direction: column; align-items: center; }
    .quote-card { padding: 24px 20px; }
    .article-pullquote { padding: 18px 18px; }
    .share-bar { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
