.blog_single_hero_Sec{
    padding-top: 40px; padding-bottom: 40px;
}
.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    /* color: #374151; */
}
.section_blog_content {
    padding: 80px 0;
}
.blog-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 0;
    margin-bottom: 1.25rem;
    scroll-margin-top: 100px;
}

.blog-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 40px;
}

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

.blog-content li {
    margin-bottom: 0.75rem;
    line-height: 35px;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #F8F9FA;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4B5563;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-content a:hover {
    color: var(--orange_color);
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}
.blog-content .callout-box {
    background: linear-gradient(135deg, rgba(255, 65, 3, 0.05) 0%, rgba(255, 65, 3, 0.02) 100%);
    border: 1px solid rgba(255, 65, 3, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-content .callout-box h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content code {
    background: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9em;
     color: var(--black_color_2);
}

.blog-content pre {
    background: var(--black_color_2);
    color: #E5E7EB;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Table of Contents */
.toc-sidebar {
    position: sticky;
    top: 100px;
}

.toc-sidebar h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.toc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-sidebar li {
    margin-bottom: 0.5rem;
}

.toc-sidebar a {
    color: #4B5563;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: block;
    padding: 0.25rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
}

.toc-sidebar a:hover,
.toc-sidebar a.active {
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF4103, #FF6B35);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Author card */
.author-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 2rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Share buttons */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #1A1A1A;
    color: #fff;
    transform: translateY(-2px);
}

/* Related posts card */
.related-post-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.related-post-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.related-post-card img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / .5;
    object-position: 0 0;
}

/* Reading time badge */
.reading-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Category tag */
.category-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 65, 3, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    text-decoration: none;
}

.category-tag:hover {
    background: var(--primary);
    color: #fff;
}

/* Featured image */
.featured-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 0px;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.blog-content p strong {
    color: var(--black_color);
}
.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Newsletter signup */
.blog_section_newsletter {
    padding: 60px 0;
}
.newsletter-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
}

.newsletter-box input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-box input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.blog_newsletter_box .hsfc-Form .hsfc-Step__Content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
}
.blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-Row {
    flex: 0 0 auto;
    display: block;
    margin: 0;
    gap: 0;
    width: 320px;
}

.blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-Row .hsfc-EmailField {
    width: 100%;
}
.blog_newsletter_box .hsfc-FormWrapper .hsfc-TextInput {
    background: rgba(255, 255, 255, 0.1) !important;
}

.blog_newsletter_box .hsfc-Step__Content .hsfc-RichText {
    color: #fff;
}

.blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-Row .hsfc-FieldLabel {
    display: none !important;
}
.blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-NavigationRow__Alerts {
    display: none;
}

.blog_newsletter_box .hsfc-FormWrapper .hsfc-Button {
    padding: 23px 32px !important;
}
 /* Author footer section */
    .author-footer-section {
        background: var(--bg_gray_new);
        border-radius: 12px;
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .author-footer-section .author-photo {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .author-footer-section h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 0.25rem;
    }
    
    .author-footer-section .author-title {
        font-size: 0.875rem;
        color: #6B7280;
        margin-bottom: 0.75rem;
    }
    .author-footer-section .author-bio-text {
        font-size: 0.9375rem;
        line-height: 1.7;
        color: #4B5563;
    }
    
    .author-linkedin-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: #0A66C2;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .author-linkedin-btn:hover {
        background: #084C91;
        color: #fff;
    }
/* Author footer section */

.sidebar-contact-form {
    background: var(--bg_gray_new);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}
.sidebar-contact-form h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sidebar-contact-form .hsfc-FormWrapper .hsfc-TextInput, 
.sidebar-contact-form .hsfc-FormWrapper .hsfc-TextareaInput {
    background-color: #ffffff !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    font-size: 14px !important;
}
.sidebar-contact-form .hsfc-Step__Content .hsfc-Row {
    margin-bottom: 12px;
    gap: 0;
    display: block;
}
.featured_image_container {
    max-width:1040px;
    margin: 0 auto;
}

@media screen and (max-width:1199px) {
.toc-sidebar a {
    font-size: 16px;
    line-height:24px;
}
    .blog_single_banner .paratext {
        font-size: 16px;
        line-height: 24px !important;

    }
}
@media screen and (max-width:767px) {
    .author-footer-section {
        border-radius: 10px;
        padding: 20px;
    }

    .blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-Row {
        width: 100%;
    }

    .blog_newsletter_box .hsfc-Form .hsfc-Step__Content .hsfc-NavigationRow {
        width: 100%;
    }
    .blog-content p {
        line-height: 29px;
    }
    .section_blog_content {
    padding: 60px 0 80px;
}
}