/* ==========================================================================
   JAD GROUP -- LOCAL CONTENT PAGE STYLES
   Styles for: Nigerian content, NCDMB compliance, local impact.
   Shared styles (reset, variables, nav, footer, buttons) live in global.css.
   ========================================================================== */


/* ==========================================================================
   1. LC OVERVIEW
   ========================================================================== */

.lc-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lc-overview-text h2 {
    margin-bottom: 20px;
}

.lc-overview-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.lc-overview-img {
    border-radius: 12px;
    overflow: hidden;
}

.lc-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


/* ==========================================================================
   2. LC PILLARS
   ========================================================================== */

.lc-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lc-pillar {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: all var(--transition);
}

.lc-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.lc-pillar-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    font-size: 1.6rem;
}

.lc-pillar h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.lc-pillar p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.lc-pillar .big-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.lc-pillar .big-stat-label {
    font-size: 0.8rem;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 4px;
}


/* ==========================================================================
   3. NCDMB SECTION
   ========================================================================== */

.ncdmb-section {
    background: var(--navy);
    padding: 80px 0;
}

.ncdmb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ncdmb-content .section-label {
    color: var(--gold);
}

.ncdmb-content .section-title {
    color: var(--white);
}

.ncdmb-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.ncdmb-content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.ncdmb-content-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.ncdmb-content-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.ncdmb-image {
    border-radius: 12px;
    overflow: hidden;
}

.ncdmb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


/* ==========================================================================
   4. IMPACT METRICS
   ========================================================================== */

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--grey-light);
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.impact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.1);
    color: var(--gold);
    font-size: 1.2rem;
}

.impact-card .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 4px;
}

.impact-card .number .suffix {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
}

.impact-card .label {
    font-size: 0.8rem;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.impact-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-top: 8px;
}


/* ==========================================================================
   5. LC INITIATIVES (Additional detail sections)
   ========================================================================== */

.lc-initiatives {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.lc-initiative-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lc-initiative-item:nth-child(even) {
    direction: rtl;
}

.lc-initiative-item:nth-child(even) > * {
    direction: ltr;
}

.lc-initiative-img {
    border-radius: 12px;
    overflow: hidden;
}

.lc-initiative-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.lc-initiative-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.lc-initiative-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}


/* ==========================================================================
   6. RESPONSIVE -- LOCAL CONTENT PAGE
   ========================================================================== */

/* --- 1024px Breakpoint --- */
@media (max-width: 1024px) {

    .lc-overview {
        gap: 40px;
    }

    .lc-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .ncdmb-grid {
        gap: 40px;
    }

    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .lc-initiative-item {
        gap: 32px;
    }
}

/* --- 768px Breakpoint --- */
@media (max-width: 768px) {

    .lc-overview {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lc-overview-img {
        order: -1;
    }

    .lc-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lc-pillar {
        padding: 36px 28px;
    }

    .lc-pillar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .ncdmb-section {
        padding: 56px 0;
    }

    .ncdmb-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ncdmb-image {
        order: -1;
    }

    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .impact-card {
        padding: 24px;
    }

    .lc-initiative-item,
    .lc-initiative-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .lc-initiative-img {
        order: -1;
    }
}

/* --- 480px Breakpoint --- */
@media (max-width: 480px) {

    .lc-pillar {
        padding: 28px 20px;
    }

    .lc-pillar .big-stat {
        font-size: 2rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-card .number {
        font-size: 1.6rem;
    }
}
