/*--------------------------------------------------------------
# Post Detail — Editorial Style
# Agregar al final de main.css (o incluir como post-detail.css)
--------------------------------------------------------------*/

/* ── Tipografía base del artículo ── */
.blog-details .article {
    background-color: var(--surface-color);
    padding: 2.5rem 2rem 3rem;
    box-shadow: none;
    border: none;
    max-width: 720px;
    margin: 0 auto;
}

.blog-details .title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: #111;
    margin-bottom: 0.5rem;
}

/* ── Meta top ── */
.blog-details .meta-top {
    margin-top: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 0.5px solid #e0ddd8;
}

.blog-details .meta-top ul li + li {
    padding-left: 16px;
}

.blog-details .meta-top a,
.blog-details .meta-top i {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: #aaa;
}

/* ── Contenido del artículo ── */
.blog-details .content {
    margin-top: 2rem;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 17px;
    line-height: 1.95;
    color: #1a1916;
}

.blog-details .content p {
    font-size: 17px;
    line-height: 1.95;
    margin-bottom: 1.6rem;
    color: #1a1916;
}

.blog-details .content h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
    margin-bottom: 0.9rem;
    margin-top: 3.25rem;
    border: none;
}

.blog-details .content h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111;
}

/* ── Pull quote ── */
.blog-details .content .pull-quote,
.blog-details .content blockquote {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 19.5px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    border-top: 0.5px solid #c8c4be;
    border-bottom: 0.5px solid #c8c4be;
    border-left: none;
    border-right: none;
    background: transparent;
    padding: 1.5rem 0;
    margin: 2.5rem 0;
    color: #1a1916;
    quotes: none;
}

.blog-details .content blockquote::before {
    display: none;
}

.blog-details .content blockquote p {
    display: block;
    font-size: 19.5px;
    margin-bottom: 0;
}

/* ── Interlude / callout ── */
.blog-details .content .interlude {
    background: #f3f1ee;
    border-left: 2px solid #a09890;
    border-radius: 0 6px 6px 0;
    padding: 1.1rem 1.5rem;
    margin: 1.75rem 0 2rem;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 15.5px;
    font-style: italic;
    color: #555;
    line-height: 1.85;
}

/* ── Cierre editorial ── */
.blog-details .content .closing-editorial {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: #1a1916;
    padding-top: 2.25rem;
    margin-top: 2.25rem;
    border-top: 0.5px solid #e0ddd8;
}

/* ── Alt titles box (títulos alternativos) ── */
.alt-titles-box {
    border: 0.5px solid #ddd;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    background: #f3f1ee;
}

.alt-titles-box .alt-label {
    font-family: 'Mulish', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    margin-bottom: 1rem;
}

.alt-titles-box .alt-item {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #555;
    padding: 0.4rem 0;
    border-bottom: 0.5px solid #ddd;
    line-height: 1.6;
}

.alt-titles-box .alt-item:last-child {
    border-bottom: none;
}

/* ── Section label (tipo "I · Contexto") ── */
.blog-details .content .section-label {
    font-family: 'Mulish', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
    margin-bottom: 0.9rem;
    margin-top: 3.25rem;
    display: block;
}

/* ── Meta del artículo (debajo del título) ── */
.article-meta-line {
    font-family: 'Mulish', sans-serif;
    font-size: 11.5px;
    color: #aaa;
    font-weight: 400;
    padding-bottom: 2rem;
    margin-bottom: 0.25rem;
    border-bottom: 0.5px solid #e0ddd8;
}

/* ── Ajuste del fondo de página ── */
body.single-post {
    background: #faf9f7;
}

/* ── Sidebar sin box-shadow pesado en modo editorial ── */
@media (min-width: 992px) {
    .blog-details .article {
        padding: 2.5rem 0 3rem;
    }
}