/* ==========================================================================
   Founder Trust Signal
   Reusable photo + quote block for building visitor trust.
   Used on: homepage hero, what-you-get header, about page header.
   ========================================================================== */

.founder-trust {
    display: flex;
    align-items: center;
    gap: var(--space-4, 1rem);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.founder-trust__photo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    box-shadow: 2px 3px 8px rgb(0 0 0 / 18%);
}

.founder-trust__text {
    text-align: left;
}

.founder-trust__quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-navy-700, #334e68);
    margin: 0 0 0.25rem;
}

.founder-trust__attribution {
    font-size: 0.8rem;
    color: var(--color-navy-600, #486581);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   About page variant — larger photo, centered, label only (no quote)
   -------------------------------------------------------------------------- */

.founder-trust--about {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3, 0.75rem);
    margin-bottom: var(--spacing-lg, 1.5rem);
    animation: none;
}

.founder-trust--about .founder-trust__photo {
    width: 160px;
    box-shadow: 3px 4px 12px rgb(0 0 0 / 20%);
}

.founder-trust--about .founder-trust__attribution {
    font-size: 0.9rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Homepage hero context — inline with subtitle
   -------------------------------------------------------------------------- */

.hero-subtitle-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle-row .hero-subtitle {
    max-width: none;
    margin: 0;
    text-align: left;
    flex: 1;
    animation: none;
}

.hero-subtitle-row .founder-trust {
    animation: none;
    flex-shrink: 0;
    max-width: 200px;
}

/* --------------------------------------------------------------------------
   What You Get header context — inline with title
   -------------------------------------------------------------------------- */

.wyg__header--with-founder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wyg__header--with-founder .wyg__header-text {
    flex: 1;
}

.wyg__header--with-founder .founder-trust {
    flex-shrink: 0;
    max-width: 200px;
    animation: none;
}

/* --------------------------------------------------------------------------
   Responsive — stack on mobile
   -------------------------------------------------------------------------- */

@media (width <= 768px) {
    .hero-subtitle-row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1.25rem;
    }

    .hero-subtitle-row .hero-subtitle {
        text-align: center;
    }

    .hero-subtitle-row .founder-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: none;
    }

    .hero-subtitle-row .founder-trust__text {
        text-align: center;
    }

    .wyg__header--with-founder {
        flex-direction: column-reverse;
        text-align: center;
    }

    .wyg__header--with-founder .wyg__header-text {
        text-align: center;
    }

    .wyg__header--with-founder .founder-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: none;
    }

    .wyg__header--with-founder .founder-trust__text {
        text-align: center;
    }

    .founder-trust--about .founder-trust__photo {
        width: 120px;
    }
}
