﻿/* FOUNDERS — dense photo row, no full section break */
.founders-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .founders-row {
        grid-template-columns: 1.4fr 1fr;
        gap: 3rem;
    }
}

.founders-text p {
    font-size: .9375rem;
    color: var(--text-2);
    margin: 0 0 .875rem;
    line-height: 1.65;
    max-width: 36rem;
}

.founders-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.founder-photo {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bg-soft);
}

    .founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.founder-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9375rem;
    margin: 0 0 .125rem;
    color: var(--navy);
}

.founder-role {
    font-size: .6875rem;
    color: var(--green);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 .375rem;
    font-weight: 600;
}

.founder-bio {
    font-size: .8125rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.5;
}

.inline-link {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--line-2);
}

    .inline-link:hover {
        color: var(--green);
        text-decoration-color: var(--green);
    }

.founders-more {
    margin: 1.25rem 0 0 !important;
}

    .founders-more a {
        color: var(--green);
        font-weight: 600;
        font-size: .875rem;
    }

        .founders-more a:hover {
            color: var(--green-2);
        }
.trust-band {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    font-size: .875rem;
    color: var(--text-2);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

    .trust-band em {
        font-style: normal;
        color: var(--navy);
        font-weight: 500;
    }

    .trust-band .subtext {
        flex-basis: 100%; /* i-break sa bagong linya */
        margin-top: 0.5rem;
        color: var(--text-3);
        font-size: 0.875rem;
    }