/* ============================================================
   ABOUT PAGE — OMEGA INFO PANELS
   Uses shared info-page hero + cards.
   ============================================================ */

.about-shell {
    max-width: 1280px;
    margin: var(--ccg-hero-offset) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--ccg-section-gap);
    padding: 0 clamp(1rem, 3vw, 1.4rem) 1.8rem;
}

.ccg-page--about .ccg-main,
.ccg-page--about .ccg-info-hero,
.ccg-page--about .about-panel,
.ccg-page--about .about-panel__body,
.ccg-page--about .about-copy,
.ccg-page--about .about-list,
.ccg-page--about .about-meta,
.ccg-page--about .about-note {
    text-align: left;
}

.about-hero h1 {
    text-align: left;
}

.about-hero__actions {
    justify-content: flex-start;
}

.about-hero {
    position: relative;
    overflow: hidden;
    border-radius: clamp(18px, 2vw, 26px);
    padding: clamp(2rem, 3vw, 2.6rem);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.55),
        0 0 35px rgba(var(--accent-rgb), 0.25);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.16), transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(var(--accent-rgb), 0.12), transparent 45%),
        repeating-linear-gradient(
            120deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.05) 2px,
            transparent 2px,
            transparent 6px
        );
    opacity: 0.7;
    pointer-events: none;
}

.about-hero__glow {
    position: absolute;
    inset: 12% 8% auto 8%;
    height: 60%;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.28), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-rgb), 0.18), transparent 60%);
    filter: blur(1px);
    opacity: 0.9;
    pointer-events: none;
}

.about-hero__title {
    margin: 0 0 0.6rem;
}

.about-hero__lede {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 70ch;
    margin-left: 0;
}

.about-grid {
    display: grid;
    gap: clamp(1rem, 2.4vw, 1.6rem);
}

.about-panel {
    display: grid;
    gap: 1.2rem;
    padding: clamp(1.2rem, 2.3vw, 1.6rem);
    border-radius: clamp(16px, 2vw, 22px);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    background:
        linear-gradient(140deg, rgba(var(--accent-rgb), 0.14), rgba(0,0,0,0.7)),
        var(--panel-bg);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.55),
        0 0 28px rgba(var(--accent-rgb), 0.18);
}

.about-panel--audio {
    overflow: visible;
}

.about-panel__header {
    display: grid;
    gap: 0.5rem;
    text-align: left;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
}

.about-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.about-panel__lede {
    margin: 0;
    color: var(--text-dim);
}

.about-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.about-note {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
}

.about-actions {
    justify-content: center;
}

.about-actions .ccg-btn {
    min-width: 180px;
}

.about-cta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.about-cta {
    gap: 0.55rem;
}

.about-panel__body {
    display: grid;
    gap: 1.2rem;
}

.about-copy {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.84);
}

.about-copy p {
    margin: 0 0 1rem;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-panel__body--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
}

.about-media-stack {
    display: grid;
    gap: 1rem;
}

.about-figure {
    margin: 0;
    display: grid;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    padding: 0.85rem;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.12), rgba(0,0,0,0.8));
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    border-radius: 14px;
    box-shadow:
        0 18px 30px rgba(0,0,0,0.45),
        0 0 22px rgba(var(--accent-rgb), 0.25),
        inset 0 0 20px rgba(255,255,255,0.06);
}

.about-figure::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    pointer-events: none;
}

.about-figure img {
    width: 100%;
    height: auto;
    max-height: clamp(220px, 34vw, 360px);
    object-fit: contain;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

.about-figure figcaption {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.about-figure--logo img {
    max-height: clamp(180px, 20vw, 240px);
    object-fit: contain;
}

.about-audio {
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    background: linear-gradient(150deg, rgba(var(--accent-rgb), 0.14), rgba(0,0,0,0.82));
    box-shadow: 0 16px 28px rgba(0,0,0,0.5), 0 0 20px rgba(var(--accent-rgb), 0.25);
}

.audio-player-iframe {
    width: 100%;
    min-height: 120px;
    border: 0;
    border-radius: 10px;
    background: rgba(0,0,0,0.5);
}

.about-audio__caption {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.about-gallery,
.about-gallery--wide {
    display: grid;
    gap: 1rem;
}

.about-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.about-gallery--wide {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-grid > .ccg-omega-divider {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.about-quick-links .ccg-info-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}


.ccg-page--about .ccg-info-hero {
    padding: clamp(1.6rem, 2.6vw, 2rem);
}

.about-shell {
    gap: clamp(18px, 2.6vw, 28px);
}

.about-panel__body {
    gap: 1rem;
}

.about-panel__body--split {
    gap: clamp(1rem, 2.4vw, 1.4rem);
}

.about-gallery .about-figure img {
    max-height: clamp(180px, 26vw, 280px);
    object-fit: contain;
}

.about-gallery--wide .about-figure img {
    max-height: clamp(190px, 28vw, 300px);
    object-fit: contain;
}

.ccg-page--about .ccg-info-actions,
.about-cta-grid,
.about-quick-links .ccg-info-actions {
    gap: 0.85rem;
}

@media (max-width: 720px) {
    .about-shell {
        gap: var(--ccg-section-gap-mobile);
    }

    .about-hero {
        padding: clamp(1.6rem, 4vw, 2.1rem);
    }

    .about-hero__lede {
        font-size: 1rem;
    }

    .about-panel__body--split {
        grid-template-columns: 1fr;
    }

    .about-panel__header {
        gap: 0.35rem;
    }

    .ccg-page--about .ccg-btn {
        width: 100%;
        min-height: 48px;
    }

    .about-hero__actions {
        width: 100%;
    }

    .about-actions .ccg-btn {
        width: 100%;
    }

    .about-gallery,
    .about-gallery--wide {
        grid-template-columns: 1fr;
    }

    .about-figure img {
        max-height: clamp(220px, 60vw, 320px);
    }
}
