/* Blog Post Specific Styles */
.post-hero {
    background: linear-gradient(135deg, #4A6FA5 0%, #166088 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

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

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Post Content */
.post-content-section {
    padding: 60px 0;
    background: white;
}

.post-content-wrapper {
    background: white;
}

.post-image-large {
    height: 400px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin-bottom: 40px;
    overflow: hidden;
}

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

.post-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.post-body h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.post-body h3 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

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

.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

/* Blog Image Styling */
.blog-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 25px 0;
    box-shadow: var(--shadow-md);
}

.image-caption {
    text-align: center;
    color: var(--gray-color);
    font-style: italic;
    margin-top: -15px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.feature-box {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.feature-box h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.tip-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid #ff9800;
}

.tip-box h4 {
    font-family: var(--font-heading);
    color: #e65100;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-to-action {
    background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.call-to-action h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.call-to-action p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.post-navigation {
    display: flex;
    justify-content: flex-start;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
    padding: 10px 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.nav-link:hover {
    gap: 15px;
    background: var(--primary-color);
    color: white;
}

/* Blog CTA Section */
.blog-cta {
    background: linear-gradient(135deg, #4A6FA5 0%, #166088 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 0;
}

.blog-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .post-hero {
        padding: 60px 0;
    }
    
    .post-hero h1 {
        font-size: 2rem;
    }
    
    .post-meta-large {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .post-image-large {
        height: 250px;
    }
    
    .post-body {
        font-size: 1rem;
    }
    
    .post-body h2 {
        font-size: 1.6rem;
    }
    
    .post-body h3 {
        font-size: 1.3rem;
    }
    
    .call-to-action {
        padding: 30px 20px;
    }
    
    .blog-cta h2 {
        font-size: 2rem;
    }
}