.blog-post-container {
    width: 100%;
    padding: 100px 25px;
}

.blog-post-container-wrapper {
    background: #fff;
    max-width: 1000px;
    margin: auto;
}

/* Breadcrumb */
.blog-breadcrumb {
    font-size: clamp(10px, 2vw, 14px);
    color: black;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: blue;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.breadcrumb-separator svg {
    width: clamp(10px, 2vw, 14px);
    height: clamp(10px, 2vw, 14px);
    fill: black;
    vertical-align: middle;
}

/* Header */
.blog-post-header {
    margin-bottom: 50px;
}

.blog-post-header h1 {
    font-size: clamp(16px, 4vw, 36px);
    margin-bottom: 25px;
}

/* Blog Sub-header: Author + Date */
.blog-post-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, 2vw, 18px);
    color: black;
}

/* Top Image */
.blog-post-img {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #ddd;
    overflow: hidden;
}

.blog-post-img-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-text {
    margin-bottom: 50px;
}

.blog-post-text h2 {
    font-size: clamp(14px, 2vw, 26px);
    margin: 40px 0px 30px 0px;
}

.blog-post-text h3 {
    font-size: clamp(14px, 2vw, 22px);
    margin: 30px 0px 25px 0px;
}

.blog-post-text p {
    text-align: justify;
    line-height: 1.7;
    font-size: clamp(12px, 2vw, 18px);
    margin-bottom: 25px;
}

/* Inline images with captions - 16:9 */
.blog-image-with-caption {
    width: 100%;
    margin: 30px 0px;
}

.blog-image-with-caption img.inline-blog-image {
    background-color: #ddd;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    color: black;
    margin-top: 25px;
}

/* Author */
.blog-post-author {
    align-items: center;
    padding: 50px 0px;
    display: flex;
    gap: 25px;

}

.blog-post-author-img {
    background-color: #ccc;
    width: 120px;
    height: 120px;
}

.blog-post-author-img-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
}

.blog-post-about-author h4 {
    font-size: clamp(12px, 2vw, 18px);
    margin-bottom: 25px;
}

.blog-post-about-author a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

.blog-post-about-author p {
    line-height: 1.7;
    font-size: clamp(12px, 2vw, 18px);
}

.blog-post-about-author a:hover {
    text-decoration: underline;
}

/* Related Posts */
.related-posts-heading {
    font-weight: bold;
    font-size: clamp(14px, 2vw, 26px);
    margin: 25px 0px;
}

.blog-post-related-posts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-post-related-post-holder {
    display: flex;
    gap: 25px;
    padding: 0;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}


.blog-post-related-post-holder-img {
    width: 200px;
    aspect-ratio: 16/9;
    background: #ccc;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-post-related-post-holder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-related-post-text {
    flex: 1;
}

.blog-post-related-post-text h5 {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 6px;
}

.blog-post-related-post-text h6 {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 6px;
}

.blog-post-related-post-text p {
    line-height: 1.7;
    font-size: clamp(14px, 2vw, 18px);
}

/* Share Buttons */
.blog-post-share {
    margin-top: 50px;
    padding: 20px 0;
}

.blog-post-share h4 {
    font-size: clamp(14px, 2vw, 26px);
    margin-bottom: 15px;
}

.blog-post-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-post-share-buttons a {
    width: 50px;
    height: 50px;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.blog-post-share-buttons a:hover {
    transform: scale(1.01);
}

@media screen and (max-width:768px) {
    .related-posts-heading {
        text-align: center;
    }

    .blog-post-share {
        text-align: center;
    }

    .blog-post-share-buttons {
        justify-content: center;
    }

    .blog-post-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .blog-post-author-img-style {
        margin-bottom: 15px;
    }

    .blog-post-related-post-holder {
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .blog-post-related-post-holder-img {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .blog-post-related-post-text {
        padding: 10px 0;
    }
}