/* ---- Layout general ---- */
.single-post #cuerpo {
    padding: 50px 0 60px;
    font-size: 16px;
}

@media (width > 767px){
    .single-post #cuerpo{
        border-left: solid 30px #651c34;
    }
}


/* ---- Artículo principal ---- */
.single-article__thumbnail {
    overflow: hidden;
    margin-bottom: 25px;
    max-width: 300px;
}

.single-article__thumbnail img {
    width: 100%;
    display: block;
}

.single-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: .85em;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.single-article__meta i {
    margin-right: 5px;
    color: #b89d6a;
}

.single-article__title {
    font-size: 1.4em;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.25;
}

.single-article__content {
    font-size: 1em;
    line-height: 1.3;
    /* color: #444; */
    margin-bottom: 40px;

    h1 {
        font-size: 1.4em;
        font-weight: 700;
    }

    h2 {
        font-size: 1.3em;
        font-weight: 700;
    }

    h3 {
        font-size: 1.2em;
        font-weight: 700;
    }

    h4 {
        font-size: 1.1em;
        font-weight: 700;
    }
}

.single-article__content img {
    max-width: 100%;
    height: auto;
}

.single-article__content p {
    margin-bottom: 1.0rem;
}

/* ---- Navegación entre posts ---- */
.single-article__nav {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 10px;
}

.single-article__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9em;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    transition: color .3s ease;
}

.single-article__nav-link:hover {
    color: #b89d6a;
    text-decoration: none;
}