/* ============================================================
   Theme G — Same hero DNA + Sticky condensed player bar on scroll
   + "On this page" jumpnav + reading progress bar.
   ============================================================ */
.preview-lyrics-G { background: #f7f5f2; color: #1a1a1a; }

.lpG {
    --accent: #FF3B5C;
    --accent-soft: rgba(255,59,92,0.10);
    --vermillion: #FF3B5C;
    --ink: #1a1a1a;
    --ink-2: #525252;
    /* #666 ≈ 5.0:1 on white / 4.7:1 on the cream bg — passes WCAG AA for
       muted text. (was #8a8a8a ≈ 3.4:1, which failed.) */
    --ink-3: #666666;
    /* darker accent for small text/links on light bg (≈4.9:1).
       The bright --accent/--vermillion stays for fills + large UI. */
    --accent-text: #c81e44;
    --bg: #f7f5f2;
    --card: #ffffff;
    --rule: #e6e2db;
    --rule-2: #d8d2c5;
    --max: 1240px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
}

/* ===== Reading progress bar ===== */
.lpG__progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--vermillion), #ff6b6b);
    z-index: 60;
    transition: width 0.05s linear;
    box-shadow: 0 1px 6px rgba(255,59,92,0.4);
}

/* ===== Sticky condensed player bar ===== */
.lpG__sticky {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 55;
    background: rgba(15,12,22,0.92);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lpG__sticky.is-visible { transform: translateY(0); }
.lpG__sticky-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.lpG__sticky-id { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.lpG__sticky-art { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; background: #1a1a2e; flex-shrink: 0; }
.lpG__sticky-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lpG__sticky-meta { min-width: 0; }
.lpG__sticky-title { font-weight: 700; font-size: 0.95rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lpG__sticky-artist { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lpG__sticky-actions { display: flex; align-items: center; gap: 0.4rem; }
.lpG__sticky-lang {
    display: flex; gap: 0.15rem;
    background: rgba(255,255,255,0.08);
    padding: 0.18rem;
    border-radius: 9999px;
    margin-right: 0.3rem;
}
.lpG__sticky-lang-btn {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s;
}
.lpG__sticky-lang-btn:hover { color: #fff; }
.lpG__sticky-lang-btn.is-active { background: var(--vermillion); color: #fff; }
.lpG__sticky-btn {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s;
}
.lpG__sticky-btn:hover { background: rgba(255,255,255,0.18); }
.lpG__sticky-btn--accent { background: var(--vermillion); border-color: var(--vermillion); }
.lpG__sticky-btn--accent:hover { background: #e02e4f; border-color: #e02e4f; }

/* ===== HERO (same as production DNA) ===== */
.lpG__hero {
    background: #0a0a14 center/cover no-repeat;
    color: #fff;
    padding: 3rem 1.5rem 3.5rem;
    position: relative;
}
.lpG__hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
}
.lpG__hero-art {
    width: 280px;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vermillion), #ff6b6b);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
}
.lpG__hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lpG__hero-info h1 {
    margin: 0 0 0.65rem;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
}
.lpG__hero-artist { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 0.5rem; }
.lpG__hero-artist a { color: #fff; text-decoration: none; font-weight: 700; }
.lpG__hero-artist a:hover { color: var(--vermillion); }
.lpG__feat-label { color: rgba(255,255,255,0.55); font-style: italic; margin: 0 0.4rem; }
.lpG__hero-album { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 1rem; }
.lpG__hero-album a { color: rgba(255,255,255,0.92); text-decoration: none; font-weight: 600; }
.lpG__hero-album a:hover { color: var(--vermillion); }
.lpG__year { color: rgba(255,255,255,0.55); }

.lpG__pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.lpG__pill {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
a.lpG__pill:hover { background: var(--vermillion); border-color: var(--vermillion); }

.lpG__stats { display: flex; flex-wrap: wrap; gap: 0.5rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 1.4rem; }

.lpG__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lpG__btn {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.88rem;
}
.lpG__btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.30); }
.lpG__btn--primary { background: var(--vermillion); border-color: var(--vermillion); box-shadow: 0 8px 20px rgba(255,59,92,0.40); }
.lpG__btn--primary:hover { background: #e02e4f; border-color: #e02e4f; transform: translateY(-1px); }

/* ===== Breadcrumb ===== */
.lpG__crumbs {
    background: #fff;
    border-bottom: 1px solid var(--rule);
    font-size: 0.82rem;
}
.lpG__crumbs-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--ink-3);
}
.lpG__crumbs a { color: var(--ink-2); text-decoration: none; }
.lpG__crumbs a:hover { color: var(--accent); }
.lpG__crumb-current { color: var(--ink); font-weight: 600; }

/* ===== MAIN 2-COL ===== */
.lpG__main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2rem;
    align-items: start;
}
.lpG__col-main { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }

/* ===== Cards ===== */
.lpG__card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.6rem 1.85rem 1.85rem;
    scroll-margin-top: 80px;
}
.lpG__card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--rule);
}
.lpG__card-head h2 { margin: 0; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); }
.lpG__card-head h2 em { font-style: italic; color: var(--ink-2); }
.lpG__card-more { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 0.82rem; }

