/* Blog Post Styles */
.blog-post {
    padding: 120px 0 60px;
}

.post-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

.post-header h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--dark-color);
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.post-content h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--dark-color);
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: var(--dark-color);
}

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

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

/* Code Blocks */
.post-content pre {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    overflow-x: auto;
}

.post-content code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--light-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    padding: 8px 15px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.share-buttons {
    text-align: center;
}

.share-buttons h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.share-buttons .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--text-color);
    transition: var(--transition);
}

.share-buttons .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .blog-post {
        padding: 100px 0 40px;
    }

    .post-header h1 {
        font-size: 2.5rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.8rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .post-header h1 {
        font-size: 2rem;
    }

    .post-content .lead {
        font-size: 1.1rem;
    }

    .post-content pre {
        padding: 15px;
    }

    .post-content code {
        font-size: 0.8rem;
    }
} 