/* About Founder */
.about-founder {
    background-color: var(--color-blue-dark);
    overflow: hidden;
}

.about-founder__inner {
    display: flex;
    min-height: 480px;
}

.about-founder__content {
    flex: 1;
    padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) var(--section-px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
}

.about-founder__name {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
}

.about-founder__bio {
    font-size: var(--fs-md);
    color: var(--color-white);
    line-height: 1.7;
    opacity: 0.9;
}

.about-founder__bio p {
    margin-bottom: 1em;
}

.about-founder__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.about-founder__social-label {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
}

.about-founder__social-links {
    display: flex;
    gap: 25px;
}

.about-founder__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    transition: opacity 0.2s ease;
}

.about-founder__social-link:hover {
    opacity: 0.7;
}

.about-founder__photo {
    width: 50%;
    flex-shrink: 0;
}

.about-founder__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Matt Smith Video */
.matt-smith-video {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.26) 0%, rgba(40,58,151,0.01) 93.71%);
}

.matt-smith-video__inner {
    max-width: var(--narrow-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
    padding: 0 var(--space-lg);
}

.matt-smith-video__headline {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--color-black);
    text-align: center;
}

.matt-smith-video__headline em {
    color: var(--color-orange);
    font-style: normal;
}

.matt-smith-video__subtitle {
    font-size: var(--fs-md);
    color: var(--color-black);
    text-align: center;
    margin-top: -28px;
}

.matt-smith-video__player {
    width: 100%;
    border-radius: 11px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.matt-smith-video__player iframe {
    width: 100%;
    height: 100%;
}

.matt-smith-video__cta {
    margin-top: 0;
}

@media (max-width: 1023px) {
    .about-founder__inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .about-founder__content {
        display: contents;
    }

    .about-founder__name {
        grid-row: 1;
        padding: 40px 20px 20px;
    }

    .about-founder__photo {
        grid-row: 2;
        width: 100%;
        height: 400px;
    }

    .about-founder__bio {
        grid-row: 3;
        padding: 20px 20px 0;
    }

    .about-founder__social {
        grid-row: 4;
        padding: 20px 20px 40px;
    }
}
