@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Figtree, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: #ffffff;
    color: #2d3748;
    /* Dark charcoal text color */
    min-height: 100vh;
}

:root {
    --color-coral: #f47373;
    --color-coral-dark: #e06363;
    --color-text-dark: #2b303f;
    --color-text-body: #334155;
}

.site-logo {
    display: block;
    max-width: 160px;
    margin-bottom: 1.5rem;
}

/* Kicker — la etiqueta pequeña en coral encima del titular */
.kicker {
    color: var(--color-coral);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.001em;
}

/* Titular principal, compartido por todas las páginas */
h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    text-align: left;
}

/* Tipografía del cuerpo de texto (Markdown) */
.body-copy {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-body);
    letter-spacing: -0.001em;
}

.body-copy p {
    margin-bottom: 1.5rem;
}

.body-copy strong {
    color: #0f172a;
    font-weight: 700;
}

.body-copy ol,
.body-copy ul {
    margin-left: 35px;
    margin-top: 1rem;
    margin-bottom: 1.75rem;
}

.body-copy ol li {
    margin-bottom: 0.1rem;
    padding-left: 10px;
}

.logo-header {
    margin-left: auto;
    margin-right: auto;
}