/* Enhanced Blog Detail Styles */
.blog-detail-meta .meta-date,
.blog-detail-meta .meta-reading,
.blog-detail-meta .meta-views,
.blog-detail-meta .meta-author {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-detail-hero.no-image .blog-detail-meta span {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.blog-detail-meta span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.blog-article-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #64748b;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

/* Tags Section */
.blog-article-tags {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tags-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.article-tag:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Enhanced Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.share-btn:hover::before {
    opacity: 0.1;
}

.share-twitter {
    color: #000000;
    border-color: #000000;
}

.share-twitter:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-linkedin {
    color: #0077b5;
    border-color: #0077b5;
}

.share-linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.2);
}

.share-facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
}

.share-email {
    color: var(--text-muted);
    border-color: var(--border-color);
}

.share-email:hover {
    background: var(--text-muted);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.2);
}

/* Enhanced Related Posts */
.related-header {
    text-align: center;
    margin-bottom: 2rem;
}

.related-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.blog-related-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.blog-related-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--primary-color);
}

.blog-related-thumb {
    position: relative;
    overflow: hidden;
}

.blog-related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-related-card:hover .blog-related-overlay {
    opacity: 1;
}

.blog-related-overlay i {
    color: white;
    font-size: 1.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.blog-related-card:hover .blog-related-overlay i {
    transform: scale(1);
}

.blog-related-readmore {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.blog-related-card:hover .blog-related-readmore {
    opacity: 1;
    transform: translateY(0);
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(2px);
}

/* Enhanced Article Content */
.blog-article-content {
    position: relative;
}

.blog-article-content::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    opacity: 0.3;
}

@media (max-width: 991px) {
    .blog-article-content::before {
        left: -1.5rem;
    }
}

@media (max-width: 767px) {
    .blog-article-content::before {
        display: none;
    }
    
    .article-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .blog-related-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

@media (max-width: 575px) {
    .blog-article-tags {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .share-buttons {
        gap: 0.5rem;
    }
    
    .share-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}
