/* THÈME MAGAZINE */
:root {
    --police-titre: 'Playfair Display', Georgia, serif;
    --police-texte: 'Source Sans Pro', sans-serif;
    --couleur-primaire: #1a1a1a;
    --couleur-accent: #c9302c;
    --largeur-max: 720px;
}

body {
    font-family: var(--police-texte);
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* En-tête article */
header.title-block-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.title {
    font-family: var(--police-titre);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--couleur-primaire);
}

.subtitle {
    font-family: var(--police-titre);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.author {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--couleur-accent);
}

.date {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Titres */
h1, h2, h3 {
    font-family: var(--police-titre);
    font-weight: 700;
    color: var(--couleur-primaire);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 3rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

/* Drop cap (lettre initiale) */
p:first-of-type::first-letter {
    font-family: var(--police-titre);
    font-size: 4em;
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.1em 0 0;
    color: var(--couleur-accent);
}

/* Paragraphes */
p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

/* Citations pull quote */
blockquote {
    font-family: var(--police-titre);
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    margin: 2.5rem auto;
    padding: 1.5rem 2rem;
    border: none;
    border-top: 3px solid var(--couleur-accent);
    border-bottom: 3px solid var(--couleur-accent);
    background: none;
    color: var(--couleur-primaire);
    max-width: 85%;
}

/* Images full-width */
img {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 0;
}

figure {
    margin: 2.5rem -2rem;
}

figure img {
    margin: 0;
}

figcaption {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding: 1rem 2rem;
    font-style: italic;
}

/* Liens */
a {
    color: var(--couleur-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--couleur-accent);
    transition: all 0.3s;
}

a:hover {
    background: var(--couleur-accent);
    color: white;
    border-bottom-color: var(--couleur-accent);
}

/* Listes */
ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.75rem;
}

/* Séparateur de section */
hr {
    border: none;
    text-align: center;
    margin: 3rem 0;
}

hr::after {
    content: "* * *";
    font-size: 1.5rem;
    letter-spacing: 1rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 17px;
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    figure {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    blockquote {
        font-size: 1.25rem;
        padding: 1rem;
    }

    p:first-of-type::first-letter {
        font-size: 3em;
    }
}
