.blog-post-container {
    padding: 0;
}

.post-header {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
}

.post-date {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
}

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

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.post-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.post-body h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.post-body p {
    margin-bottom: 1.25rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body a {
    color: var(--accent-color);
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.cta-box, .cta-container {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-box h3, .cta-container h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-button, .download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover, .download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 3rem;
}

.post-tags {
    margin-bottom: 2rem;
}

.post-tags h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-list a, .tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.post-share h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.share-button.twitter {
    background: #1DA1F2;
    color: white;
}

.share-button.linkedin {
    background: #0077B5;
    color: white;
}

.share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .post-header {
        padding: 2rem 0 1.5rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-excerpt {
        font-size: 1.1rem;
    }

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

    .cta-box, .cta-container {
        padding: 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }
} 