/* Neobrutalism Blog Post Styles - Based on Bruddle Template */

:root {
    --purple-1: #AE7AFF;
    --purple-2: #8B62CC;
    --purple-3: #EFE4FF;
    --yellow-1: #FAE8A4;
    --yellow-2: #FEFAED;
    --pink-1: #E99898;
    --pink-2: #FBEAEA;
    --green-1: #98E9AB;
    --green-2: #EAFBEE;
    --n-1: #000000;
    --n-2: #161616;
    --n-3: #5F646D;
    --n-4: #E7E8E9;
    --white: #FFFFFF;
    --background: #FAF4F0;
}

/* Layout Container */
.neo-blog-layout {
    background: var(--background);
    min-height: 100vh;
}

.neo-blog-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Header Styles */
.neo-header {
    background: var(--white);
    border-bottom: 1px solid var(--n-1);
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 300ms ease;
}

.neo-header-container {
    position: relative;
}

.neo-header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

.neo-header-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: margin-bottom 300ms ease;
}

.neo-header-top.neo-header-scrolled {
    margin-bottom: 0;
}

.neo-header-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--n-1);
    text-decoration: none;
    white-space: nowrap;
}

.neo-header-brand:hover {
    color: var(--purple-1);
}

.neo-header-search {
    flex: 1;
    /*max-width: 40rem;*/
}

.neo-search-form {
    display: flex;
    border: 1px solid var(--n-1);
    background: var(--white);
}

.neo-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 0.875rem;
    outline: none;
    background: transparent;
}

.neo-search-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-left: 1px solid var(--n-1);
    background: var(--yellow-1);
    cursor: pointer;
    transition: background 100ms linear;
}

.neo-search-btn:hover {
    background: var(--purple-1);
}

.neo-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--n-1);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--n-1);
    text-decoration: none;
    cursor: pointer;
    transition: all 100ms linear;
    white-space: nowrap;
}

.neo-header-btn:hover {
    background: var(--n-1);
    color: var(--white);
}

.neo-header-btn-icon {
    padding: 0.75rem;
    position: relative;
}

.neo-header-btn-primary {
    background: var(--purple-1);
}

.neo-header-btn-primary:hover {
    background: var(--purple-2);
    color: var(--n-1);
}

.neo-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.neo-badge-notification {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--pink-1);
    border: 1px solid var(--n-1);
    color: var(--n-1);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.75rem;
    min-width: 1rem;
    text-align: center;
}

.neo-header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--n-1);
    background: var(--white);
    text-decoration: none;
    transition: all 100ms linear;
}

.neo-header-user:hover {
    background: var(--purple-3);
    transform: translate(-1px, -1px);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-header-username {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--n-1);
}

.neo-header-avatar {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--n-1);
    background: var(--green-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.neo-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-avatar-initial {
    font-size: 1rem;
    font-weight: 900;
    color: var(--n-1);
}

.neo-header-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 60px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 300ms ease, opacity 300ms ease, margin 300ms ease;
}

.neo-header-scrolled .neo-header-nav {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.neo-nav-dropdown {
    position: relative;
}

.neo-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1rem;
    border: 1px solid var(--n-1);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--n-1);
    text-decoration: none;
    cursor: pointer;
    transition: all 100ms linear;
}

.neo-nav-link:hover {
    background: var(--yellow-1);
    transform: translate(-1px, -1px);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-nav-link-active {
    background: var(--purple-1);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-nav-link-active:hover {
    background: var(--purple-2);
}

.neo-nav-link-open {
    background: var(--yellow-1);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-chevron {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: transform 200ms linear;
}

.neo-nav-courses:hover .neo-chevron,
.neo-nav-link-open .neo-chevron {
    transform: rotate(180deg);
}

/* Mega Menu */
.neo-mega-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--n-1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: 70vh;
    overflow-y: auto;
}

.neo-mega-menu-open {
    display: block;
}

.neo-mega-menu-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

.neo-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.neo-mega-course {
    border: 1px solid var(--n-1);
    background: var(--white);
}

.neo-mega-course-active {
    border-color: var(--purple-2);
    box-shadow: 0 0 0 2px var(--purple-3);
}

.neo-mega-course-header {
    padding: 1rem;
    background: var(--n-4);
    border-bottom: 1px solid var(--n-1);
}

.neo-mega-course-active .neo-mega-course-header {
    background: var(--purple-1);
}

.neo-mega-course-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--n-1);
    text-decoration: none;
    display: block;
}