/* ===== YouTube video card (click-to-play facade) ===== */
.lpG__video { padding-bottom: 1.5rem; }
.lpG__video-facade {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e, #3d1a2e);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    transition: transform 0.25s, box-shadow 0.25s;
    isolation: isolate;
}
.lpG__video-facade:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.lpG__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.25s;
}
.lpG__video-facade:hover .lpG__video-thumb { transform: scale(1.03); filter: brightness(0.85); }
/* If YouTube thumb fails entirely (rare; blocked by content-blocker etc.) */
.lpG__video-facade--noimg { background: linear-gradient(135deg, #1a1a2e, #3d1a2e, #5b1a2e); }
.lpG__video-facade::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.lpG__video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--vermillion);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.40),
        0 0 0 8px rgba(255,255,255,0.10);
    transition: transform 0.25s, background 0.2s;
    z-index: 2;
    padding-left: 6px; /* visually center the play triangle */
}
.lpG__video-facade:hover .lpG__video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #e02e4f;
}
.lpG__video-tag {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    z-index: 2;
}
.lpG__video-caption {
    margin-top: 0.85rem;
    color: var(--ink-2);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}
.lpG__video-caption span { color: var(--ink-3); font-weight: 500; }

/* Real iframe (replaces facade on click) */
.lpG__video-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.lpG__video-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Lyrics card header — stack the title and the language pill group so
   the pills sit on their OWN row below the title (matches the
   reference screenshot). */
.lpG__card--lyrics-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}
.lpG__card--lyrics-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.15;
}

/* Pill toggle group — vermillion active state (matches screenshot) */
.lpG__lang {
    display: inline-flex;
    gap: 0.25rem;
    background: #fff;
    border: 1px solid var(--rule-2);
    padding: 0.3rem;
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.lpG__lang-btn {
    background: transparent;
    border: 0;
    color: var(--ink-2);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.18s;
    line-height: 1;
}
.lpG__lang-btn:hover { color: var(--ink); }
.lpG__lang-btn.is-active {
    background: var(--vermillion);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255,59,92,0.30);
}
.lpG__lang-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }

.lpG__lyrics { font-size: 1.05rem; line-height: 1.85; color: var(--ink); }
.lpG__lyrics-version { display: none; }
.lpG__lyrics-version.is-active { display: block; }
.lpG__lyrics-version p { margin: 0 0 1.25em; }
.lpG__empty { color: var(--ink-3); padding: 2rem 0; text-align: center; }

.lpG__prose { color: var(--ink); line-height: 1.7; font-size: 0.97rem; }
.lpG__prose p { margin: 0 0 0.85em; }
.lpG__prose strong { font-weight: 700; }
.lpG__prose a { color: var(--accent); text-decoration: none; font-weight: 600; }
.lpG__prose a:hover { text-decoration: underline; }

