/* ========================================
   BLOG POST STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--nxt-dark) 0%, var(--nxt-dark-2) 50%, #1a2744 100%);
    padding: 120px 0 var(--space-12);
    color: var(--nxt-white);
}

.blog-hero-inner {
    max-width: 860px;
}

/* Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--nxt-gray-400);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--nxt-gray-400);
    transition: color var(--transition-fast);
}

.blog-breadcrumb a:hover {
    color: var(--nxt-blue-400);
}

.blog-breadcrumb-sep {
    display: flex;
    align-items: center;
    opacity: 0.4;
}

.blog-breadcrumb-sep svg {
    width: 14px;
    height: 14px;
}

.blog-breadcrumb-current {
    color: var(--nxt-blue-300);
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Badge */
.blog-category-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: rgba(59, 130, 246, 0.15);
    color: var(--nxt-blue-400);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

/* Blog Title */
.blog-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.15;
    color: var(--nxt-white);
    margin-bottom: var(--space-6);
    max-width: 860px;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--nxt-gray-400);
}

.blog-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.blog-author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.blog-author-info {
    display: flex;
    flex-direction: column;
}

.blog-author-name {
    font-weight: 600;
    color: var(--nxt-white);
    font-size: var(--text-sm);
}

.blog-author-role {
    font-size: var(--text-xs);
    color: var(--nxt-gray-400);
}

/* ========================================
   BLOG LAYOUT
   ======================================== */
.blog-article {
    padding: var(--space-12) 0 var(--space-20);
    background: var(--nxt-light);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-10);
    align-items: start;
}

/* ========================================
   BLOG CONTENT
   ======================================== */
.blog-content {
    min-width: 0;
}

.blog-featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-lg);
    background: var(--nxt-white);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body Typography */
.blog-body {
    background: var(--nxt-white);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-10);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--nxt-light-3);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--nxt-dark-3);
}

.blog-body h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--nxt-dark);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--nxt-blue-100);
    line-height: 1.3;
}

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

.blog-body h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--nxt-dark-2);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.blog-body h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--nxt-dark-2);
    margin-top: var(--space-6);
    margin-bottom: var(--space-2);
}

.blog-body p {
    margin-bottom: var(--space-4);
    color: var(--nxt-gray-600);
    line-height: 1.8;
}

.blog-body a {
    color: var(--nxt-blue-600);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.blog-body a:hover {
    color: var(--nxt-blue-800);
}

.blog-body ul,
.blog-body ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

.blog-body ul {
    list-style: disc;
}

.blog-body ol {
    list-style: decimal;
}

.blog-body li {
    margin-bottom: var(--space-2);
    color: var(--nxt-gray-600);
    line-height: 1.7;
}

.blog-body li::marker {
    color: var(--nxt-blue-500);
}

.blog-body strong {
    color: var(--nxt-dark-2);
    font-weight: 600;
}

.blog-body blockquote {
    border-left: 4px solid var(--nxt-blue-500);
    background: var(--nxt-blue-50);
    padding: var(--space-4) var(--space-6);
    margin: var(--space-6) 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--nxt-dark-3);
}

.blog-body code {
    background: var(--nxt-light-2);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--nxt-blue-700);
}

.blog-body pre {
    background: var(--nxt-dark);
    color: var(--nxt-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: var(--space-6) 0;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.blog-body pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
}

.blog-body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--nxt-light-3);
}

.blog-body table th {
    background: var(--nxt-blue-600);
    color: var(--nxt-white);
    padding: var(--space-3) var(--space-4);
    text-align: left;
    font-weight: 600;
}

.blog-body table td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--nxt-light-3);
    color: var(--nxt-gray-600);
}

.blog-body table tr:nth-child(even) {
    background: var(--nxt-light);
}

.blog-body table tr:hover {
    background: var(--nxt-blue-50);
}

.blog-body hr {
    border: none;
    border-top: 1px solid var(--nxt-light-3);
    margin: var(--space-8) 0;
}

/* Info Box / Callout */
.blog-body .info-box {
    background: var(--nxt-blue-50);
    border: 1px solid var(--nxt-blue-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
    margin: var(--space-6) 0;
}

.blog-body .info-box p {
    color: var(--nxt-blue-800);
    margin-bottom: 0;
}

.blog-body .warning-box {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
    margin: var(--space-6) 0;
}

.blog-body .warning-box p {
    color: #9A3412;
    margin-bottom: 0;
}

.blog-body .success-box {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
    margin: var(--space-6) 0;
}

.blog-body .success-box p {
    color: #166534;
    margin-bottom: 0;
}

/* Step Box */
.blog-body .step-box {
    background: var(--nxt-white);
    border: 1px solid var(--nxt-light-3);
    border-left: 4px solid var(--nxt-blue-500);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: var(--space-5) var(--space-6);
    margin: var(--space-4) 0;
}

/* ========================================
   BLOG TAGS
   ======================================== */
.blog-tags {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--nxt-light-3);
}