.neo-mega-course-title:hover {
    color: var(--purple-2);
}

.neo-mega-course-active .neo-mega-course-title {
    color: var(--white);
}

.neo-mega-course-active .neo-mega-course-title:hover {
    color: var(--yellow-1);
}

.neo-mega-course-posts {
    padding: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.neo-mega-post {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--n-1);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 100ms linear;
    margin-bottom: 0.25rem;
}

.neo-mega-post:hover {
    background: var(--yellow-2);
    border: 1px solid var(--yellow-1);
    transform: translate(-1px, -1px);
    box-shadow: 0.0625rem 0.0625rem 0 var(--n-1);
}

.neo-mega-post-active {
    background: var(--purple-3);
    border: 1px solid var(--purple-1);
    font-weight: 700;
}

.neo-mega-post-active:hover {
    background: var(--purple-1);
    color: var(--white);
}

.neo-mega-post:hover {
    background: var(--yellow-2);
    border: 1px solid var(--n-1);
    transform: translate(-1px, -1px);
    box-shadow: 0.0625rem 0.0625rem 0 var(--n-1);
}

/* Responsive Header */
@media (max-width: 1023px) {
    .neo-header-top {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .neo-header-search {
        min-width: 150px;
    }
    
    .neo-header-brand {
        flex-shrink: 0;
    }
    
    .neo-header-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .neo-header-wrapper {
        padding: 0.75rem;
    }
    
    .neo-header-top {
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .neo-header-brand {
        font-size: 1.25rem;
    }
    
    .neo-header-search {
        min-width: 120px;
        max-width: 200px;
    }
    
    .neo-search-input {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .neo-search-btn {
        padding: 0.5rem 0.75rem;
    }
    
    .neo-header-actions {
        gap: 0.25rem;
    }
    
    .neo-header-btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .neo-header-username {
        display: none;
    }
    
    .neo-nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .neo-header-top {
        gap: 0.25rem;
    }
    
    .neo-header-brand {
        font-size: 1rem;
    }
    
    .neo-header-search {
        min-width: 80px;
        max-width: 150px;
    }
    
    .neo-search-input {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .neo-search-btn {
        padding: 0.4rem 0.5rem;
    }
    
    .neo-header-btn-icon {
        padding: 0.4rem;
    }
    
    .neo-header-btn-icon svg {
        width: 1rem;
        height: 1rem;
    }
    
    .neo-header-btn-primary {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .neo-header-nav {
        gap: 0.25rem;
    }
    
    .neo-nav-link {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.5rem;
        font-size: 0.7rem;
    }
}

.neo-mega-post:hover {
    background: var(--yellow-2);
    border-color: var(--yellow-1);
}

/* Footer Styles */
.neo-footer {
    margin-top: 2.5rem;
    border-top: 1px solid var(--n-1);
    background: var(--white);
    box-shadow: 0 -0.25rem 0.25rem 0 var(--n-1);
}

.neo-footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Two Column Grid */
.neo-blog-grid {
    display: flex;
    gap: 1.25rem;
    max-width: 1600px;
    margin: 0 auto;
}

.neo-main-column {
    flex: 1;
    min-width: 0;
}

.neo-sidebar-column {
    flex-shrink: 0;
    width: 21rem;
}

/* Card Base */
.neo-card {
    background: var(--white);
    border: 1px solid var(--n-1);
}

.neo-card-shadow {
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
}

/* Main Content Card */
.neo-content-card {
    background: var(--white);
    border: 1px solid var(--n-1);
    margin-bottom: 1.5rem;
}

.neo-content-header {
    background: var(--purple-1);
    border-bottom: 1px solid var(--n-1);
    padding: 1rem 1.25rem;
}

/* Add more padding when header has badges/metadata */
.neo-content-header:has(.neo-meta-badges) {
    padding: 1.5rem 1.25rem;
}

.neo-content-title {
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--n-1);
}

/* Add margin when followed by badges */
.neo-content-title:has(+ .neo-meta-badges) {
    margin-bottom: 0.75rem;
}

.neo-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.neo-badge {
    display: inline-flex;
    justify-center: center;
    align-items: center;
    height: 1.5rem;
    padding: 0 0.75rem;
    border: 1px solid var(--n-1);
    border-radius: 0.0625rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--n-1);
    text-decoration: none;
    background: var(--yellow-1);
}

.neo-badge:hover {
    color: var(--n-1);
}

.neo-content-body {
    padding: 1.875rem 1.25rem 2rem;
}

/* Post Content Styling */
.netmentor-post-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--n-2);
}

.netmentor-post-content > *:first-child {
    margin-top: 2rem;
}

.netmentor-post-content h1,
.netmentor-post-content h2,
.netmentor-post-content h3,
.netmentor-post-content h4,
.netmentor-post-content h5,
.netmentor-post-content h6 {
    font-weight: 800;
    color: var(--n-1);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.netmentor-post-content h1 {
    font-size: 2rem;
    background: var(--yellow-1);
    border: 3px solid var(--n-1);
    padding: 0.75rem 1rem;
    box-shadow: 4px 4px 0 var(--n-1);
    margin-top: 2.5rem;
}

.netmentor-post-content h2 {
    font-size: 1.5rem;
    border-left: 6px solid var(--purple-1);
    padding-left: 1rem;
    margin-top: 2rem;
}

.netmentor-post-content h3 {
    font-size: 1.25rem;
    border-left: 4px solid var(--green-1);
    padding-left: 0.75rem;
}

.netmentor-post-content h4 {
    font-size: 1.125rem;
    color: var(--purple-2);
}

.netmentor-post-content h5 {
    font-size: 1rem;
}

.netmentor-post-content h6 {
    font-size: 0.875rem;
    text-transform: none;
}

.netmentor-post-content p {
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.netmentor-post-content strong,
.netmentor-post-content b {
    font-weight: 800;
    color: var(--n-1);
}

.netmentor-post-content em,
.netmentor-post-content i {
    font-style: italic;
}

.netmentor-post-content a {
    color: var(--purple-1);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: all 100ms linear;
}

.netmentor-post-content a:hover {
    color: var(--purple-2);
    text-decoration-thickness: 3px;
}

/* Lists */
.netmentor-post-content ul,
.netmentor-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.netmentor-post-content ul li,
.netmentor-post-content ol li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.netmentor-post-content ul {
    list-style-type: disc;
}

.netmentor-post-content ol {
    list-style-type: decimal;
}

.netmentor-post-content ul ul,
.netmentor-post-content ol ol,
.netmentor-post-content ul ol,
.netmentor-post-content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.netmentor-post-content ul ul {
    list-style-type: circle;
}

.netmentor-post-content ul ul ul {
    list-style-type: square;
}

/* Table of Contents (mce-toc) */
.netmentor-post-content .mce-toc {
    background: var(--white);
    border: 3px solid var(--n-1) !important;
    box-shadow: 4px 4px 0 var(--n-1);
    margin: 2rem 0 !important;
    padding: 0 !important;
}

.netmentor-post-content .mce-toc h2 {
    background: var(--purple-3);
    border-bottom: none;
    border-left: none !important;
    padding: 1rem 1.5rem !important;
    font-weight: 800 !important;
    font-size: 1.125rem !important;
    cursor: pointer;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.netmentor-post-content .mce-toc h2::after {
    content: "▼" !important;
    font-size: 1rem !important;
    color: var(--n-1) !important;
    flex-shrink: 0;
}

.netmentor-post-content .mce-toc.arrowup h2::after {
    content: "▲" !important;
}

.netmentor-post-content .mce-toc > ul {
    margin: 0 !important;
    padding: 1.5rem !important;
    list-style: none !important;
    display: none !important;
}

.netmentor-post-content .mce-toc ul.visible {
    display: block !important;
}

.netmentor-post-content .mce-toc li {
    margin-bottom: 0.75rem !important;
    font-weight: 600 !important;
    padding-left: 0 !important;
}

.netmentor-post-content .mce-toc a {
    text-decoration: none !important;
    color: var(--n-2) !important;
    transition: all 100ms ease;
    padding-left: 0.5rem;
    font-weight: 600 !important;
}

.netmentor-post-content .mce-toc a:hover {
    color: var(--purple-2) !important;
    padding-left: 1rem;
    font-weight: 800 !important;
}

.netmentor-post-content .mce-toc ul ul {
    padding-left: 1.5rem !important;
    margin-top: 0.5rem !important;
}

.netmentor-post-content .mce-toc ul ul li::before {
    content: "→";
    margin-right: 0.5rem;
    color: var(--purple-1);
}

/* Blockquotes */
.netmentor-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: var(--yellow-2);
    border: 3px solid var(--n-1);
    border-left: 8px solid var(--yellow-1);
    box-shadow: 5px 5px 0 var(--n-1);
    position: relative;
    font-style: italic;
    font-weight: 600;
}

.netmentor-post-content blockquote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow-1);
    line-height: 1;
    font-family: Georgia, serif;
}

.netmentor-post-content blockquote p:last-child {
    margin-bottom: 0;
}



/* Tables */
.netmentor-post-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 3px solid var(--n-1);
    box-shadow: 5px 5px 0 var(--n-1);
}

