/* === Info So Good - Bright & Friendly === */

body.lsg-info {
    --lsg-bg: #FFFFFF;
    --lsg-bg-secondary: #F8FAFC;
    --lsg-text: #1E293B;
    --lsg-text-secondary: #64748B;
    --lsg-accent: #3B82F6;
    --lsg-accent-light: #DBEAFE;
    --lsg-border: #E2E8F0;
    --lsg-card-bg: #FFFFFF;
    --lsg-card-shadow: 0 1px 3px rgba(0,0,0,0.06);

    background-color: var(--lsg-bg);
    color: var(--lsg-text);
}

/* Nav */
body.lsg-info .lsg-nav { background: var(--lsg-bg); border-bottom: 1px solid var(--lsg-border); }
body.lsg-info .lsg-nav__logo { color: var(--lsg-accent); }
body.lsg-info .lsg-nav__links a { color: var(--lsg-text-secondary); }
body.lsg-info .lsg-nav__links a:hover { color: var(--lsg-accent); }

/* Cards */
body.lsg-info .lsg-card {
    background: var(--lsg-card-bg);
    box-shadow: var(--lsg-card-shadow);
    border: 1px solid var(--lsg-border);
}

body.lsg-info .lsg-card__title { color: var(--lsg-text); }
body.lsg-info .lsg-card__summary { color: var(--lsg-text-secondary); }
body.lsg-info .lsg-card__meta { color: var(--lsg-text-secondary); }

/* Filter Chips */
body.lsg-info .lsg-chip {
    background: var(--lsg-bg);
    border-color: var(--lsg-border);
    color: var(--lsg-text-secondary);
}
body.lsg-info .lsg-chip:hover,
body.lsg-info .lsg-chip--active {
    background: var(--lsg-accent);
    border-color: var(--lsg-accent);
    color: #fff;
}

/* Post Content */
body.lsg-info .lsg-post-content { color: var(--lsg-text); }
body.lsg-info .lsg-post-content a { color: var(--lsg-accent); }
body.lsg-info .lsg-post-content blockquote {
    border-left: 4px solid var(--lsg-accent);
    padding-left: 1rem;
    color: var(--lsg-text-secondary);
    background: var(--lsg-bg-secondary);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
}

body.lsg-info .lsg-post-content code {
    background: var(--lsg-bg-secondary);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Recommendations */
body.lsg-info .lsg-recommendations__heading { border-color: var(--lsg-accent); color: var(--lsg-text); }

/* Section */
body.lsg-info .lsg-section__more { color: var(--lsg-accent); }

/* Footer */
body.lsg-info .lsg-footer { background: var(--lsg-bg-secondary); color: var(--lsg-text-secondary); }
body.lsg-info .lsg-footer a { color: var(--lsg-text-secondary); }
body.lsg-info .lsg-footer a:hover { color: var(--lsg-accent); }


/* =============================================
   Info v2 – Structured Field Components
   ============================================= */

/* --- 1. Hero --- */
.lsg-info-hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 0 1.5rem;
}

.lsg-info-hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3B82F6;
    margin-bottom: 0.5rem;
}

.lsg-info-hero__dek {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* --- 2. Summary Points --- */
.lsg-info-summary-points {
    max-width: 720px;
    margin: 0 auto 2rem;
    background: #DBEAFE;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.lsg-info-summary-points ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lsg-info-summary-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1E293B;
}

.lsg-info-summary-points li:last-child {
    margin-bottom: 0;
}

.lsg-info-summary-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: 700;
}

/* --- 3. Section (base + variants) --- */
.lsg-info-section {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 0;
}

.lsg-info-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.75rem;
}

.lsg-info-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #1E293B;
    margin: 0 0 1rem;
}

.lsg-info-section--watch {
    border-left: 4px solid #F59E0B;
    padding-left: 1.25rem;
}

.lsg-info-section--risk {
    border-left: 4px solid #EF4444;
    padding-left: 1.25rem;
}

.lsg-info-section--explain {
    border-left: 4px solid #3B82F6;
    padding-left: 1.25rem;
}

/* --- 4. Fact Box --- */
.lsg-info-factbox {
    max-width: 720px;
    margin: 0 auto 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.lsg-info-factbox dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
}

.lsg-info-factbox dt {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
}

.lsg-info-factbox dd {
    font-size: 0.95rem;
    color: #1E293B;
    margin: 0;
}

/* --- 5. FAQ --- */
.lsg-info-faq {
    max-width: 720px;
    margin: 0 auto 2rem;
}

.lsg-info-faq__item {
    margin-bottom: 1.25rem;
}

.lsg-info-faq__item:last-child {
    margin-bottom: 0;
}

.lsg-info-faq__question {
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.35rem;
}

.lsg-info-faq__answer {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748B;
    margin: 0;
}

/* --- 6. Timeline --- */
.lsg-info-timeline {
    max-width: 720px;
    margin: 0 auto 2rem;
    position: relative;
    padding-left: 1.75rem;
}

.lsg-info-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
    background: #E2E8F0;
}

.lsg-info-timeline__item {
    position: relative;
    margin-bottom: 1.25rem;
}

.lsg-info-timeline__item:last-child {
    margin-bottom: 0;
}

.lsg-info-timeline__item::before {
    content: "";
    position: absolute;
    left: -1.75rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #3B82F6;
    z-index: 1;
}

.lsg-info-timeline__date {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0 0 0.15rem;
}

.lsg-info-timeline__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}
