/* Blog Post Template Styles */

/* Blog page header - smaller logo */
header .mv-logo {
    height: 40px !important;
    width: auto;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
    background: #ffffff;
}

/* Blog Post Header */
.blog-post-header {
    margin-bottom: 3rem;
}

.blog-post-category {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: #00b8a9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.blog-post-subtitle {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #666666;
    font-size: 1rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f9fafb;
}

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

.blog-post-date,
.blog-post-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Featured Image */
.blog-post-featured-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mid-Content Image */
.blog-post-mid-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Post Content */
.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

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

.blog-post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-content blockquote {
    border-left: 4px solid #00b8a9;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666666;
    font-size: 1.25rem;
}

.blog-post-content a {
    color: #00b8a9;
    text-decoration: none;
    border-bottom: 1px solid #00b8a9;
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #3b4cca;
    border-bottom-color: #3b4cca;
}

.blog-post-content code {
    background: #f9fafb;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.blog-post-content pre {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-post-content pre code {
    background: transparent;
    padding: 0;
    color: #ffffff;
}

/* Call to Action Section */
.blog-post-cta {
    background: linear-gradient(135deg, #00b8a9, #3b4cca);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.blog-post-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blog-post-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.blog-post-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #00b8a9;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-post-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Back to Blog Link */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00b8a9;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #3b4cca;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post-container {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-subtitle {
        font-size: 1rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .blog-post-featured-image {
        height: 250px;
    }
    
    .blog-post-mid-image {
        height: 200px;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-cta {
        padding: 2rem 1.5rem;
    }
    
    .blog-post-cta h3 {
        font-size: 1.5rem;
    }
}