.netmentor-post-content thead {
    background: var(--purple-1);
}

.netmentor-post-content th {
    padding: 0.75rem 1rem;
    border: 2px solid var(--n-1);
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.netmentor-post-content td {
    padding: 0.75rem 1rem;
    border: 2px solid var(--n-1);
    background: var(--white);
    font-weight: 600;
}

.netmentor-post-content tbody tr:nth-child(even) td {
    background: var(--n-4);
}

/* Images */
.netmentor-post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

/* Horizontal Rule */
.netmentor-post-content hr {
    border: none;
    height: 3px;
    background: var(--n-1);
    margin: 2rem 0;
}

/* Keyboard Keys */
.netmentor-post-content kbd {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--white);
    border: 2px solid var(--n-1);
    border-bottom-width: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 2px 2px 0 var(--n-1);
}

/* Mark/Highlight */
.netmentor-post-content mark {
    background: var(--yellow-1);
    border: 2px solid var(--n-1);
    padding: 0.125rem 0.25rem;
    font-weight: 700;
    color: var(--n-1);
}

/* Sidebar Card */
.neo-sidebar-card {
    background: var(--white);
    border: 1px solid var(--n-1);
    margin-bottom: 1.25rem;
}

.neo-blog-layout .neo-sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}

@media (max-width: 1023px) {
    .neo-blog-layout .neo-sidebar-sticky {
        position: relative;
        top: auto;
    }
}

