/* ========== CORREGIDO: Meta información del post ========== */

.article-single img{
    width: 100%;
}
/* Meta información del post */
.article-single .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Separadores entre elementos (mi código usa spans directos) */
.article-single .article-meta span:not(:last-child)::after,
.article-single .article-meta time:not(:last-child)::after {
    content: "•";
    margin: 0 0.75rem;
    color: #dee2e6;
}

/* Tiempo de lectura específico */
.reading-time {
    font-weight: 500;
    color: #495057;
}

/* Enlaces en meta */
.article-single .article-meta a {
    color: inherit;
    text-decoration: none;
}

.article-single .article-meta a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Para páginas de índice del blog */
.blog-post-preview .article-meta {
    background: transparent;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
    font-size: 0.85rem;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .article-single .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .article-single .article-meta span:not(:last-child)::after,
    .article-single .article-meta time:not(:last-child)::after {
        display: none;
    }
    
    .blog-post-preview .article-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========== CORREGIDO: Botones de compartir ========== */

.social-share {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.social-share strong {
    display: block;
    margin-bottom: 1.5rem;
    color: #495057;
    font-size: 1.1rem;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-share a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}

.social-share a[href*="twitter"] {
    background: black;
    color: white;
}

.social-share a[href*="facebook"] {
    background: #1877f2;
    color: white;
}

.social-share a[href*="linkedin"] {
    background: #0077b5;
    color: white;
}

.social-share a[href*="wa.me"] {
    background: #25d366;
    color: white;
}

/* ========== CORREGIDO: Tags del post ========== */

.article-tags {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.article-tags strong {
    display: block;
    margin-bottom: 1rem;
    color: #495057;
    font-size: 1rem;
}

/* ========== CORREGIDO: Imagen destacada ========== */

.post-image {
    margin: 2rem 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========== EXCERPT/RESUMEN ========== */

.post-excerpt {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    border-left: 4px solid #007bff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #495057;
}

.post-excerpt p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-single h1{
    margin-top: 11px;
}

.article-author{
    display: none;
}
.article-category{
    margin-bottom: 0;
    font-size: 14px;
}
/* ========== BREADCRUMBS ========== */

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #6c757d;
    margin: 0 0.5rem;
}

/* ========== POSTS RELACIONADOS ========== */

.related-posts {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
    color: #495057;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.related-post a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.related-post h4 {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 1rem;
}

.related-post p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ========== RESPONSIVE GENERAL ========== */

@media (max-width: 768px) {
    .social-share {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .social-share a {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .post-excerpt {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .post-excerpt p {
        font-size: 1rem;
    }
    
    .related-posts {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}