.lpG__trivia { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.lpG__trivia li { padding-left: 1.5rem; position: relative; color: var(--ink); line-height: 1.55; }
.lpG__trivia li::before { content: '⭐'; position: absolute; left: 0; }

.lpG__faq details { border-top: 1px solid var(--rule); padding: 1rem 0; }
.lpG__faq details:first-child { border-top: 0; padding-top: 0; }
.lpG__faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-weight: 600; color: var(--ink); }
.lpG__faq summary::-webkit-details-marker { display: none; }
.lpG__faq summary::after { content: '＋'; color: var(--accent); }
.lpG__faq details[open] summary::after { content: '−'; }
.lpG__faq details div { padding-top: 0.65rem; color: var(--ink-2); line-height: 1.65; font-size: 0.92rem; }

.lpG__credits { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.lpG__credits th { text-align: left; font-weight: 700; color: var(--ink-3); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 1rem 0.75rem 0; border-bottom: 1px solid var(--rule); width: 150px; vertical-align: top; }
.lpG__credits td { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); color: var(--ink); }
.lpG__credits tr:last-child th,
.lpG__credits tr:last-child td { border-bottom: 0; }
.lpG__credits a { color: var(--ink); text-decoration: none; border-bottom: 1px dotted var(--rule-2); }
.lpG__credits a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.lpG__album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.lpG__album-card { text-decoration: none; color: var(--ink); transition: transform 0.2s; }
.lpG__album-card:hover { transform: translateY(-3px); }
.lpG__album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a2e, #3d1a2e);
    background-size: cover;
    background-position: center;
    margin-bottom: 0.55rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    overflow: hidden;
}
.lpG__album-num {
    position: absolute;
    top: 0.55rem; left: 0.55rem;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.22rem 0.5rem;
    border-radius: 4px;
}
.lpG__album-title { font-weight: 700; font-size: 0.92rem; line-height: 1.25; }

.lpG__disclaimer {
    background: #faf6ef;
    border: 1px dashed var(--rule-2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: var(--ink-2);
    font-size: 0.85rem;
    line-height: 1.6;
}
.lpG__disclaimer h3 { margin: 0 0 0.5rem; font-size: 0.92rem; font-weight: 800; color: var(--ink); }
.lpG__disclaimer p { margin: 0 0 0.6rem; }
.lpG__disclaimer p:last-child { margin-bottom: 0; }
.lpG__disclaimer em { font-style: italic; color: var(--ink); }
.lpG__disclaimer strong { color: var(--ink); }
.lpG__disclaimer a { color: var(--vermillion); text-decoration: none; font-weight: 600; }
.lpG__disclaimer a:hover { text-decoration: underline; }

/* Author bio + comments wrappers — match the card frame */
.lpG__authorbio,
.lpG__comments {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
}

/* Mobile-only trending — hide on desktop where the sidebar already has it */
.lpG__mobile-trending { display: none; }
.lpG__mobile-details { display: none; }
@media (max-width: 960px) {
    .lpG__mobile-trending { display: block; }
    .lpG__mobile-details { display: block; margin: 1.25rem 0; }
}

/* ===== Sidebar ===== */
.lpG__sidebar { min-width: 0; }
.lpG__sidebar-sticky {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lpG__side-card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 1.25rem 1.35rem 1.35rem;
}
.lpG__side-card h3 { margin: 0 0 0.85rem; font-size: 0.95rem; font-weight: 800; color: var(--ink); }

/* Desktop-only sidebar cards (e.g. Top trending) — hidden where the sidebar
   stacks on mobile and an in-content mobile equivalent is shown instead, so the
   card never appears twice. Matches the .lpG__mobile-trending breakpoint. */
@media (max-width: 960px) {
    .lpG__side-card--desktop { display: none; }
}

/* Song Details card (sidebar) */
.lpG__details-list {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.7rem 0.9rem;
    margin: 0;
    align-items: baseline;
}
.lpG__details-list dt {
    color: #8a8a8a;
    font-size: 0.9rem;
    font-weight: 500;
}
.lpG__details-list dd {
    margin: 0;
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.35;
}
.lpG__details-list dd a {
    color: var(--vermillion);
    text-decoration: none;
    font-weight: 600;
}
.lpG__details-list dd a:hover { text-decoration: underline; }

/* "On this page" jumpnav */
.lpG__toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.lpG__toc-link {
    display: grid;
    grid-template-columns: 14px 22px 1fr;
    gap: 0.6rem;
    align-items: center;
    padding: 0.5rem 0.6rem;
    text-decoration: none;
    color: var(--ink-2);
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.15s;
    position: relative;
}
.lpG__toc-link:hover { background: var(--bg); color: var(--ink); }
.lpG__toc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rule-2);
    transition: all 0.2s;
    justify-self: center;
}
.lpG__toc-link.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.lpG__toc-link.is-active .lpG__toc-dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(255,59,92,0.18); }
.lpG__toc-icon { opacity: 0.7; font-size: 1rem; }
.lpG__toc-link.is-active .lpG__toc-icon { opacity: 1; }