.neo-sidebar-header {
    background: var(--green-1);
    border-bottom: 1px solid var(--n-1);
    padding: 1.25rem;
}

.neo-sidebar-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--n-1);
}

.neo-sidebar-body {
    padding: 1.25rem;
}

/* Buttons */
.neo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.25rem;
    padding: 0 1.25rem;
    border: 1px solid var(--n-1);
    border-radius: 0.0625rem;
    font-size: 1rem;
    color: var(--n-1);
    fill: var(--n-1);
    font-weight: 700;
    transition: colors 200ms linear;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0.75rem;
    text-decoration: none;
    gap: 0.375rem;
}

.neo-btn-purple {
    background: var(--purple-1);
}

.neo-btn-purple:hover {
    background: rgba(174, 122, 255, 0.9);
}

.neo-btn-green {
    background: var(--green-1);
}

.neo-btn-stroke {
    background: transparent;
}

.neo-btn-stroke:hover {
    background: var(--n-1);
    color: var(--white);
}

.neo-btn-shadow {
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
}

.neo-btn-shadow:hover {
    transform: translate(1px, 1px);
    box-shadow: 0.1875rem 0.1875rem 0 var(--n-1);
}

.neo-btn-shadow:active {
    transform: translate(2px, 2px);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

/* Section Box */
.neo-section-box {
    background: var(--white);
    border: 1px solid var(--n-1);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.neo-section-box-green {
    background: var(--green-2);
}

.neo-section-box-yellow {
    background: var(--yellow-2);
}

.neo-section-box-pink {
    background: var(--pink-2);
}

.neo-section-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Divider */
.neo-divider {
    height: 1px;
    background: var(--n-1);
    margin: 1.25rem 0;
    border: none;
}

.neo-divider-dashed {
    border-top: 1px dashed var(--n-1);
    height: 0;
    margin: 1.25rem 0;
}

/* Post Item */
.neo-post-item {
    display: block;
    background: var(--white);
    border: 1px solid var(--n-1);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--n-1);
    transition: all 100ms linear;
}

.neo-post-item:hover {
    background: var(--purple-3);
    transform: translate(-1px, -1px);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-post-item-title {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    color: var(--n-1);
}

.neo-post-item-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--n-3);
    text-transform: uppercase;
}