.blog-tags-label {
    font-weight: 600;
    color: var(--nxt-dark-3);
    font-size: var(--text-sm);
}

.blog-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--nxt-light-2);
    color: var(--nxt-gray-600);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none !important;
}

.blog-tag:hover {
    background: var(--nxt-blue-100);
    color: var(--nxt-blue-700);
}

/* ========================================
   AUTHOR BOX
   ======================================== */
.blog-author-box {
    display: flex;
    gap: var(--space-5);
    background: var(--nxt-white);
    border: 1px solid var(--nxt-light-3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-top: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.blog-author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    border: 3px solid var(--nxt-blue-100);
}

.blog-author-box-label {
    font-size: var(--text-xs);
    color: var(--nxt-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.blog-author-box-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--nxt-dark);
    margin: var(--space-1) 0;
}

.blog-author-box-bio {
    font-size: var(--text-sm);
    color: var(--nxt-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   BLOG CTA
   ======================================== */
.blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    background: linear-gradient(135deg, var(--nxt-blue-600), var(--nxt-blue-800));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-top: var(--space-8);
    color: var(--nxt-white);
}

.blog-cta h3 {
    font-size: var(--text-xl);
    color: var(--nxt-white);
    margin-bottom: var(--space-1);
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: var(--text-sm);
}

.blog-cta .btn-primary {
    background: var(--nxt-white);
    color: var(--nxt-blue-700);
    box-shadow: none;
    flex-shrink: 0;
}

.blog-cta .btn-primary:hover {
    background: var(--nxt-light);
    transform: translateY(-2px);
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.blog-language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--nxt-light);
    border: 1px solid var(--nxt-light-3);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-5);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
}

.blog-language-toggle a {
    color: var(--nxt-blue-600);
    font-weight: 600;
    text-decoration: none;
}

.blog-language-toggle a:hover {
    text-decoration: underline;
}

/* ========================================
   BLOG SIDEBAR
   ======================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: sticky;
    top: 90px;
}

.blog-sidebar-card {
    background: var(--nxt-white);
    border: 1px solid var(--nxt-light-3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.blog-sidebar-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--nxt-dark);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--nxt-blue-100);
}

/* TOC */
.blog-toc-list {
    list-style: none;
    padding: 0;
}

.blog-toc-list li {
    margin-bottom: 0;
}

.blog-toc-list a {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    color: var(--nxt-gray-500);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    line-height: 1.4;
}

.blog-toc-list a:hover {
    color: var(--nxt-blue-600);
    background: var(--nxt-blue-50);
}

.blog-toc-list a.active {
    color: var(--nxt-blue-600);
    background: var(--nxt-blue-50);
    font-weight: 600;
    border-left: 3px solid var(--nxt-blue-500);
}

.blog-toc-sub a {
    padding-left: var(--space-6);
    font-size: var(--text-xs);
}

/* Sidebar Links */
.blog-sidebar-links {
    list-style: none;
    padding: 0;
}

.blog-sidebar-links li {
    margin-bottom: 0;
}

.blog-sidebar-links a {
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    color: var(--nxt-gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.blog-sidebar-links a::before {
    content: '→';
    margin-right: var(--space-2);
    color: var(--nxt-blue-400);
    font-weight: 600;
}

.blog-sidebar-links a:hover {
    color: var(--nxt-blue-600);
    background: var(--nxt-blue-50);
}

/* Trust Items */
.blog-trust-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.blog-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--nxt-gray-600);
}

.blog-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--nxt-blue-500);
    flex-shrink: 0;
}

/* Sidebar CTA */
.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--nxt-dark), var(--nxt-dark-2));
    border-color: transparent;
    color: var(--nxt-white);
}

