
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;   /* This adds gap for all scroll targets */
}
.blog-details-banner {
    background: linear-gradient(180deg, #F5F5E8 0%, #f5e03a 100%);
}
.blog-details-banner .avatar {
    width: 38px;
    height: 38px;
    background: #f5e03a;
    border: 2px solid #111111;
    font-size: 13px;
    font-weight: 700;
    color: #111111;
}
.blog-details-banner .hero-info h1 {
    font-size: 50px;
}
.blog-details-banner .author-name {
    color: #111111;
}
.blog-details-banner .author-meta {
    color: #6b6b6b;
    font-size: 12px;
}
.meta-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.15);
}
.meta-item {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.blog-details-banner .hero-info {
    padding-bottom: 0px
}
.hero-area.custom-px.blog-details-banner {
    padding-bottom: 0px;
}
.blog-thum-photo {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
}

.blog-thum-photo img {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
}
.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
}
.blog-details-area {
    line-height: 1.3;
}

.article-body p {
    font-size: 17px;
    line-height: 1.5;
    color: #2a2a2a;
    margin-bottom: 24px;
    font-weight: 300;
}
.article-body p:first-child {
    font-size: 19px;
    font-weight: 400;
    color: #111111;
}
.article-body h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 48px 0 16px;
    line-height: 1.2;
}
.blog-details-area blockquote {
    border-left: 4px solid #f5e03a;
    background: #FAFAF5;
    margin: 40px 0;
    padding: 28px 32px;
    border-radius: 0 12px 12px 0;
}
.blog-details-area  blockquote p {
    font-size: 22px !important;
    font-style: italic;
    line-height: 1.4 !important;
    color: #111 !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}
.blog-details-area blockquote cite {
    font-size: 13px;
    color: #6b6b6b;
    font-style: normal;
    font-weight: 500;
}
.article-body ul, .article-body ol {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}
.article-body li {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    font-weight: 300;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #e4e4e0;
}
.article-body li::before {
    content: "\f061"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    position: absolute;
    left: 0;
    color: #111111;
}
.article-body strong {
    font-weight: 600;
}
.callout {
    background: #f5e03a;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.step-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.step-card {
    background: #f4f4f0;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e4e4e0;
}
.step-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.step-card p {
    font-size: 14px !important;
    color: #6b6b6b !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}
.article-body img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.article-body a {
    text-decoration: underline;
    font-weight: 500;
    color: #111111;
}
.article-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 36px 0 12px;
}
.article-body ol {
    counter-reset: list;
}
.article-body ol li::before {
    content: counter(list, decimal-leading-zero);
    counter-increment: list;
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    letter-spacing: 0.05em;
    top:13px;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0 0;
    padding-top: 32px;
    border-top: 1px solid #e4e4e0;
}
.article-tag {
    background: #f4f4f0;
    color:#111111;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid #e4e4e0;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.2s;
}
.share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
    padding: 20px 24px;
    background: #f4f4f0;
    border-radius: 12px;
    border: 1px solid #e4e4e0;
}
.share-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b6b6b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-right: 4px;
}
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e4e4e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    color: #111111;
    text-decoration: none;
}
.share-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-2px);
}
.copy-link-btn {
    margin-left: auto;
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.author-box {
    background: #f4f4f0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 48px 0;
    border: 1px solid #e4e4e0;
}
.author-avatar-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5e03a;
    border: 2px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    flex-shrink: 0;
}
.author-info-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.author-info-role {
    font-size: 13px;
    color: #6b6b6b;
    margin-bottom: 10px;
    line-height: 1.3;
}
.author-info-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}
.sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-section {
    margin-bottom: 40px;
}
.sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e0;
}
.progress-wrap {
    background: #e4e4e0;
    border-radius: 100px;
    height: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}
.progress-bar {
    height: 100%;
    background: #111111;
    border-radius: 100px;
    width: 35%;
    transition: width 0.3s;
}
.progress-label {
    font-size: 11px;
    color: #6b6b6b;
    font-weight: 500;
}
.toc-list {
    list-style: none;
}
.toc-list a.active::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f5e03a;
    border: 2px solid #111111;
    flex-shrink: 0;
    display: inline-block;
}
.toc-list a:hover, .toc-list a.active {
    color: #111111;
}
.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #6b6b6b;
    text-decoration: none;
    border-bottom: 1px solid #e4e4e0;
    transition: color 0.2s;
}


@media (max-width: 900px) {
    .content-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 40px 0px;
    }
    .article-body h2 {
        font-size: 24px;
        margin: 30px 0 16px;
    }
    .blog-details-area blockquote {
        margin: 30px 0;
        padding: 20px 14px;
    }
    .blog-details-area blockquote p {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    .article-body li {
        font-size: 16px;
        line-height: 1.5;
    }
    .callout {
        padding: 20px;
        margin: 30px 0;
        gap: 10px;
        margin-bottom: 0px
    }
    .callout p{
        font-size: 13px !important;
        margin-bottom: 0px;
    }
    .step-cards {
        grid-template-columns: 1fr;
    }
    .step-card {
        padding: 16px;
    }
    .step-num {
        font-size: 10px;
        line-height: 1.3;
    }
    .step-card p {
        font-size: 12px !important;
        line-height: 1.4 !important;
 
     }
    .article-body h3 {
        margin: 20px 0 12px;
    }
    .share-bar {
        padding: 16px;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
     }
    .copy-link-btn {
        margin: 0 auto;
    }
    .author-box {
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        text-align: center;
        gap: 10px;
    }
    .sidebar-section {
        margin-bottom: 20px;
    }
    .blog-details-banner .hero-info h1 {
        font-size: 30px;
    }
   .blog-details-banner .hero-info h1 br {
        display: none;
   }
   .meta-item {
    display: none;
   }
   .meta-divider {
    display: none;
   }
   .blog-thum-photo {
    margin-top: 20px;
   }



}