/* Tag Label */
.neo-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    padding: 0 0.75rem;
    border: 1px solid var(--n-1);
    border-radius: 0.0625rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0.25rem;
    text-decoration: none;
    color: var(--n-1);
    background: var(--white);
    transition: all 100ms linear;
}

.neo-tag:hover {
    background: var(--yellow-1);
    color: var(--n-1);
}

/* Share Buttons */
.neo-share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.neo-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--n-1);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--n-1);
    background: var(--white);
    transition: all 100ms linear;
}

.neo-share-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 0.125rem 0.125rem 0 var(--n-1);
}

.neo-share-btn-facebook {
    background: #1877f2;
    color: var(--white);
}

.neo-share-btn-twitter {
    background: #1da1f2;
    color: var(--white);
}

.neo-share-btn-linkedin {
    background: #0077b5;
    color: var(--white);
}

.neo-share-btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

/* Next Post Link */
.neo-next-link {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 800;
    color: var(--n-1);
    text-decoration: none;
    display: block;
}

.neo-next-link:hover {
    color: var(--purple-1);
}

.neo-next-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--n-3);
    margin-bottom: 0.5rem;
}

/* Next Post Button */
.neo-next-post-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    background: var(--white);
    transition: all 150ms ease;
}

.neo-next-post-link:hover {
    background: var(--purple-3);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--n-1);
}

.neo-next-post-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--n-3);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.neo-next-post-title {
    display: block;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 800;
    color: var(--n-1);
}

/* Responsive Breakpoints */
@media (min-width: 1400px) {
    .neo-blog-wrapper {
        padding: 1.5rem 2rem;
    }
    
    .neo-blog-grid {
        gap: 2rem;
    }
}

@media (max-width: 1023px) {
    /* lg */    
    .neo-blog-grid {
        display: block;
    }
    
    .neo-main-column {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .neo-sidebar-column {
        width: 100%;
    }
    
    .neo-content-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .neo-share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* md */
    .neo-blog-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .neo-content-header {
        padding: 1.25rem;
    }
    
    .neo-content-body {
        padding: 1.25rem;
    }
    
    .neo-sidebar-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    /* sm */
    .neo-blog-wrapper {
        padding: 0.75rem 0.5rem;
    }
    
    .neo-content-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .neo-share-grid {
        grid-template-columns: 1fr;
    }
    
    .neo-sidebar-column {
        width: 100%;
    }
}

/* AMA Page Specific Styles */
.neo-header-ama {
    background: var(--purple-3);
    text-align: center;
}

.neo-ama-subtitle {
    font-size: 1rem;
    color: var(--n-2);
    margin: 0;
    font-weight: 600;
}

.neo-form-group {
    margin-bottom: 1.5rem;
}

.neo-form-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--n-1);
}

.neo-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--n-1);
    background: var(--white);
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 100ms linear;
}

.neo-textarea:focus {
    outline: none;
    border-color: var(--purple-1);
    box-shadow: 0.25rem 0.25rem 0 var(--purple-1);
}

.neo-textarea::placeholder {
    color: var(--n-3);
}

.neo-form-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--n-3);
    line-height: 1.5;
}

.neo-form-actions {
    margin-top: 1.5rem;
}

.neo-btn-large {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.neo-hidden {
    display: none !important;
}

.neo-success-text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--n-2);
    line-height: 1.6;
}

.neo-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.neo-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--n-1);
}

.neo-info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.neo-info-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--n-2);
    line-height: 1.4;
}

.neo-topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.neo-topic-item {
    padding: 0.75rem 1rem;
    background: var(--purple-3);
    border: 1px solid var(--n-1);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--n-1);
}

.neo-social-text {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--n-2);
    line-height: 1.5;
}

/* AMA Responsive */
@media (max-width: 767px) {
    .neo-btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .neo-info-item {
        padding: 0.625rem;
    }
    
    .neo-info-icon {
        font-size: 1rem;
    }
}

