@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --text: #313131;
    --accent1: #ff9a6a;
    --accent2: #ffd0b8;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Nunito, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: var(--text)
}

/* Hamburger Menu Css */
.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.0);
    z-index: 9999;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    transition: opacity 0.2s, background 0.2s;
}
.menu-overlay[style*="display:none"] {
    opacity: 0;
    pointer-events: none;
}
.menu-overlay[style*="display:flex"] {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 768px) {
    .menu-overlay[style*="display:flex"] {
        background: rgba(0,0,0,0.5);
    }
}
.menu-sidebar {
    background: #181e2a;
    width: 255px;
    height: 100vh;
    padding: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
}
.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 21px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.menu-nav {
    margin-top: 32px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.menu-link {
    font-family: Nunito;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.menu-link:hover {
    color: #ff9a6a;
}
.menu-social {
    margin-top: 48px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 280px;
}
.menu-social-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(1.2) grayscale(0.2);
    transition: filter 0.2s;
}
.menu-social-icon:hover img {
    filter: brightness(1.5) sepia(0.3) hue-rotate(-20deg);
}
.menu-social-icon i {
    font-size: 22px;
    color: #fff;
    transition: color 0.2s;
}
.menu-social-icon:hover i {
    color: #ff9a6a;
}
@media (max-width: 768px) {
    .menu-sidebar {
        width: 280px;
        max-width: 85vw;
    }
}

@media (max-width: 600px) {
    .menu-sidebar {
        width: 100vw;
        min-width: 0;
        padding: 24px 0 0 0;
    }
    .menu-nav {
        margin-left: 18px;
    }
    .menu-social {
        margin-left: 0;
        justify-content: center;
        gap: 18px;
    }
    .menu-hamburger {
        top: 16px;
        left: 20px;
    }
}
.menu-hamburger {
    position: fixed;
    top: 24px;
    left: 32px;
    background: none;
    border: none;
    z-index: 10001;
    cursor: pointer;
    display: inline-block;
}
.menu-hamburger svg {
    display: block;
}

/* Header Css */
body.menu-open {
    overflow: hidden;
}

body.menu-open .zlendo-header,
body.menu-open .main-content {
    transform: translateX(255px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    body.menu-open .zlendo-header,
    body.menu-open .main-content {
        transform: translateX(0);
    }
}

@media (max-width: 600px) {
    body.menu-open .zlendo-header,
    body.menu-open .main-content {
        transform: translateX(0);
    }
}

.zlendo-header {
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.main-content {
    width: 100%;
    transition: transform 0.3s ease;
    position: relative;
}

.header-top-bar {
    width: 100%;
    background: #4a4a4a;
}

.header-content {
    background: #ffffff;
    padding: 5px 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.header-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.header-hamburger svg {
    display: block;
}

.header-logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.header-logo {
    height: auto;
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-tagline {
    font-family: Nunito;
    font-size: 12px;
    color: #313131;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.header-title {
    font-family: Nunito;
    font-size: 20px;
    color: #313131;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-contact-btn {
    margin-left: auto;
    padding: 7px 16px;
    border: 2px solid #FE6126;
    border-radius: 25px;
    background: transparent;
    color: #FE6126;
    font-family: Nunito;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.header-contact-btn:hover {
    background: #FE6126;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 97, 38, 0.3);
}

@media (max-width: 768px) {
    .header-content {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .header-hamburger {
        position: relative;
        top: auto;
        left: auto;
    }
    
    .header-contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .header-logo-section {
        gap: 12px;
    }
    
    .header-logo {
        max-height: 32px;
    }
    
    .header-tagline {
        font-size: 11px;
    }
    
    .header-title {
        font-size: 18px;
    }
}

/* Homepage First Section Css */
.homepage-first-section {
    padding: 0px 25px;
    background: #ffffff;
    overflow-x: hidden;
}

.homepage-Second-section {
    overflow-x: hidden;
}

.homepage-blog-grid-section {
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.content-wrapper_second {
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 48px;
    align-items: start;
}
.content-wrapper_BlogGrid {
    max-width: 1100px;
    margin: 0px auto;
    display: grid;
    gap: 48px;
    align-items: start;
}

/* Left Column - Blog Posts */
.blog-posts-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-heading {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    color: #313131;
    margin: 0;
    line-height: 1.2;
    padding-left: 5%;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-image-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.blog-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-image-link:hover .blog-image-container {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.blog-main-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.blog-Second-image {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: fill;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 400;
    color: #313131;
}

.blog-author {
    font-weight: 600;
}

.blog-separator {
    color: #313131;
}

.blog-date {
    color: #313131;
}

.blog-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    color: #313131;
    line-height: 1.3;
    justify-content: space-between;
}

.blog-title-link {
    color: #313131;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title-link:hover {
    color: #ff9a6a;
}

.blog-title-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.blog-title:hover .blog-title-arrow {
    transform: translate(2px, -2px);
}

.blog-description {
    font-family: Nunito;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    line-height: 1.6;
    margin: 0;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.blog-tag {
    display: inline-block;
    padding: 6px 12px;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 500;
    color: #313131;
    background: #f3e8ff;
    border-radius: 16px;
    line-height: 1;
}

.blog-tag-design {
    background: #F4EBFF;
    color: #7F56D9;
    font-weight: 600;
}
.blog-tag-research {
    background: #EEF4FF;
    color: #3538CD;
    font-weight: 600;
}
.blog-tag-presentation {
    background: #FEE4F3;
    color: #C11574;
    font-weight: 600;
}

/* Category Tags - Dynamic Colors */
.blog-tag-category {
    font-weight: 600;
}

.blog-tag-category:nth-child(1) {
    background: #F4EBFF;
    color: #7F56D9;
}

.blog-tag-category:nth-child(2) {
    background: #EEF4FF;
    color: #3538CD;
}

.blog-tag-category:nth-child(3) {
    background: #FEE4F3;
    color: #C11574;
}

.blog-tag-category:nth-child(4) {
    background: #FFF4ED;
    color: #C4320A;
}

.blog-tag-category:nth-child(5) {
    background: #ECFDF3;
    color: #027A48;
}

.blog-tag-category:nth-child(6) {
    background: #FEF0C7;
    color: #854A0E;
}

/* Blog Grid Header Styles */
.blog-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 16px;
    gap: 24px;
}

.blog-grid-title {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    color: #313131;
    margin: 0;
    line-height: 1.2;
}

.blog-filters {
    display: flex;
    margin-bottom: 32px;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-filter {
    font-family: Nunito;
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    background: transparent;
    border: 1px solid #D0D5DD;
    border-radius: 20px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.blog-filter:hover {
    background: #F9FAFB;
    border-color: #98A2B3;
}

.blog-filter-active {
    color: #FE6126;
    background: #FFF1ED;
    border-color: #FE6126;
    font-weight: 600;
}

.blog-filter-active:hover {
    background: #FFE5DE;
}

.blog-search-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 24px;
    padding: 2px 2px 2px 16px;
    transition: border-color 0.2s ease;
}

.blog-search-container:focus-within {
    border-color: #FE6126;
}

.blog-search-input {
    font-family: Nunito;
    font-size: 15px;
    color: #313131;
    background: transparent;
    border: none;
    outline: none;
    padding: 6px 8px;
    min-width: 200px;
}

.blog-search-input::placeholder {
    color: #98A2B3;
}

.blog-search-button {
    background: #F9FAFB;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #667085;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.blog-search-button:hover {
    background: #F2F4F7;
    color: #FE6126;
}

.blog-search-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .blog-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .blog-search-container {
        width: 100%;
    }
    
    .blog-search-input {
        flex: 1;
        min-width: 0;
    }
}

/* Blog Pagination Styles */
.blog-pagination {
    border-top: 1px solid #EAECF0;
    padding-top: 24px;
    margin-top: 32px;
    margin-bottom: 20px;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    text-decoration: none;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    background: #FFFFFF;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-link:hover:not(.pagination-disabled) {
    background: #F9FAFB;
    border-color: #98A2B3;
}

.pagination-link.pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pagination-number:hover {
    background: #F9FAFB;
    color: #344054;
}

.pagination-numbers .current {
    background: #FE6126;
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

.pagination-numbers .dots {
    padding: 0 4px;
    color: #98A2B3;
}

/* Right Sidebar - Products */
.products-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-logo {
    display: flex;
    align-items: center;
}

.product-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.product-description {
    font-family: Nunito;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    line-height: 1.6;
    margin: 0;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Nunito;
    font-size: 14px;
    font-weight: 600;
    color: #FE6126;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.explore-link:hover {
    gap: 12px;
}

.explore-link svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
    
    .content-wrapper_second {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-wrapper_BlogGrid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .homepage-first-section {
        padding: 20px 16px;
    }
    
    .homepage-Second-section {
        padding: 20px 16px !important;
    }
    
    .homepage-blog-grid-section {
        padding: 0 16px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 16px auto;
    }
    
    .content-wrapper_second {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 16px auto;
    }
    
    .content-wrapper_BlogGrid {
        gap: 24px;
        margin: 16px auto;
    }
    
    .section-heading {
        font-size: 20px;
        padding-left: 0;
        padding-bottom: 12px;
    }
    
    .blog-grid-header {
        padding-top: 20px;
        padding-bottom: 12px;
    }
    
    .blog-grid-title {
        font-size: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-description {
        font-size: 14px;
    }
    
    .blog-post-card {
        gap: 16px;
    }
    
    .blog-image-container {
        border-radius: 12px;
    }
    
    .blog-main-image {
        height: 250px;
    }
    
    .blog-Second-image {
        height: 200px;
    }
    
    .blog-meta {
        font-size: 13px;
    }
    
    .blog-tags {
        gap: 6px;
    }
    
    .blog-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .products-sidebar {
        gap: 24px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-logo-img {
        max-height: 42px;
    }
    
    /* Blog Grid Responsive */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .blog-card-image {
        height: 200px !important;
    }
    
    .blog-card-title {
        font-size: 16px !important;
    }
    
    .blog-card-desc {
        font-size: 14px !important;
    }
    
    .blog-card-meta {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .homepage-first-section {
        padding: 16px 12px;
    }
    
    .homepage-Second-section {
        padding: 16px 12px !important;
    }
    
    .homepage-blog-grid-section {
        padding: 0 12px;
    }
    
    .content-wrapper,
    .content-wrapper_second,
    .content-wrapper_BlogGrid {
        margin: 12px auto;
    }
    
    .section-heading {
        font-size: 18px;
        padding-left: 0;
    }
    
    .blog-grid-title {
        font-size: 18px;
    }
    
    .blog-title {
        font-size: 16px;
        gap: 6px;
    }
    
    .blog-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .blog-main-image {
        height: 200px;
    }
    
    .blog-Second-image {
        height: 180px;
    }
    
    .blog-post-content {
        gap: 10px;
    }
    
    .blog-filters {
        gap: 8px;
    }
    
    .blog-filter {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .blog-search-input {
        min-width: 120px;
        font-size: 14px;
        padding: 5px 6px;
    }
    
    .blog-search-button {
        width: 32px;
        height: 32px;
    }
    
    .blog-search-button svg {
        width: 18px;
        height: 18px;
    }
    
    .blog-pagination {
        font-size: 14px;
        flex-wrap: wrap;
        padding-top: 16px;
    }
    
    .blog-page {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .blog-card-image {
        height: 180px !important;
    }
    
    .product-card {
        gap: 6px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .explore-link {
        font-size: 13px;
    }
}

/* Blog Details Page Styles */
.blog-details-main {
    background: #ffffff;
    padding: 24px 0;
}

.blog-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 55px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    font-family: Nunito;
}

.breadcrumb-link {
    color: #FE6126;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 700;
}

.breadcrumb-link:hover {
    color: #ff8257;
}

.breadcrumb-separator {
    color: #FE6126;
    font-weight: 700;
}

.breadcrumb-current {
    color: #FE6126;
    font-weight: 700;
}

/* Blog Details Layout */
.blog-details-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    align-items: start;
    position: relative;
}

/* Blog Content */
.blog-content {
    max-width: 100%;
    min-height: 100vh;
    position: relative;
}

.blog-header {
    margin-bottom: 20px;
}

.blog-details-title {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    color: #313131;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #313131;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-name {
    font-weight: 600;
    color: #313131;
}

.blog-separator {
    color: #313131;
    font-weight: 400;
}

.blog-publish-date {
    color: #313131;
    font-weight: 400;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

/* WordPress Block Editor Images */
.blog-content-body .wp-block-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-content-body .wp-block-image {
    margin: 24px 0;
}

.blog-content-body .wp-block-image figcaption {
    text-align: center;
    font-size: 14px;
    color: #667085;
    font-style: italic;
    margin-top: 8px;
}

/* Blog Content Body */
.blog-content-body {
    font-family: Nunito;
    font-size: 14px;
    line-height: 1.8;
    color: #313131;
}

/* WordPress Block Editor Font Size Presets */
.blog-content-body .has-medium-font-size {
    font-size: 17px !important;
}

.blog-content-body .has-large-font-size {
    font-size: 18px !important;
}

.blog-content-body .has-small-font-size {
    font-size: 12px !important;
}

.blog-content-body p {
    margin: 0 0 15px 0;
}

.blog-content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #313131;
    margin: 0px 0 12px 0;
    padding-top: 16px;
    scroll-margin-top: 100px;
}

.blog-content-body h2:first-child {
    margin-top: 0;
}

/* Blog Table */
.blog-table {
    margin: 24px 0;
    overflow-x: auto;
}

.blog-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.blog-table thead {
    background: #F9FAFB;
}

.blog-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #313131;
    border: 1px solid #EAECF0;
}

.blog-table td {
    padding: 12px 16px;
    color: #667085;
    border: 1px solid #EAECF0;
}

.blog-table tbody tr:hover {
    background: #F9FAFB;
}

/* Blog Quote */
.blog-quote {
    margin: 24px 0;
    padding: 20px 20px 20px 16px;
    border-left: 3px solid #FE6126;
    background: #FFF6F2;
    font-size: 16px;
    font-style: italic;
    color: #313131;
    line-height: 1.6;
}

/* Table of Contents */
.table-of-contents {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    height: fit-content;
}

.toc-sticky {
    background: #EBEBEB;
    border-radius: 8px;
    padding: 20px 16px;
    border: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.toc-title {
    font-family: Nunito;
    font-size: 16px;
    font-weight: 700;
    color: #575757;
    margin: 0 0 16px 0;
    border-bottom: none;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toc-link {
    font-family: Nunito;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    text-decoration: none;
    padding: 10px 12px;
    padding-left: 24px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    display: block;
    position: relative;
}

.toc-link::before {
       content: "•";
    position: absolute;
    left: 0px;
    top: 4px;
    color: #D9D9D9;
    font-size: 31px;
    line-height: 1;
}

.toc-link:hover {
    background: #D5D5D5;
    color: #222;
}

.toc-link.active {
    background: transparent;
    color: #222;
    border-left-color: #FE6126;
    font-weight: 600;
}

/* Related Posts Styles */
/* Related Posts Layout - 75% Related Posts, 25% TOC */
.related-posts-layout {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 32px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #EAECF0;
    align-items: start;
}

.related-posts-wrapper {
    width: 100%;
    overflow: hidden;
}

.related-posts-section {
    width: 100%;
}

.related-posts-title {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    color: #313131;
    margin: 0 0 32px 0;
}

.related-posts-toc-wrapper {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
}

.related-posts-toc-wrapper .table-of-contents {
    position: static;
    max-height: calc(100vh - 120px);
}

.related-posts-toc-wrapper .toc-sticky {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

.related-posts-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.related-posts-carousel {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #D0D5DD transparent;
}

.related-posts-carousel::-webkit-scrollbar {
    height: 6px;
}

.related-posts-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.related-posts-carousel::-webkit-scrollbar-thumb {
    background: #D0D5DD;
    border-radius: 3px;
}

.related-posts-carousel::-webkit-scrollbar-thumb:hover {
    background: #98A2B3;
}

.related-posts-slider {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: max-content;
    min-width: 100%;
}

.related-post-card {
    flex: 0 0 350px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.related-posts-arrow {
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #667085;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.related-posts-arrow:hover {
    background: #F9FAFB;
    border-color: #FE6126;
    color: #FE6126;
}

.related-posts-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.related-posts-arrow svg {
    width: 24px;
    height: 24px;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-post-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F9FAFB;
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Nunito;
    font-size: 13px;
    color: #667085;
}

.related-post-author {
    font-weight: 500;
}

.related-post-separator {
    color: #D0D5DD;
}

.related-post-date {
    color: #667085;
}

.related-post-title {
    margin: 0;
    font-family: Nunito;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-title-link {
    color: #313131;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-post-title-link:hover {
    color: #FE6126;
}

.related-post-excerpt {
    font-family: Nunito;
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.related-post-tag {
    font-family: Nunito;
    font-size: 12px;
    font-weight: 500;
    color: #FE6126;
    background: #FFF1ED;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #FE6126;
}

@media (max-width: 1024px) {
    .related-posts-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .related-posts-toc-wrapper {
        position: static;
        max-height: none;
    }
    
    .related-posts-toc-wrapper .table-of-contents {
        position: static;
        max-height: none;
    }
    
    .related-posts-toc-wrapper .toc-sticky {
        max-height: none;
    }
    
    .related-post-card {
        flex: 0 0 300px !important;
        min-width: 300px;
    }
    
    .related-posts-arrow {
        width: 40px;
        height: 40px;
    }
    
    .related-posts-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .related-posts-section {
        margin-top: 48px;
        padding-top: 32px;
    }
    
    .related-posts-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .related-posts-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
        padding-top: 32px;
    }
    
    .related-posts-toc-wrapper {
        position: static;
        max-height: none;
    }
    
    .related-post-card {
        flex: 0 0 280px !important;
        min-width: 280px;
    }
    
    .related-posts-slider {
        gap: 24px;
    }
    
    .related-posts-arrow {
        width: 36px;
        height: 36px;
    }
    
    .related-posts-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .related-post-image-container {
        height: 180px;
    }
    
    .related-post-content {
        padding: 16px;
    }
    
    .related-post-title {
        font-size: 16px;
    }
}

/* Blog Details Responsive */
@media (max-width: 1024px) {
    .blog-details-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .table-of-contents {
        order: -1;
        position: static !important;
        max-height: none !important;
        margin-bottom: 32px;
    }
    
    .toc-sticky {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .blog-details-container {
        padding: 0 20px;
    }
    
    .blog-details-main {
        padding: 20px 0;
    }
    
    .blog-details-layout {
        gap: 32px;
    }
    
    .blog-details-title {
        font-size: 24px;
    }
    
    .blog-author-info {
        font-size: 13px;
        gap: 8px;
    }
    
    .blog-author-avatar {
        width: 36px;
        height: 36px;
    }
    
    .blog-featured-image {
        margin-bottom: 20px;
    }
    
    .blog-content-body {
        font-size: 13px;
    }
    
    .blog-content-body p {
        margin: 0 0 16px 0;
    }
    
    .blog-content-body h2 {
        font-size: 20px;
        margin: 20px 0 10px 0;
        padding-top: 12px;
        scroll-margin-top: 80px;
    }
    
    .blog-quote {
        font-size: 15px;
        padding: 16px 16px 16px 12px;
        margin: 20px 0;
    }
    
    .blog-table {
        font-size: 14px;
        margin: 20px 0;
    }
    
    .toc-sticky {
        padding: 16px 12px;
    }
    
    .toc-title {
        font-size: 13px;
        padding-bottom: 10px;
        margin-bottom: 12px;
    }
    
    .toc-link {
        font-size: 12px;
        padding: 8px 20px;
    }

    .toc-link::before {
        left: 0px;
        top: 0px;
    }
}

@media (max-width: 480px) {
    .blog-details-container {
        padding: 0 16px;
    }
    
    .blog-details-main {
        padding: 16px 0;
    }
    
    .blog-details-title {
        font-size: 22px;
    }
    
    .blog-header {
        margin-bottom: 16px;
    }
    
    .blog-author-info {
        font-size: 12px;
        gap: 6px;
    }
    
    .blog-author-avatar {
        width: 32px;
        height: 32px;
    }
    
    .blog-content-body {
        font-size: 12px;
    }
    
    .blog-content-body p {
        margin: 0 0 14px 0;
    }
    
    .blog-content-body h2 {
        font-size: 16px;
        margin: 16px 0 10px 0;
    }
    
    .blog-quote {
        font-size: 14px;
        padding: 14px 14px 14px 12px;
    }
    
    /* Disable sticky TOC on mobile */
    .table-of-contents {
        position: static !important;
        max-height: none !important;
        margin-bottom: 32px;
    }
    
    .toc-sticky {
        position: static !important;
    }

    .toc-link {
        font-size: 12px;
        padding: 8px 20px;
    }

    .toc-link::before {
        left: 0px;
        top: 0px;
    }
}

/* Footer Css */
.zlendo-footer {
    background: #ffffff;
    border-top: 1px solid #EAECF0;
    padding: 27px 32px;
    text-align: center;
    font-family: Nunito;
}
.footer-copyright {
    font-size: 18px;
    color: #667085;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .zlendo-footer {
        padding: 32px 20px;
        margin-top: 48px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }
}


