/* Blog Section Styles */

/* Background decoration with centered text */
.single-blog-section .blog-section-bg-decoration {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: unset;
    margin-top: 62.47px;
}


.single-blog-section .blog-section-bg-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1F1F1F;
}

.blog-us-label{
    background: #FFCC29;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.blog-section-bg-text h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 16px;
}

.blog-section-bg-text h1 span {
    font-weight: 700;
}

.blog-section-bg-text p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    color: #484848;
}

.blog-section .container{
    padding: 72px 160px 292px;
    max-width: -webkit-fill-available;
}

.categories-list{
    display: flex;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.categories-list .active{
    background-color: #FFCC29;
    color: #1F1F1F;
    border-color: #FFCC29;
    font-weight: 600;

}
.categories-list li{
    padding: 12px 16px;
    border: 1px solid #484848;
    border-radius: 30px;
    cursor: pointer;
    list-style-type: none;
    width: max-content;
}
.single-post-featured-image-full {
    /* width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem; */
    margin: 88px 0px 88px 0px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
}

.featured-image-full {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* height: 536px; */
}

/* Alternative: If you want container-width instead of viewport-width */
.single-post-featured-image-container {
    width: 100%;
    margin-bottom: 2rem;
}

.featured-image-container {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Center the single post content */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: left;
}

.single-post-article {
    width: 100%;
}

.single-post-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.single-post-body p {
    margin-bottom: 1.5rem;
}

.single-post-body h1,
.single-post-body h2,
.single-post-body h3,
.single-post-body h4,
.single-post-body h5,
.single-post-body h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

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

.single-post-body blockquote {
    margin: 2rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid #007cba;
    background: #f8f9fa;
    font-style: italic;
}

.share-article span{
    font-size: 16px;
    font-weight: 400;
    margin-right: 16px;
}

.share-article{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid #CBCBD0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-section .container {
        padding: 160px 64px 0px;
    }
    /* .featured-image-full{
        height: 600px;
    } */
   
}
@media (max-width: 768px) {
    
    .single-blog-section .container{
        padding: 0px 56px 0px;
    }
    .blog-section-bg-text h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .blog-section-bg-text p {
        font-size: 16px;
    }
    
    .single-post-featured-image-full {
        margin-bottom: 1.5rem;
    }
    
    .single-post-content {
        padding: 3.5rem 2rem;
    }
    
    .single-post-body {
        font-size: 1rem;
    }

    .single-post-featured-image-full {
        margin-bottom: 1.5rem;
    }
    /* .featured-image-full{
        height: 400px;
    } */
}
@media (max-width: 480px) {
    .single-blog-section .container {
        padding: 0px;
    }
    .single-post-content {
        padding: 1.5rem 1rem;
    }
    /* .featured-image-full{
        height: 300px;
    } */
}
