/* Blog Post Styles */

/* Main Content */
.blog-post {
    padding: 120px 0 60px;
    margin-top: 80px;
}

.blog-post .container {
    max-width: 900px;
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--neutral-600);
    font-size: 0.9rem;
}

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

.post-meta i {
    margin-right: 5px;
}

.post-category {
    color: var(--primary-500);
    font-weight: 600;
}

.post-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--neutral-900);
}

.post-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Post Content */
.post-content {
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-800);
}

.post-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: 30px;
    font-weight: 500;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--neutral-900);
}

.post-content p {
    margin-bottom: 25px;
}

.post-content a {
    color: var(--primary-500);
    text-decoration: underline;
}

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

.post-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--neutral-100);
    border-left: 5px solid var(--primary-500);
    border-radius: 5px;
}

.post-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--neutral-800);
    margin-bottom: 15px;
}

.post-quote cite {
    font-size: 1rem;
    color: var(--neutral-600);
    display: block;
    text-align: right;
}

.post-image {
    margin: 30px 0;
}

.post-image img {
    width: 100%;
    border-radius: 10px;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--neutral-600);
    text-align: center;
    margin-top: 10px;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--neutral-300);
}

.tags-title {
    font-weight: 600;
    color: var(--neutral-700);
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--neutral-200);
    color: var(--neutral-700);
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Author Bio */
.post-author-bio {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: var(--neutral-100);
    border-radius: 10px;
    margin-bottom: 40px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--neutral-900);
}

.author-role {
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-description {
    color: var(--neutral-700);
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-200);
    color: var(--neutral-700);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-500);
    color: white;
}

/* Share Section */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--neutral-300);
}

.post-share span {
    font-weight: 600;
    color: var(--neutral-700);
}

.share-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-200);
    color: var(--neutral-700);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-link:hover {
    background-color: var(--primary-500);
    color: white;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 20px;
}

.post-prev, .post-next {
    flex: 1;
    padding: 20px;
    background-color: var(--neutral-100);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 48%;
}

.post-prev:hover, .post-next:hover {
    background-color: var(--neutral-200);
}

.nav-label {
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.post-prev .nav-label i {
    margin-right: 8px;
}

.post-next .nav-label i {
    margin-left: 8px;
}

.post-next {
    text-align: right;
}

.nav-title {
    color: var(--neutral-800);
    font-weight: 500;
    line-height: 1.4;
}

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background-color: var(--neutral-100);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--neutral-900);
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-500);
    margin: 20px auto 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .post-title {
        font-size: 2.2rem;
    }
    
    .post-featured-image {
        height: 350px;
    }
    
    .post-intro {
        font-size: 1.2rem;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
    }
    
    .post-quote blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .blog-post {
        padding: 100px 0 50px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .post-intro {
        font-size: 1.1rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
    }
    
    .post-quote {
        padding: 20px;
        margin: 30px 0;
    }
    
    .post-quote blockquote {
        font-size: 1.1rem;
    }
    
    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .post-prev, .post-next {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .post-featured-image {
        height: 250px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Dark Mode Styles - Removed */ 