.blog-sidebar-cta h4 {
    color: var(--nxt-white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.blog-sidebar-cta p {
    color: var(--nxt-gray-400);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

/* ========================================
   RELATED POSTS
   ======================================== */
.blog-related {
    padding: var(--space-16) 0;
    background: var(--nxt-white);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.blog-related-card {
    background: var(--nxt-white);
    border: 1px solid var(--nxt-light-3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
}

.blog-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--nxt-blue-200);
}

.blog-related-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-related-card:hover .blog-related-img img {
    transform: scale(1.05);
}

.blog-related-body {
    padding: var(--space-5);
}

.blog-related-cat {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--nxt-blue-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.blog-related-body h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--nxt-dark);
    line-height: 1.4;
    margin-bottom: var(--space-2);
}

.blog-related-date {
    font-size: var(--text-xs);
    color: var(--nxt-gray-400);
}

/* ========================================
   RESPONSIVE (bp-lg: 1024, bp-md: 768, bp-sm: 480)
   ======================================== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-toc-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .blog-body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .blog-body table {
        min-width: 400px;
    }
    .blog-hero {
        padding: 100px 0 var(--space-8);
    }
    .blog-title {
        font-size: var(--text-3xl);
    }
    .blog-meta {
        gap: var(--space-4);
    }
    .blog-body {
        padding: var(--space-6);
    }
    .blog-body h2 {
        font-size: var(--text-xl);
    }
    .blog-body h3 {
        font-size: var(--text-lg);
    }
    .blog-cta {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
    }
    .blog-cta .btn-lg {
        min-height: 44px;
    }
    .blog-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 80px 0 var(--space-6);
    }
    .blog-title {
        font-size: var(--text-2xl);
        line-height: 1.25;
    }
    .blog-body {
        padding: var(--space-4);
        font-size: var(--text-sm);
        line-height: 1.65;
    }
    .blog-body h2 {
        font-size: var(--text-lg);
        margin-top: var(--space-8);
    }
    .blog-cta {
        padding: var(--space-5);
    }
    .blog-cta .btn-lg {
        width: 100%;
    }
}

/* ========================================
   BLOG LISTING PAGE STYLES
   ======================================== */

/* Blog Listing Hero */
.blog-hero-section {
    background: linear-gradient(135deg, var(--nxt-dark) 0%, var(--nxt-dark-2) 50%, #1a2744 100%);
    padding: 120px 0 60px;
    color: var(--nxt-white);
    text-align: center;
}

.blog-hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--nxt-blue-400);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-5);
}

.blog-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: var(--text-lg);
    color: var(--nxt-gray-300);
    max-width: 650px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
}

.blog-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--nxt-white);
}

.blog-stat-label {
    font-size: var(--text-sm);
    color: var(--nxt-gray-400);
    margin-top: 2px;
}

/* Blog Listing Section */
.blog-listing-section {
    padding: var(--space-16) 0;
    background: var(--nxt-gray-50);
}

/* Featured Card */
.blog-featured-card {
    margin-bottom: var(--space-12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--nxt-white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-featured-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.blog-featured-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    color: inherit;
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.03);
}

.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--nxt-blue-50), var(--nxt-blue-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--nxt-blue-600);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-featured-content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.3;
    color: var(--nxt-dark);
    margin-bottom: var(--space-4);
}

.blog-featured-excerpt {
    font-size: var(--text-base);
    color: var(--nxt-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.blog-card-cta {
    color: var(--nxt-blue-600);
    font-weight: 700;
    font-size: var(--text-sm);
    transition: color 0.2s ease;
}

.blog-featured-card:hover .blog-card-cta {
    color: var(--nxt-blue-700);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* Blog Card */
.blog-card {
    background: var(--nxt-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--nxt-blue-50), var(--nxt-blue-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-lang-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fbbf24;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.blog-card-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    font-size: var(--text-xs);
    color: var(--nxt-gray-500);
    flex-wrap: wrap;
}

.blog-card-category {
    color: var(--nxt-blue-600);
    font-weight: 600;
}

.blog-card-dot {
    color: var(--nxt-gray-300);
}

.blog-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.4;
    color: var(--nxt-dark);
    margin-bottom: var(--space-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--nxt-blue-600);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--nxt-gray-500);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--nxt-gray-100);
}

.blog-card-read {
    font-size: var(--text-xs);
    color: var(--nxt-gray-400);
    font-weight: 500;
}

.blog-card-arrow {
    color: var(--nxt-blue-600);
    font-size: var(--text-lg);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-arrow {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    margin-top: var(--space-12);
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li a,
.blog-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--nxt-white);
    color: var(--nxt-gray-700);
    border: 1px solid var(--nxt-gray-200);
}

.blog-pagination li a:hover {
    background: var(--nxt-blue-600);
    color: var(--nxt-white);
    border-color: var(--nxt-blue-600);
}

.blog-pagination li span.current {
    background: var(--nxt-blue-600);
    color: var(--nxt-white);
    border-color: var(--nxt-blue-600);
}

/* Blog Empty */
.blog-empty {
    text-align: center;
    padding: var(--space-16) 0;
    color: var(--nxt-gray-500);
}

.blog-empty h2 {
    font-size: var(--text-2xl);
    color: var(--nxt-dark);
    margin-bottom: var(--space-3);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 0 0 var(--space-16);
    background: var(--nxt-gray-50);
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--nxt-blue-600) 0%, var(--nxt-blue-700) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    color: var(--nxt-white);
}

.blog-cta-content h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: var(--nxt-white);
}

.blog-cta-content p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    line-height: 1.6;
}

.blog-cta-actions {
    display: flex;
    gap: var(--space-4);
    flex-shrink: 0;
}

