/* Contenedor principal del blog */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-header h1 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 1.2em;
    color: #777;
}

/* Layout del blog */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .blog-layout {
        grid-template-columns: 3fr 1fr;
    }
}

/* Tarjeta de Post */
.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.post-image-link {
    display: block;
}

.post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.8em;
    margin: 0 0 10px;
}

.post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #734796; /* Color principal */
}

.post-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #734796;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-read-more:hover {
    background: #5a327c;
}

/* Sidebar */
.blog-sidebar {
    padding-top: 15px;
}
.sidebar-widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #734796;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 5px 12px;
    background: #e9e9e9;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #734796;
    color: #fff;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a {
    padding: 10px 15px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #555;
    border-radius: 5px;
}
.pagination a.active, .pagination a:hover {
    background: #734796;
    color: #fff;
    border-color: #734796;
}

/* Estilos para la página de artículo individual */
.post-full-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.post-full-content h1 {
    font-size: 2.5em;
}

.post-full-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-full-body {
    line-height: 1.8;
    font-size: 1.1em;
    color: #333;
}
.post-full-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