.lpG__side-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.lpG__side-list a {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.7rem;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    padding: 0.4rem;
    border-radius: 8px;
    transition: background 0.15s;
}
.lpG__side-list a:hover { background: var(--bg); }
.lpG__side-cover { width: 40px; height: 40px; border-radius: 6px; background: linear-gradient(135deg, #1a1a2e, #3d1a2e); background-size: cover; background-position: center; }
.lpG__side-meta { min-width: 0; }
.lpG__side-title { font-weight: 600; font-size: 0.85rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lpG__side-sub { color: var(--ink-3); font-size: 0.74rem; margin-top: 0.1rem; }
.lpG__side-list--ranked a { grid-template-columns: 24px 1fr; }
.lpG__side-rank { color: var(--ink-3); font-weight: 800; font-variant-numeric: tabular-nums; text-align: center; font-size: 0.9rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .lpG__main { grid-template-columns: 1fr; }
    .lpG__sidebar-sticky { position: static; }
    .lpG__toc { display: none; } /* TOC less useful when sidebar is below content */
}
@media (max-width: 720px) {
    .lpG__hero { padding: 2rem 1.25rem 2.25rem; }
    .lpG__hero-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .lpG__hero-art { width: 200px; height: 200px; margin: 0 auto; }
    .lpG__pills, .lpG__stats, .lpG__actions { justify-content: center; }
    .lpG__card { padding: 1.25rem 1.25rem; }
    .lpG__album-grid { grid-template-columns: repeat(2, 1fr); }
    .lpG__credits th { width: 100px; padding-right: 0.5rem; }
    .lpG__sticky-actions { gap: 0.3rem; }
    .lpG__sticky-lang { display: none; }
    .lpG__sticky-btn { padding: 0.45rem 0.65rem; font-size: 0.74rem; }
}

/* ============================================================
   Accessibility layer (WCAG 2.1 AA)
   - Accent used AS TEXT on light backgrounds fails contrast at
     #FF3B5C (~3.5:1). Redirect those small-text usages to the
     darker --accent-text (~4.9:1). The bright accent stays for
     fills, borders, large UI and decorative markers.
   - Global :focus-visible ring for keyboard navigation.
   ============================================================ */
.lpG__hero-artist a:hover,
.lpG__hero-album a:hover { color: var(--accent-text); }
.lpG__crumbs a:hover { color: var(--accent-text); }
.lpG__card-more { color: var(--accent-text); }
.lpG__prose a { color: var(--accent-text); }
.lpG__credits a:hover { color: var(--accent-text); border-bottom-color: var(--accent-text); }
.lpG__disclaimer a { color: var(--accent-text); }
.lpG__toc-link.is-active { color: var(--accent-text); }

.lpG a:focus-visible,
.lpG button:focus-visible,
.lpG summary:focus-visible,
.lpG [tabindex]:focus-visible,
.lpG .lpG__pill:focus-visible,
.lpG .lpG__tab:focus-visible {
    outline: 3px solid var(--accent-text);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== Quick summary — AEO/GEO direct-answer callout at top of content ===== */
.lpG__summary {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-2);
    background: var(--card);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 0;
}
@media (max-width: 640px) {
    .lpG__summary { font-size: 0.98rem; padding: 0.85rem 1rem; }
}

/* Related/You-may-also-like card sub-line (artist name) */
.lpG__album-artist { font-size: 0.78rem; color: var(--ink-3); margin-top: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
