/* ============================================================
   Spiritual knowledge discussions (/adhyatmik-gyan-charcha.html)
   ============================================================ */

.agc-page {
    color: var(--ink);
    background: var(--bg);
}

/* ---- glance strip ---- */
.agc-glance {
    padding: clamp(20px, 3vw, 30px) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
}
.agc-glance__grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
}
.agc-glance__item {
    padding: clamp(16px, 2.2vw, 22px);
    background: var(--surface);
}
.agc-glance__item span {
    display: block;
    margin-bottom: 6px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.agc-glance__item strong {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.4;
    color: var(--ink);
}

/* ---- sections ---- */
.agc-section {
    padding: clamp(38px, 6vw, 60px) 0;
    scroll-margin-top: 136px;
}
.agc-section + .agc-section { border-top: 1px solid var(--rule); }
.agc-section > .hi-shell { max-width: 780px; }
.agc-section--soft { background: var(--bg-wash); }
.agc-section .hi-section-heading { margin-bottom: clamp(20px, 3vw, 28px); }
.agc-section .hi-section-heading h2 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--ink);
}
.agc-section .hi-prose p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-body);
}
.agc-section .hi-prose p:last-child { margin-bottom: 0; }

/* ---- section photo ---- */
.agc-figure {
    margin: clamp(22px, 3.6vw, 34px) 0 clamp(22px, 3.6vw, 30px);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}
.agc-figure img {
    display: block;
    width: 100%;
    height: clamp(230px, 32vw, 360px);
    object-fit: cover;
}
.agc-figure figcaption {
    padding: 12px 16px 14px;
    font-size: .88rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

/* ---- points list ---- */
.agc-points {
    list-style: none;
    margin: 4px 0 20px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.agc-points li {
    padding: 13px 18px;
    border-left: 3px solid var(--gold);
    background: var(--surface);
    font-size: .95rem;
    line-height: 1.75;
    color: var(--ink-body);
}

/* ---- closing ---- */
.agc-closing {
    background: var(--bg-wash);
    border-top: 1px solid var(--rule);
}
.agc-closing h2 {
    margin: 0 0 10px;
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    color: var(--primary);
}
.agc-closing p {
    margin: 0 0 20px;
    font-size: .98rem;
    line-height: 1.8;
    color: var(--ink-body);
}

@media (max-width: 640px) {
    .agc-glance__grid { grid-template-columns: 1fr; }
    .agc-section { scroll-margin-top: 126px; }
}
