/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #eaeaea;
    padding: 40px 20px;
}

/* CONTENEDOR */
.container-articulo {
    max-width: 800px;
    margin: auto;
}

/* TITULO */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #c5a46d;
    margin-bottom: 20px;
    text-align: center;
}

/* IMAGEN */
.container-articulo img {
    width: 50%;
    max-height: 200px; /* controla el tamaño */
    border-radius: 10px;
    margin: 20px 0;
    display: block;
    margin: 20px auto;
}

/* CONTENIDO */
.contenido {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 25px;
    text-align: justify;
}

/* METADATA */
.meta {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 30px;
    text-align: center;
}

/* BOTÓN VOLVER */
.volver {
    text-align: center;
}

.btn-volver {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #c5a46d;
    color: #c5a46d;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-volver:hover {
    background: #c5a46d;
    color: #0b0b0b;
}