.home-founder-note {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}

.home-founder-note__card {
    display: grid;
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.35rem 1.45rem;
    border: 1px solid color-mix(in srgb, var(--theme-border) 86%, transparent);
    border-radius: 1rem;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--theme-surface) 94%, var(--theme-accent) 6%),
        color-mix(in srgb, var(--theme-surface) 97%, var(--theme-title) 3%)
    );
}

.home-founder-note__photo {
    display: grid;
    place-items: center;
    gap: 0.7rem;
    min-height: 15rem;
    padding: 1.15rem;
    border: 1px dashed color-mix(in srgb, var(--theme-title) 16%, transparent);
    border-radius: 0.9rem;
    background: color-mix(in srgb, var(--theme-surface) 92%, var(--theme-accent) 8%);
    text-align: center;
}

.home-founder-note__photo svg {
    width: 6.2rem;
    height: 6.2rem;
    display: block;
    color: color-mix(in srgb, var(--theme-accent) 78%, var(--theme-text) 22%);
}

.home-founder-note__photo svg circle,
.home-founder-note__photo svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-founder-note__photo-label {
    font-size: 0.94rem;
    color: var(--theme-text-muted);
}

.home-founder-note__title {
    margin: 0 0 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: var(--theme-title);
}

.home-founder-note__text {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--theme-text);
}

.home-founder-note__text--last {
    margin-bottom: 1.15rem;
}

.home-founder-note__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

@media screen and (max-width: 900px) {
    .home-founder-note {
        margin-top: 2.6rem;
        margin-bottom: 2rem;
    }

    .home-founder-note__card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.1rem 1rem;
    }

    .home-founder-note__photo {
        min-height: 11.5rem;
        padding: 1rem;
    }

    .home-founder-note__photo svg {
        width: 5.2rem;
        height: 5.2rem;
    }

    .home-founder-note__title {
        font-size: 1.28rem;
    }

    .home-founder-note__text {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .home-founder-note__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
