/* =========================================
   Impact Page Styles & Layouts
========================================= */
.hero-bg-landscape {
    background-image: url('../assets/landscape.png');
}

.hero-subtitle-impact {
    font-size: 0.6em;
    color: var(--text-dark);
    display: block;
    margin-top: 8px;
}

/* Grids */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Typography Constraints */
.text-constrained {
    margin: 20px auto 40px;
    max-width: 800px;
    font-size: 1rem;
}

.text-constrained-sm {
    margin: 20px auto;
    max-width: 800px;
}

/* =========================================
   Impact Cards (Íconos más grandes)
========================================= */
.card-flex-row {
    display: flex;
    gap: 16px;
}

/* Contenedor del ícono ampliado */
.icon-box-impact {
    width: 64px;
    height: 64px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SVG ampliado y con mejor grosor */
.icon-impact-svg {
    width: 36px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

.card-title-sm {
    margin-bottom: 8px;
}

.card-desc-sm {
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   Challenge/Stats Cards
========================================= */
.img-wrap-usa {
    height: 100px;
    padding-top: 20px;
}

.img-usa-map {
    height: 100%;
    object-fit: contain;
    opacity: 0.1;
    mix-blend-mode: multiply;
}

.img-wrap-bank {
    height: 120px;
}

.pad-top-16 {
    padding-top: 16px;
}

.stats-title-lg {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 12px;
}