/* Additional Blog Styles */

/* Blog Banner */
.blog-banner {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/pattern-dots.svg');
    opacity: 0.1;
    z-index: 0;
}

/* Enhanced blog article styles */
.blog-article {
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Article page enhancements */
.article-text p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-text h2 {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.article-text strong {
    color: var(--primary-color);
}

.article-quote {
    position: relative;
}

.article-quote::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.article-quote blockquote {
    position: relative;
    padding-left: 2rem;
}

/* Enhanced related articles section */
.related-articles {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.related-articles h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 2rem;
}

/* Article tags hover effect */
.tag {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Article author section enhancements */
.article-author {
    transition: all 0.3s ease;
}

.article-author:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Media queries specific to blog */
@media screen and (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-share {
        padding-top: 1.5rem;
    }
    
    .article-author {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .blog-categories {
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .categories-list {
        justify-content: flex-start;
        padding: 0.5rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
}