/* Training Page Specific Styles */
.neo-header-training {
    background: var(--purple-3);
}

.neo-header-mentoring {
    background: var(--green-2);
}

.neo-header-business {
    background: var(--yellow-2);
}

.neo-header-contact {
    background: var(--pink-2);
}

.neo-training-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.neo-training-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--n-2);
}

.neo-training-content a {
    color: var(--purple-1);
    text-decoration: underline;
    font-weight: 600;
}

.neo-training-content a:hover {
    color: var(--purple-2);
}

.neo-section-divider {
    height: 1px;
    background: var(--n-4);
    margin: 1.5rem 0;
}

.neo-section-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 1.5rem 0 1rem;
}

.neo-mentoring-process {
    background: var(--green-2);
    border: 1px solid var(--n-1);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.neo-process-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0 0 1rem;
}

.neo-process-list {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.neo-process-list li {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--n-2);
}

.neo-process-example {
    background: var(--white);
    border: 1px solid var(--n-1);
    padding: 1rem;
    margin-top: 1rem;
}

.neo-process-example p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--n-2);
}

/* Pricing Section */
.neo-pricing-section {
    margin: 2rem 0;
}

.neo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.neo-pricing-grid-mentoria {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.neo-pricing-card {
    background: var(--white);
    border: 1px solid var(--n-1);
    display: flex;
    flex-direction: column;
}

.neo-pricing-header {
    padding: 1rem;
    border-bottom: 1px solid var(--n-1);
    background: var(--purple-3);
}

.neo-pricing-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0;
}

.neo-pricing-body {
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1;
}

.neo-pricing-hours {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin-bottom: 0.5rem;
}

.neo-pricing-rate {
    font-size: 0.875rem;
    color: var(--n-3);
    font-weight: 600;
}

.neo-pricing-footer {
    padding: 1rem;
    border-top: 1px solid var(--n-1);
}

.neo-payment-note {
    background: var(--yellow-2);
    border: 1px solid var(--n-1);
    padding: 1rem;
    margin-top: 1rem;
}

.neo-payment-note p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--n-2);
}

/* Contact Form Neo */
.neo-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.neo-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.neo-alert {
    padding: 1rem 1.25rem;
    border: 1px solid var(--n-1);
    margin-bottom: 1.5rem;
}

.neo-alert-success {
    background: var(--green-2);
}

.neo-alert-error {
    background: var(--pink-2);
}

.neo-alert-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0 0 0.5rem;
}

.neo-alert-text {
    font-size: 0.875rem;
    color: var(--n-2);
    margin: 0;
}

/* Profile Sidebar for Training */
.neo-profile-image {
    margin-bottom: 1rem;
}

.neo-img-profile {
    width: 100%;
    border: 1px solid var(--n-1);
    display: block;
}

.neo-profile-badge {
    margin-bottom: 1rem;
}

.neo-img-badge {
    width: 100%;
    border: 1px solid var(--n-1);
    display: block;
}

.neo-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.neo-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--n-1);
    background: var(--white);
    color: var(--n-1);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 150ms ease;
}

.neo-social-btn:hover {
    background: var(--n-1);
    color: var(--white);
}

.neo-social-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: var(--white);
}

.neo-social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: var(--white);
}

.neo-social-btn ion-icon {
    font-size: 1.25rem;
}

/* Responsive Training */
@media (max-width: 767px) {
    .neo-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .neo-form-row {
        grid-template-columns: 1fr;
    }
    
    .neo-mentoring-process {
        padding: 1rem;
    }
}

/* Books Page Styles */
.neo-page-container {
    background: var(--background);
    min-height: 100vh;
}

.neo-content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.neo-main-content {
    width: 100%;
}

.neo-page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin-bottom: 0.5rem;
}

.neo-page-subtitle {
    font-size: 1.125rem;
    color: var(--n-3);
    margin-bottom: 2rem;
}

/* Books Grid */
.neo-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.neo-book-card {
    background: var(--white);
    border: 1px solid var(--n-1);
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
    transition: all 200ms ease;
}

.neo-book-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 0.375rem 0.375rem 0 var(--n-1);
}