.blog-cta-actions .btn-primary {
    background: var(--nxt-white);
    color: var(--nxt-blue-600);
    font-weight: 700;
}

.blog-cta-actions .btn-primary:hover {
    background: var(--nxt-gray-100);
}

.blog-cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--nxt-white);
}

.blog-cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Blog Listing Responsive (bp-lg: 1024, bp-md: 768) */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-featured-link {
        grid-template-columns: 1fr;
    }
    .blog-featured-image {
        min-height: 250px;
    }
    .blog-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .blog-cta-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 100px 0 40px;
    }
    .blog-hero-title {
        font-size: 2rem;
    }
    .blog-hero-stats {
        gap: var(--space-6);
    }
    .blog-stat-number {
        font-size: var(--text-2xl);
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .blog-featured-content {
        padding: var(--space-6);
    }
    .blog-featured-title {
        font-size: var(--text-xl);
    }
    .blog-listing-section {
        padding: var(--space-10) 0;
    }
    .blog-cta-box {
        padding: var(--space-8) var(--space-6);
    }
    .blog-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .blog-cta-actions .btn-lg {
        width: 100%;
        min-height: 44px;
    }
}

/* ========================================
   SOCIAL SHARE BUTTONS
   ======================================== */

/* Top Share Bar (Hero) */
.blog-share-top {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-share-label {
    font-size: var(--text-sm);
    color: var(--nxt-gray-400);
    font-weight: 500;
    margin-right: var(--space-1);
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--nxt-gray-300);
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.blog-share-btn svg {
    width: 16px;
    height: 16px;
}

.blog-share-btn:hover {
    transform: translateY(-2px);
}

.blog-share-btn.blog-share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.blog-share-btn.blog-share-twitter:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.blog-share-btn.blog-share-linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

.blog-share-btn.blog-share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.blog-share-btn.blog-share-copy:hover {
    background: var(--nxt-blue-600);
    border-color: var(--nxt-blue-600);
    color: #fff;
}

/* Floating Share Bar (Desktop Left) */
.blog-share-float {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(-80px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.blog-share-float.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.blog-share-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.blog-share-float-btn svg {
    width: 18px;
    height: 18px;
}

.blog-share-float-btn.blog-share-facebook {
    background: #1877F2;
    color: #fff;
}

.blog-share-float-btn.blog-share-twitter {
    background: #000;
    color: #fff;
}

.blog-share-float-btn.blog-share-linkedin {
    background: #0A66C2;
    color: #fff;
}

.blog-share-float-btn.blog-share-whatsapp {
    background: #25D366;
    color: #fff;
}

.blog-share-float-btn.blog-share-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.blog-share-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Bottom Share Section */
.blog-share-section {
    margin-top: var(--space-10);
    padding: var(--space-8);
    background: var(--nxt-gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--nxt-gray-100);
    text-align: center;
    position: relative;
}

.blog-share-section-header h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--nxt-dark);
    margin-bottom: var(--space-1);
}

.blog-share-section-header p {
    font-size: var(--text-sm);
    color: var(--nxt-gray-500);
    margin-bottom: var(--space-6);
}

.blog-share-section-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.blog-share-big-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.blog-share-big-btn svg {
    width: 18px;
    height: 18px;
}

.blog-share-big-btn.blog-share-facebook {
    background: #1877F2;
    color: #fff;
}

.blog-share-big-btn.blog-share-facebook:hover {
    background: #1565d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.blog-share-big-btn.blog-share-twitter {
    background: #000;
    color: #fff;
}

.blog-share-big-btn.blog-share-twitter:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.blog-share-big-btn.blog-share-linkedin {
    background: #0A66C2;
    color: #fff;
}

.blog-share-big-btn.blog-share-linkedin:hover {
    background: #0958a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.4);
}

.blog-share-big-btn.blog-share-whatsapp {
    background: #25D366;
    color: #fff;
}

.blog-share-big-btn.blog-share-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.blog-share-big-btn.blog-share-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.blog-share-big-btn.blog-share-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

.blog-share-big-btn.blog-share-copy {
    background: var(--nxt-gray-200);
    color: var(--nxt-gray-700);
}

.blog-share-big-btn.blog-share-copy:hover {
    background: var(--nxt-blue-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* Copied Toast */
.blog-share-copied {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--nxt-dark);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.blog-share-copied.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Share Responsive */
@media (max-width: 1280px) {
    .blog-share-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-share-top {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
    .blog-share-btn {
        width: 34px;
        height: 34px;
    }
    .blog-share-btn svg {
        width: 14px;
        height: 14px;
    }
    .blog-share-section {
        padding: var(--space-6);
    }
    .blog-share-big-btn {
        padding: 8px 14px;
        font-size: var(--text-xs);
    }
    .blog-share-big-btn svg {
        width: 16px;
        height: 16px;
    }
}
