/* Blog Styles - Override del hero para páginas de blog */
body.blog-page .hero {
    padding: 130px 0 50px !important;
}

body.blog-page .hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

body.blog-page .hero h1 {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Blog hero legacy (por si se usa) */
.blog-hero {
    padding: 120px 0 40px;
    background: 
        linear-gradient(135deg, rgba(0, 129, 186, 0.9) 0%, rgba(0, 90, 133, 0.9) 100%),
        url('../img/fondo.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 2px;
    color: white;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.blog-content {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.blog-post:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

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

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--text-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    font-family: inherit;
}

.search-box button {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: var(--primary-color);
}

.recent-post {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-title {
    font-size: 0.875rem;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.recent-post-title:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Artículo individual */
.article-single {
    padding: 4rem 0;
    min-height: 60vh;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content h2 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.article-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.article-content code {
    background: var(--bg-light);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
}

.article-content pre {
    background: var(--bg-dark);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-tags {
    max-width: 800px;
    margin: 3rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-tags .tag {
    background: var(--bg-light);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.article-share {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    text-align: center;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.related-articles {
    max-width: 1200px;
    margin: 4rem auto;
}

.related-articles h3 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.75rem;
    color: var(--text-color);
}

.back-to-blog {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.back-to-blog .btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: #FCCC0B;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(252, 204, 11, 0.3);
    transition: all 0.3s ease;
}

.back-to-blog .btn:hover {
    background: #e6b800;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 204, 11, 0.4);
}

.no-articles {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-articles i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.blog-card-placeholder {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

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

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--primary-color);
}

.social-widget {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--primary-dark);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.newsletter-form .btn {
    width: 100%;
}

/* Estilos adicionales para artículos dinámicos */
.breadcrumb {
    margin-bottom: 2rem;
    padding-top: 50px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: #FCCC0B;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    background-color: rgba(252, 204, 11, 0.1);
    color: #FFD700;
}

.breadcrumb span {
    color: rgba(255,255,255,0.9);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

.single-article {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 0.5rem 0.5rem 0;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content p {
    text-align: justify;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.article-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-tags .tag {
    background: var(--bg-light);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.article-share {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    text-align: center;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.related-articles {
    margin: 3rem 0;
}

.related-articles h3 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.75rem;
    color: var(--text-color);
}

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

.related-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 1rem;
}

.related-content h4 {
    margin-bottom: 0.5rem;
}

.related-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
}

.related-content h4 a:hover {
    color: var(--primary-color);
}

.related-content p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.back-to-blog-secondary {
    text-align: center;
    margin: 2rem 0;
}

.back-to-blog-secondary .btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: #FCCC0B;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(252, 204, 11, 0.3);
    transition: all 0.3s ease;
}

.back-to-blog-secondary .btn:hover {
    background: #e6b800;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 204, 11, 0.4);
}

.no-articles {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-articles i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.post-image-placeholder {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Article Page */
.article-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #0081BA 0%, #005a85 100%);
    color: white;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    margin-top: 1.5rem;
    width: 100%;
    justify-content: flex-start;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.article-meta span:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.article-meta i {
    font-size: 0.75rem;
    opacity: 0.9;
}

.article-category {
    background: linear-gradient(135deg, #FCCC0B, #FFD700) !important;
    color: #1a1a1a !important;
    font-weight: 600;
}

.article-author {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    font-weight: 500;
}

.article-content {
    padding: 60px 0;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto 0 0;
}

.article-body h2 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.article-body h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--text-color);
}

.article-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.article-body code {
    background: var(--bg-light);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}

.article-body pre {
    background: var(--text-color);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-body pre code {
    background: transparent;
    color: white;
    padding: 0;
}

/* Blog Responsive - Tablet */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .blog-filters {
        justify-content: center;
    }
}

/* Blog Responsive - Mobile */
@media (max-width: 768px) {
    .blog-hero {
        padding: 185px 0 60px;
        min-height: calc(100vh - 185px);
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .blog-content {
        padding: 50px 0;
    }
    
    .blog-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-post {
        margin-bottom: 1rem;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 1.25rem;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
    }
    
    /* Article page */
    .article-header {
        padding: 140px 0 50px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .article-meta {
        flex-direction: row;
        gap: 0.3rem;
        font-size: 0.75rem;
        align-items: center;
        padding: 0 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .article-meta span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        flex-shrink: 0;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        gap: 0.3rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        text-align: left;
        padding-top: 30px;
    }
    
    .breadcrumb span {
        word-break: break-word;
    }
    
    .article-content {
        padding: 50px 0;
    }
    
    body.blog-page .hero .hero-content {
        max-width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .article-body {
        padding: 2rem 1.5rem;
        margin: 0 1rem 0 0;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
        margin: 1.25rem 0 0.75rem;
    }
}

/* Blog Responsive - Small Mobile */
@media (max-width: 480px) {
    .blog-hero {
        padding: 140px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 40px 0;
    }
    
    .filter-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .post-content {
        padding: 1.25rem;
    }
    
    .post-title {
        font-size: 1.1rem;
    }
    
    .post-excerpt {
        font-size: 0.9rem;
    }
    
    .sidebar-widget {
        padding: 0.875rem;
    }
    
    /* Article */
    .article-header {
        padding: 120px 0 40px;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    body.blog-page .hero .hero-content {
        max-width: calc(100% - 1rem);
        margin: 0 0.5rem;
    }

    .article-body {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 0 0;
    }
    
    .article-body h2 {
        font-size: 1.35rem;
    }
    
    .article-body h3 {
        font-size: 1.15rem;
    }
    
    .pagination {
        margin-top: 2rem;
    }
    
    .pagination button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Admin Access Button in Footer */
.admin-access {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.admin-access:hover {
    color: var(--primary-color);
}

.admin-access i {
    font-size: 1rem;
}

/* Tiempo de lectura styling */
/* En artículos individuales (hero azul) - texto blanco */
.article-reading-time {
    color: white !important;
    font-weight: 500;
    background: rgba(255,255,255,0.15) !important;
}

.article-reading-time i {
    color: white;
}

/* En lista del blog (fondo blanco) - color normal */
.post-meta span:has(.fa-clock) {
    color: var(--text-light) !important;
    font-weight: 500;
}

.post-meta .fa-clock {
    color: var(--text-light);
}
/* Animación heroGlow del index */
@keyframes heroGlow {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.6;
    }
}
