/*
 * P-SEO.3 — E-E-A-T components: founder bio card + compact byline + reviewed-by signature.
 * Served from /public so it works without a Vite rebuild.
 */

/* ── Founder card (About page) ───────────────────────────────────────── */
.mt-founder-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin: 24px 0;
}

@media (min-width: 768px) {
    .mt-founder-card {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }
}

.mt-founder-photo-wrap {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0071e3 0%, #5e5ce6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1d1d1f;
}

.mt-founder-role {
    color: #6e6e73;
    margin: 0 0 16px;
    font-weight: 500;
}

.mt-founder-bio {
    color: #1d1d1f;
    margin: 0 0 20px;
    line-height: 1.6;
}

.mt-founder-expertise-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6e6e73;
    margin: 0 0 12px;
}

.mt-founder-expertise {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
}

.mt-founder-expertise li {
    display: flex;
    gap: 8px;
    align-items: start;
    font-size: 0.95rem;
}

.mt-founder-expertise li i {
    color: #34c759;
    flex-shrink: 0;
    margin-top: 2px;
}

.mt-founder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mt-founder-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0071e3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.mt-founder-links a:hover { text-decoration: underline; }

/* ── Compact byline (use in blog footers) ───────────────────────────── */
.mt-founder-compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mt-founder-compact-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #0071e3 0%, #5e5ce6 100%);
}

.mt-founder-compact-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
}

.mt-founder-compact-role {
    font-size: 0.8rem;
    color: #6e6e73;
}

/* ── Reviewed-by signature (legal pages) ────────────────────────────── */
.mt-reviewed-by {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f7;
    border-left: 3px solid #0071e3;
    border-radius: 8px;
    margin: 0 0 28px;
}

.mt-reviewed-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #0071e3 0%, #5e5ce6 100%);
    flex-shrink: 0;
}

.mt-reviewed-by p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.mt-reviewed-by p strong {
    display: block;
    color: #1d1d1f;
    font-weight: 600;
}

.mt-reviewed-by p span {
    color: #6e6e73;
    font-size: 0.85rem;
}
