/* Blog post specific styles */
.blog-header {
    background: linear-gradient(45deg, #000428, #004e92);
    padding: 40px 20px 60px;
    color: white;
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    opacity: 0.8;
    font-size: 0.9rem;
}

.featured-image {
    width: 100%;
    max-width: 1000px;
    margin: -50px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #000428;
}

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

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

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

.related-posts {
    background: #fff;
    padding: 60px 20px;
    margin-top: 60px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #000428;
}

.related-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.related-content {
    padding: 20px;
}

.related-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text);
}

.related-excerpt {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .featured-image img {
        height: 300px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}
.migration-notice {
    text-align: center;
    padding: 100px 20px 40px;
    background: linear-gradient(45deg, #000428, #004e92);
    color: white;
}

.migration-notice h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.migration-notice p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}