/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #eaeaea;
    padding: 40px 20px;
}

/* TITULO */
h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #c5a46d;
    letter-spacing: 2px;
}

/* CONTENEDOR */
.articulos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
}

/* TARJETA */
.articulo {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* HOVER */
.articulo:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

/* LINK */
.articulo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* IMAGEN */
.articulo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENIDO TEXTO */
.articulo h3 {
    font-size: 17px;
    padding: 12px 15px 5px;
    color: #c5a46d;
    font-family: 'Playfair Display', serif;
}

/* AUTOR */
.articulo p:nth-of-type(1) {
    font-size: 13px;
    color: #aaa;
    padding: 0 15px;
}

/* FECHA */
.articulo p:nth-of-type(2) {
    font-size: 12px;
    color: #777;
    padding: 0 15px 15px;
}

.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;
}