/*
========================================
   ON GREENS™ - Our Impact Journey Page (v1.0)
   Specific Layout for 3-Panel Visual Map
   Reference: image_10.png / image_19.png Panel 3
========================================
*/

/* 1. Page Subtitle Structure (image_10.png text cue) */
.impact-subtitle {
    font-size: 1.4rem;
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    font-weight: 500;
}

/* 2. The 3-Panel Structure (Side-by-Side Flex) image_10.png feel */
.impact-panels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0 var(--spacing-lg) 0; /* consistent breathing room */
}

/* Individual Panel Rules */
.panel {
    flex: 1; /* evenly balanced panels */
    background-color: var(--color-white); /* clean White space, image_10.png feel */
    border-radius: 8px; /* subtle consistent rounding */
    box-shadow: var(--shadow-soft); /* diffused light shadow */
    overflow: hidden; /* ensures photo rounding is consistent */
    display: flex;
    flex-direction: column;
}

/* 3. Panel Visual Elements Cue image_10.png */
.panel-icon {
    font-size: 2.5rem; /* large placeholder icon */
    color: var(--color-green);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.panel-image {
    width: 100%;
    height: 250px; /* fixed height image blocks, consistent with image_10.png visuals */
    object-fit: cover; /* image stays framed correctly */
}

.panel-content {
    padding: var(--spacing-sm) var(--spacing-md);
}

.panel-content h3 {
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: 0;
}

/* 4. Impact Copy Styling (image_10.png content block) */
.impact-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.impact-content p {
    color: var(--color-text);
    font-size: 1.15rem; /* highly readable copy consistent with Memos */
    max-width: 800px; /* centers and limits width for readable blocks, image_10.png feel */
    margin-left: auto;
    margin-right: auto;
}

/* Center Utility Class */
.text-center {
    text-align: center;
}

/* ========================================
   5. Mobile Responsiveness
======================================== */
@media screen and (max-width: 900px) {
    .impact-panels {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 1.5rem 0 3rem 0;
    }

    .panel {
        width: 100%;
        max-width: 100%;
    }

    .impact-content h2 {
        font-size: 1.8rem;
    }

    .impact-subtitle {
        font-size: 1.1rem;
    }

    .impact-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}