/* intro.css — bloco introdutório estilo editorial understated (ref: tris
   sherliker): serif, à esquerda, muito respiro, divisor ornamental discreto. */
.intro {
    font-family: var(--font-serif);
}
.intro p { max-width: none; }
.intro__name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
    line-height: 1.15;
    margin-bottom: var(--space-3);
}
.intro p + p { margin-top: var(--space-3); }

/* Divisor ornamental (⁂) — hr acessível, sem régua sólida */
.ornament {
    border: 0;
    height: auto;
    margin-block: var(--space-3);
    text-align: center;
    color: var(--muted);
    overflow: visible;
}
.ornament::before {
    content: "⁂";
    font-size: 1.3rem;
    letter-spacing: 0.4em;
}
