/* Blog Post Page Styles */

/* Blog Post Container */
.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    margin-top: 80px;
}

/* Blog Post Header */
.blog-post-header {
    margin-bottom: 48px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 24px;
    text-align: left;
}

.breadcrumb a {
    color: var(--lumina-blue);
    text-decoration: none;
    font-size: var(--lumina-small);
    font-weight: 385;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--lumina-darkerblue);
}

.blog-post-header h1 {
    font-size: var(--lumina-xxlarge);
    color: var(--lumina-black);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 520;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    font-size: var(--lumina-small);
    color: var(--lumina-grey);
    flex-wrap: wrap;
}

.blog-post-date,
.blog-post-author,
.blog-post-read-time {
    font-weight: 385;
}

.blog-post-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--lumina-skyblue);
    color: var(--lumina-blue);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: var(--lumina-small);
    font-weight: 385;
}

/* Blog Post Content */
.blog-post-content {
    line-height: 1.6;
    margin-bottom: 48px;
}

.blog-post-content p {
    font-size: var(--lumina-standard);
    color: var(--lumina-black);
    margin-bottom: 24px;
    line-height: 1.6;
}

.blog-post-content h2 {
    font-size: var(--lumina-large);
    color: var(--lumina-black);
    margin: 48px 0 24px 0;
    font-weight: 520;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: var(--lumina-medium);
    color: var(--lumina-black);
    margin: 32px 0 16px 0;
    font-weight: 520;
    line-height: 1.4;
}

.blog-post-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-post-content li {
    font-size: var(--lumina-standard);
    color: var(--lumina-black);
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-post-content strong {
    font-weight: 520;
}

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

.blog-post-inline-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: var(--lumina-small);
    color: var(--lumina-grey);
    margin-top: 12px;
    font-style: italic;
}

/* Blog Post Videos */
.blog-post-video {
    margin: 48px 0;
    text-align: center;
}

.blog-post-video-player {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-caption {
    font-size: var(--lumina-small);
    color: var(--lumina-grey);
    margin-top: 12px;
    font-style: italic;
}

/* Blog Post Footer */
.blog-post-footer {
    border-top: 1px solid var(--lumina-lightgrey);
    padding-top: 32px;
    margin-top: 48px;
}

.blog-post-share {
    margin-bottom: 32px;
    text-align: center;
}

.blog-post-share h3 {
    font-size: var(--lumina-medium);
    color: var(--lumina-black);
    margin-bottom: 16px;
    font-weight: 520;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-button {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: var(--lumina-small);
    font-weight: 385;
    transition: background-color 0.3s ease;
}

.share-button.twitter {
    background: #1DA1F2;
    color: white;
}

.share-button.twitter:hover {
    background: #0d8bd9;
}

.share-button.linkedin {
    background: #0077B5;
    color: white;
}

.share-button.linkedin:hover {
    background: #005885;
}

.blog-post-navigation {
    text-align: center;
}

.back-to-blog {
    color: var(--lumina-blue);
    text-decoration: none;
    font-size: var(--lumina-standard);
    font-weight: 385;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--lumina-darkerblue);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .blog-post-container {
        padding: 16px;
        margin-top: 60px;
    }

    .blog-post-header {
        margin-bottom: 32px;
    }

    .blog-post-header h1 {
        font-size: clamp(24px, 6vw, 48px);
        margin-bottom: 16px;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .blog-post-content {
        margin-bottom: 32px;
    }

    .blog-post-content h2 {
        font-size: clamp(20px, 5vw, 36px);
        margin: 32px 0 16px 0;
    }

    .blog-post-content h3 {
        font-size: clamp(18px, 4.5vw, 24px);
        margin: 24px 0 12px 0;
    }

    .blog-post-content p {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 16px;
    }

    .blog-post-content li {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 8px;
    }

    .blog-post-image,
    .blog-post-video {
        margin: 32px 0;
    }

    .blog-post-inline-image,
    .blog-post-video-player {
        max-width: 100%;
    }

    .blog-post-footer {
        margin-top: 32px;
        padding-top: 24px;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .share-button {
        width: 120px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .blog-post-container {
        padding: 12px;
    }

    .blog-post-header h1 {
        font-size: clamp(20px, 7vw, 36px);
    }

    .blog-post-content h2 {
        font-size: clamp(18px, 6vw, 28px);
    }

    .blog-post-content h3 {
        font-size: clamp(16px, 5vw, 20px);
    }
}
