/* Blog Article Page Styles */
.article-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/blog/blog-header.jpg');
    background-size: cover;
    background-position: center;
    padding: 10rem 2rem 6rem;
    text-align: center;
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

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

.article-meta i {
    color: var(--primary-color);
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.article-content {
    padding: 5rem 2rem;
    background: var(--background);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.article-text h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

.article-text h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.article-text ul, 
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-text li {
    margin-bottom: 0.75rem;
}

.article-text blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-text blockquote p {
    margin-bottom: 0;
}

.article-text a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.article-text .callout {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-text .callout h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-text .callout h4 i {
    color: var(--primary-color);
}

.article-cta {
    margin: 4rem 0 2rem;
    text-align: center;
}

/* Button styles now unified in utilities.css */

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-nav-link:hover {
    color: var(--primary-color);
}

.article-nav-link.prev {
    padding-right: 1rem;
}

.article-nav-link.next {
    padding-left: 1rem;
    margin-left: auto;
}

.article-nav-link i {
    color: var(--primary-color);
}

/* Related articles section */
.related-articles {
    padding: 4rem 2rem;
    background: var(--section-bg);
}

.related-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.related-articles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .article-header {
        padding: 8rem 1.5rem 4rem;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .article-content {
        padding: 3rem 1.5rem;
    }
    
    .article-text h2 {
        font-size: 1.8rem;
    }
    
    .article-text h3 {
        font-size: 1.4rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
} 