/* Founder Quote Section */
.founder-quote {
    background-color: var(--color-blue);
    overflow: hidden;
}

.founder-quote__inner {
    display: flex;
    height: 764px;
}

.founder-quote__content {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    padding: 75px 45px 75px var(--section-px);
    color: var(--color-white);
}

.founder-quote__heading {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-semibold);
    line-height: 60px;
    color: var(--color-white);
}

.founder-quote__body {
    font-size: var(--fs-md);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-white);
}

.founder-quote__body p {
    margin-bottom: 1em;
}

.founder-quote__image {
    flex: 1;
    margin-left: auto;
    position: relative;
}

.founder-quote__attribution {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    padding: 0 30px 30px;
    color: var(--color-white);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.founder-quote__name {
    font-weight: var(--fw-bold);
}

.founder-quote__title {
    font-weight: var(--fw-bold);
}

.founder-quote__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 1023px) {
    .founder-quote__inner {
        flex-direction: column;
        height: auto;
    }

    .founder-quote__content {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 60px 20px;
    }

    .founder-quote__heading {
        font-size: var(--fs-3xl);
        line-height: 1.2;
    }

    .founder-quote__image {
        flex: none;
        width: 100%;
        height: 400px;
    }

    .founder-quote__attribution {
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, var(--color-blue) 0%, var(--color-blue) 40%, rgba(0, 20, 137, 0) 100%);
        padding: 40px 20px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .founder-quote__inner {
        flex-direction: row;
        height: auto;
    }
    .founder-quote__content {
        flex: 0 0 50%;
        padding: 40px 30px 40px 40px;
    }
    .founder-quote__image {
        flex: 1;
        height: auto;
    }
    .founder-quote__heading {
        font-size: var(--fs-4xl);
    }
}
