.founder-section {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
}

.founder-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.founder-card {
    background-color: var(--color-white);
    border-radius: 12px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    box-shadow: 0px 8px 17px #171a1f3B, 0px 0px 2px #171a1f33;
    display: flex;
    gap: 3.5rem;
    padding: 3.5rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.founder-image-wrapper {
    flex: 0 0 35%;
}

.founder-image-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.founder-content {
    flex: 1;
}

.founder-title {
    color: #ff6b6b;
    /* Precise coral/rose color from image */
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.founder-content p {
    font-size: 1.15rem;
    /* Follows memory rule: max 1.3rem */
    font-weight: 500;
    /* Follows memory rule: weight 500 */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #374151;
    /* Slate gray for premium feel */
}

.founder-content p:last-of-type {
    margin-bottom: 2rem;
}

.founder-links {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.founder-links a {
    color: #007c0a;
    /* Brand green */
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}

.founder-links a:hover {
    color: #005a07;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .founder-card {
        gap: 2.5rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: var(--spacing-lg) 0;
    }

    .founder-card {
        flex-direction: row;
        /* Keep horizontal on tablets unless very narrow */
    }

    .founder-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .founder-card {
        flex-direction: column-reverse;
        /* Text up, image down at mobile */
        padding: 2.5rem 1.5rem;
        gap: 2rem;
        text-align: left;
    }

    .founder-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }

    .founder-image-wrapper img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .founder-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .founder-content p {
        font-size: 1.1rem;
    }
}

/* Specific requirement for 320px mobile view */
@media (max-width: 320px) {
    .founder-card {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .founder-title {
        font-size: 1.5rem;
    }

    .founder-content p {
        font-size: 1rem;
    }

    .founder-links {
        font-size: 1.1rem;
    }
}