/* public/css/style.css */
/* Mantén los estilos generales de :root, body, container, etc. que ya tenías. */
/* A continuación, reemplaza o añade los siguientes estilos específicos. */

:root {
    --primary-color: #333;
    --secondary-color: #007bff;
    --background-color: #f8f9fa;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --border-color: #dee2e6;
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Lato', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: #0056b3; }

.main-header, .main-footer {
    text-align: center;
    padding: 2rem 1rem;
}
.main-header h1 a { color: var(--primary-color); font-family: var(--font-serif); }

/* --- NUEVO ESTILO PARA LA LISTA DE POSTS SIMPLIFICADA --- */
.post-list-simple .post-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.post-list-simple .post-item:first-child {
    padding-top: 1rem;
}

.post-list-simple .post-item:last-child {
    border-bottom: none;
}

.post-item-title {
    font-family: var(--font-serif);
    margin: 0 0 0.25rem 0;
    font-size: 1.75rem;
}

.post-item-title a {
    color: var(--primary-color);
}
.post-item-title a:hover {
    color: var(--secondary-color);
}

.post-item-subtitle {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--text-muted-color);
    font-weight: 400;
}

.post-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9em;
}

.post-item-date {
    color: var(--text-muted-color);
}

.post-item-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85em;
}


/* --- ESTILOS PARA EL POST INDIVIDUAL (sin cambios, pero se mantienen) --- */
.full-post h1, .full-post h2 { font-family: var(--font-serif); }
.full-post h1 { margin-top: 0; }
.full-post h2 { font-weight: 400; color: #555; margin-top: -1rem; margin-bottom: 1rem; }
.full-post-image { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }
.post-meta { color: #6c757d; font-size: 0.9em; margin-bottom: 1rem; }
.post-content { font-family: var(--font-serif); font-size: 1.1em; line-height: 1.8; }
.post-tags { margin-top: 2rem; font-size: 0.9em; }

.post-navigation {
    display: flex; justify-content: space-between; margin-top: 3rem;
    border-top: 1px solid var(--border-color); padding-top: 1.5rem;
}
.post-navigation a { color: #333; font-weight: bold; }
.post-navigation a span { display: block; font-weight: normal; color: #6c757d; font-size: 0.9em; }
.nav-next { text-align: right; }