/* blog-single.css - Styles for single blog post */

.blog-single-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    color: #333;
    line-height: 1.6;
}

.blog-post-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.post-header {
    padding: 2rem 2rem 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #5a8dee;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-full h1 {
    font-size: 2.2rem;
    color: #222;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.post-image-featured {
    margin: 0 0 2rem;
}

.post-image-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.post-content {
    padding: 0 2rem 2rem;
}

.intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.blog-post-full h2 {
    color: #5a8dee;
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.blog-post-full h3 {
    color: #444;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.blog-post-full p {
    margin-bottom: 1.5rem;
}

.blog-post-full ul,
.blog-post-full ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-full li {
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #fff8f0;
    border-left: 4px solid #ff9800;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.warning-box h4 {
    margin-top: 0;
    color: #e65100;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.action-box {
    background: #f0f7ff;
    border: 1px solid #c2d9ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.action-box h3 {
    margin-top: 0;
    color: #5a8dee;
}

.cta-button {
    display: inline-block;
    background: #5a8dee;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #4a7ed6;
    transform: translateY(-2px);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.post-tags a {
    background: #f0f7ff;
    color: #5a8dee;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
}

.post-tags a:hover {
    background: #e0e8ff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
}

.post-navigation a {
    color: #5a8dee;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.post-navigation a:hover {
    background: #f0f7ff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-single-container {
        padding: 0 1rem;
    }
    
    .post-header,
    .post-content {
        padding: 1.5rem;
    }
    
    .blog-post-full h1 {
        font-size: 1.8rem;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-full h1 {
        font-size: 1.6rem;
    }
    
    .blog-post-full h2 {
        font-size: 1.4rem;
    }
}