/* ============================================
   BLOG DE LUIS MS - ESTILOS ESPECÍFICOS
   ============================================ */

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.blog-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

.intro p {
    margin-bottom: 0.8rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.02);
}

body.light-mode .blog-post {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 100, 255, 0.2);
}

body.light-mode .blog-post:hover {
    background: rgba(0, 100, 255, 0.05);
}

.blog-post h2 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.post-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.post-excerpt p,
.post-full p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.post-full {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 212, 255, 0.3);
}

.post-full h3 {
    color: #00d4ff;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    text-align: left;
    font-weight: 600;
}

.post-full h4 {
    color: #a855f7;
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem 0;
    text-align: left;
}

.post-full strong {
    color: #00d4ff;
    font-weight: 600;
}

.post-full blockquote {
    border-left: 3px solid #00d4ff;
    padding-left: 1.2rem;
    margin: 1.2rem 0;
    font-style: italic;
    color: #ccc;
}

body.light-mode .post-full blockquote {
    color: #555;
}

.post-full hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 1.5rem 0;
}

.post-full .signature {
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: right;
    font-style: italic;
    color: #00d4ff;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.read-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post h2 {
        font-size: 1.3rem;
    }
    
    .post-full h3 {
        font-size: 1.2rem;
    }
    
    .blog-post {
        padding: 1.2rem;
    }
}