/* Individual Blog Post Styles */

/* Blog Post Hero */
.blog-post-hero {
    background: var(--primary-purple);
    padding: 140px 0 60px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--body-text);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--accent-lime);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.blog-post-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--headline-white);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
}

.blog-post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.blog-post-date {
    font-size: 16px;
    color: var(--body-text);
}

.blog-post-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
    background: var(--white);
}

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

.blog-post-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #020d69;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-post-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020d69;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-post-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.blog-post-body ul,
.blog-post-body ol {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    padding-left: 32px;
}

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

.blog-post-body strong {
    font-weight: 600;
    color: #020d69;
}

.blog-post-body a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.blog-post-body a:hover {
    color: var(--primary-dark);
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 16px;
}

.comparison-table th {
    background: var(--bg-purple-light);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid var(--primary-purple);
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

/* Blog Post Images */
.blog-post-image {
    margin: 48px 0;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Related Posts */
.related-posts {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e2e8f0;
}

.related-posts h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020d69;
    margin-bottom: 24px;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 16px;
}

.related-posts a {
    font-size: 18px;
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

.related-posts a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 810px) {
    .blog-post-hero {
        padding: 120px 0 40px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-body h2 {
        font-size: 28px;
        margin-top: 36px;
    }

    .blog-post-body h3 {
        font-size: 22px;
        margin-top: 28px;
    }

    .blog-post-body p,
    .blog-post-body ul,
    .blog-post-body ol {
        font-size: 16px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}