.neo-book-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.neo-book-image-wrapper {
    border-bottom: 1px solid var(--n-1);
    overflow: hidden;
    background: var(--n-4);
}

.neo-book-image {
    width: 100%;
    height: auto;
    display: block;
}

.neo-book-content {
    padding: 1.25rem;
}

.neo-book-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--n-1);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.neo-book-author {
    font-size: 0.875rem;
    color: var(--n-3);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.neo-book-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--n-2);
}

.neo-book-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--n-1);
}

.neo-book-pages {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--n-3);
}

/* Single Book Page */
.neo-book-page {
    max-width: 1400px;
}

.neo-promo-banner {
    background: var(--purple-3);
    border: 1px solid var(--n-1);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.neo-promo-banner a {
    color: var(--purple-2);
    text-decoration: underline;
}

.neo-book-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

.neo-book-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.neo-book-image-container {
    background: var(--white);
    border: 1px solid var(--n-1);
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.neo-book-cover {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--n-1);
}

.neo-book-actions {
    margin-bottom: 1.5rem;
}

.neo-btn-primary {
    background: var(--purple-1);
}

.neo-btn-primary:hover {
    background: var(--purple-2);
}

.neo-btn-secondary {
    background: var(--yellow-1);
}

.neo-btn-secondary:hover {
    background: var(--yellow-2);
}

.neo-btn-full {
    width: 100%;
    text-align: center;
}

.neo-premium-notice {
    background: var(--yellow-2);
    border: 1px solid var(--n-1);
    padding: 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.neo-premium-notice a {
    color: var(--purple-2);
    text-decoration: underline;
}

.neo-book-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.neo-book-info-top {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1.5rem;
}

.neo-book-info-item {
    background: var(--white);
    border: 1px solid var(--n-1);
    padding: 0.75rem;
}

.neo-book-info-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--n-3);
    margin-bottom: 0.25rem;
}

.neo-book-info-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--n-1);
}

.neo-book-info-value a {
    color: var(--purple-2);
    text-decoration: none;
}

.neo-book-info-value a:hover {
    text-decoration: underline;
}

.neo-book-main {
    background: var(--white);
    border: 1px solid var(--n-1);
    box-shadow: 0.25rem 0.25rem 0 var(--n-1);
    padding: 2rem;
}

.neo-book-title-main {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--n-1);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.neo-book-section {
    margin-bottom: 2.5rem;
}

.neo-book-section:last-child {
    margin-bottom: 0;
}

.neo-book-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--n-1);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--n-1);
}

.neo-book-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--n-2);
}

.neo-book-description p {
    margin-bottom: 1rem;
}

.neo-book-description ul,
.neo-book-description ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.neo-book-description li {
    margin-bottom: 0.5rem;
}

/* Book Chapters */
.neo-book-chapters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.neo-chapter {
    background: var(--white);
    border: 1px solid var(--n-1);
}

.neo-chapter-summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 150ms ease;
    list-style: none;
}

.neo-chapter-summary::-webkit-details-marker {
    display: none;
}

.neo-chapter-summary::marker {
    display: none;
}

.neo-chapter-summary:hover {
    background: var(--purple-3);
}

.neo-chapter[open] .neo-chapter-summary {
    background: var(--purple-1);
    border-bottom: 1px solid var(--n-1);
}

.neo-chapter-number {
    background: var(--yellow-1);
    border: 1px solid var(--n-1);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    flex-shrink: 0;
}

.neo-chapter-title {
    flex: 1;
    font-size: 1rem;
}

.neo-chapter-subtitles {
    padding: 1rem 1rem 1rem 2.5rem;
    margin: 0;
    list-style: disc;
}

.neo-chapter-subtitles li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--n-2);
}

/* Responsive Books */
@media (max-width: 1023px) {
    .neo-book-layout {
        grid-template-columns: 1fr;
    }
    
    .neo-book-sidebar {
        position: static;
        order: -1;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 767px) {
    .neo-books-grid {
        grid-template-columns: 1fr;
    }
    
    .neo-book-main {
        padding: 1.25rem;
    }
    
    .neo-book-title-main {
        font-size: 1.75rem;
    }
    
    .neo-page-title {
        font-size: 2rem;
    }
    
    .neo-book-info-top {
        grid-template-columns: 1fr;
    }
}
