/* ============================================
   BLOG STYLES
   Modern dark theme matching Growvern design
   ============================================ */

/* ============================================
   BLOG HERO SECTION
   ============================================ */
.blog-hero {
    background: var(--gv-bg-primary);
    padding: var(--gv-space-24) var(--gv-space-6) var(--gv-space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(248, 209, 2, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero__container {
    max-width: var(--gv-container-lg);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--gv-space-2);
    background: rgba(248, 209, 2, 0.1);
    border: 1px solid rgba(248, 209, 2, 0.2);
    padding: var(--gv-space-2) var(--gv-space-4);
    border-radius: var(--gv-radius-full);
    font-size: var(--gv-text-sm);
    font-weight: var(--gv-font-medium);
    color: var(--gv-primary);
    margin-bottom: var(--gv-space-6);
}

.blog-hero__badge i {
    font-size: var(--gv-text-sm);
}

.blog-hero__title {
    font-family: var(--gv-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--gv-font-bold);
    color: var(--gv-text-primary);
    line-height: var(--gv-leading-tight);
    margin: 0 0 var(--gv-space-5);
    letter-spacing: var(--gv-tracking-tight);
}

.blog-hero__title .text-gradient {
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero__subtitle {
    font-size: var(--gv-text-lg);
    color: var(--gv-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--gv-leading-relaxed);
}

/* ============================================
   BLOG SECTION & GRID
   ============================================ */
.blog-section {
    background: var(--gv-bg-primary);
    padding: var(--gv-space-8) var(--gv-space-6) var(--gv-space-20);
}

.blog-section__container {
    max-width: var(--gv-container-xl);
    margin: 0 auto;
}

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

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--gv-bg-secondary);
    border-radius: var(--gv-radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gv-border-light);
    transition: all var(--gv-transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--gv-border-primary);
    box-shadow: var(--gv-shadow-primary);
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 48, 0.6) 100%);
    opacity: 0;
    transition: opacity var(--gv-transition-base);
}

.blog-card:hover .blog-card__overlay {
    opacity: 1;
}

.blog-card__content {
    padding: var(--gv-space-6);
}

.blog-card__category {
    display: inline-block;
    font-size: var(--gv-text-xs);
    font-weight: var(--gv-font-semibold);
    color: var(--gv-primary);
    text-transform: uppercase;
    letter-spacing: var(--gv-tracking-wider);
    margin-bottom: var(--gv-space-3);
}

.blog-card__title {
    font-family: var(--gv-font-heading);
    font-size: var(--gv-text-xl);
    font-weight: var(--gv-font-bold);
    color: var(--gv-text-primary);
    line-height: var(--gv-leading-tight);
    margin: 0 0 var(--gv-space-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: var(--gv-text-sm);
    color: var(--gv-text-muted);
    line-height: var(--gv-leading-relaxed);
    margin: 0 0 var(--gv-space-5);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gv-space-4);
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--gv-space-2);
    font-size: var(--gv-text-sm);
    font-weight: var(--gv-font-semibold);
    color: var(--gv-primary);
    transition: all var(--gv-transition-fast);
}

.blog-card__read-more i {
    font-size: 12px;
    transition: transform var(--gv-transition-fast);
}

.blog-card:hover .blog-card__read-more {
    color: var(--gv-primary-light);
}

.blog-card:hover .blog-card__read-more i {
    transform: translateX(4px);
}

.blog-card__date {
    display: flex;
    align-items: center;
    gap: var(--gv-space-2);
    font-size: var(--gv-text-xs);
    color: var(--gv-text-muted);
}

/* Featured Card */
.blog-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.blog-card--featured .blog-card__image {
    height: 100%;
    min-height: 300px;
}

.blog-card--featured .blog-card__content {
    padding: var(--gv-space-8);
}

.blog-card--featured .blog-card__title {
    font-size: var(--gv-text-3xl);
    -webkit-line-clamp: 3;
}

.blog-card--featured .blog-card__excerpt {
    font-size: var(--gv-text-base);
    -webkit-line-clamp: 4;
}

/* Empty State */
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--gv-space-20) var(--gv-space-6);
    background: var(--gv-bg-secondary);
    border-radius: var(--gv-radius-2xl);
    border: 1px dashed var(--gv-border-medium);
}

.blog-empty i {
    font-size: 48px;
    color: var(--gv-text-muted);
    margin-bottom: var(--gv-space-5);
}

.blog-empty h3 {
    font-family: var(--gv-font-heading);
    font-size: var(--gv-text-2xl);
    color: var(--gv-text-primary);
    margin: 0 0 var(--gv-space-3);
}

.blog-empty p {
    color: var(--gv-text-muted);
    margin: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.blog-newsletter {
    background: var(--gv-bg-primary);
    padding: 0 var(--gv-space-6);
}

.blog-newsletter__container {
    max-width: var(--gv-container-lg);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gv-secondary-light) 0%, var(--gv-secondary) 100%);
    border-radius: var(--gv-radius-2xl);
    padding: var(--gv-space-12) var(--gv-space-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gv-space-8);
    border: 1px solid var(--gv-border-primary);
}

.blog-newsletter__content {
    display: flex;
    align-items: center;
    gap: var(--gv-space-6);
}

.blog-newsletter__icon {
    width: 64px;
    height: 64px;
    background: rgba(248, 209, 2, 0.15);
    border-radius: var(--gv-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-newsletter__icon i {
    font-size: 28px;
    color: var(--gv-primary);
}

.blog-newsletter__title {
    font-family: var(--gv-font-heading);
    font-size: var(--gv-text-2xl);
    font-weight: var(--gv-font-bold);
    color: var(--gv-text-primary);
    margin: 0 0 var(--gv-space-2);
}

.blog-newsletter__text {
    font-size: var(--gv-text-base);
    color: var(--gv-text-muted);
    margin: 0;
}

.blog-newsletter__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--gv-space-3);
    background: var(--gv-primary);
    color: var(--gv-secondary);
    padding: var(--gv-space-4) var(--gv-space-8);
    border-radius: var(--gv-radius-full);
    font-family: var(--gv-font-heading);
    font-weight: var(--gv-font-bold);
    font-size: var(--gv-text-sm);
    text-transform: uppercase;
    letter-spacing: var(--gv-tracking-wide);
    text-decoration: none;
    transition: all var(--gv-transition-base);
    flex-shrink: 0;
}

.blog-newsletter__cta:hover {
    background: var(--gv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--gv-shadow-primary);
}

.blog-newsletter__cta i {
    transition: transform var(--gv-transition-fast);
}

.blog-newsletter__cta:hover i {
    transform: translateX(4px);
}

/* Newsletter Form Styles */
.blog-newsletter__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gv-space-3);
    flex-shrink: 0;
}

.blog-newsletter__form-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--gv-radius-full);
    overflow: hidden;
    border: 1px solid var(--gv-border-primary);
}

.blog-newsletter__input {
    background: transparent;
    border: none;
    padding: var(--gv-space-4) var(--gv-space-5);
    color: var(--gv-text-primary);
    font-size: var(--gv-text-base);
    outline: none;
    min-width: 240px;
}

.blog-newsletter__input::placeholder {
    color: var(--gv-text-muted);
}

.blog-newsletter__form .blog-newsletter__cta {
    border-radius: 0;
    margin: 0;
}

.blog-newsletter__message {
    font-size: var(--gv-text-sm);
    padding: var(--gv-space-1) 0;
    min-height: 24px;
}

.blog-newsletter__message.success {
    color: #10b981;
}

.blog-newsletter__message.error {
    color: #ef4444;
}

.blog-newsletter__message i {
    margin-right: var(--gv-space-1);
}

/* ============================================
   CTA SECTION
   ============================================ */
.blog-cta {
    background: var(--gv-bg-primary);
    padding: var(--gv-space-20) var(--gv-space-6);
    text-align: center;
}

.blog-cta__container {
    max-width: var(--gv-container-md);
    margin: 0 auto;
}

.blog-cta__title {
    font-family: var(--gv-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--gv-font-bold);
    color: var(--gv-text-primary);
    margin: 0 0 var(--gv-space-4);
}

.blog-cta__text {
    font-size: var(--gv-text-lg);
    color: var(--gv-text-muted);
    margin: 0 0 var(--gv-space-8);
    line-height: var(--gv-leading-relaxed);
}

.blog-cta__button {
    display: inline-flex;
    align-items: center;
    gap: var(--gv-space-3);
    background: transparent;
    color: var(--gv-primary);
    padding: var(--gv-space-4) var(--gv-space-8);
    border: 2px solid var(--gv-primary);
    border-radius: var(--gv-radius-full);
    font-family: var(--gv-font-heading);
    font-weight: var(--gv-font-bold);
    font-size: var(--gv-text-sm);
    text-transform: uppercase;
    letter-spacing: var(--gv-tracking-wide);
    text-decoration: none;
    transition: all var(--gv-transition-base);
}

.blog-cta__button:hover {
    background: var(--gv-primary);
    color: var(--gv-secondary);
    transform: translateY(-2px);
    box-shadow: var(--gv-shadow-primary);
}

.blog-cta__button i {
    transition: transform var(--gv-transition-fast);
}

.blog-cta__button:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gv-space-6);
    }

    .blog-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .blog-card--featured .blog-card__image {
        height: 280px;
    }

    .blog-newsletter__container {
        flex-direction: column;
        text-align: center;
        padding: var(--gv-space-10) var(--gv-space-8);
    }

    .blog-newsletter__content {
        flex-direction: column;
    }

    .blog-newsletter__form {
        align-items: center;
        width: 100%;
    }

    .blog-newsletter__form-group {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: var(--gv-space-20) var(--gv-space-5) var(--gv-space-12);
    }

    .blog-section {
        padding: var(--gv-space-6) var(--gv-space-5) var(--gv-space-16);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--gv-space-5);
    }

    .blog-card--featured {
        grid-column: span 1;
    }

    .blog-card--featured .blog-card__image {
        height: 220px;
    }

    .blog-card--featured .blog-card__content {
        padding: var(--gv-space-6);
    }

    .blog-card--featured .blog-card__title {
        font-size: var(--gv-text-xl);
    }

    .blog-card__image {
        height: 200px;
    }

    .blog-newsletter__container {
        padding: var(--gv-space-8) var(--gv-space-6);
    }

    .blog-newsletter__title {
        font-size: var(--gv-text-xl);
    }

    .blog-cta {
        padding: var(--gv-space-16) var(--gv-space-5);
    }
}

@media (max-width: 480px) {
    .blog-hero__badge {
        font-size: var(--gv-text-xs);
        padding: var(--gv-space-2) var(--gv-space-3);
    }

    .blog-card__content {
        padding: var(--gv-space-5);
    }

    .blog-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--gv-space-3);
    }

    .blog-newsletter__cta {
        width: 100%;
        justify-content: center;
    }

    .blog-newsletter__form-group {
        flex-direction: column;
        border-radius: var(--gv-radius-lg);
    }

    .blog-newsletter__input {
        min-width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gv-border-primary);
    }

    .blog-newsletter__form .blog-newsletter__cta {
        border-radius: 0 0 var(--gv-radius-lg) var(--gv-radius-lg);
    }

    .blog-cta__button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BLOG ARTICLE PAGE - MODERN DESIGN
   ============================================ */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gv-primary) 0%, var(--gv-accent-blue) 100%);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Main Article Container */
.blog-article {
    background: var(--gv-bg-primary);
    min-height: 100vh;
}

.blog-article__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.blog-article__hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.blog-article__hero-bg {
    position: absolute;
    inset: 0;
}

.blog-article__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 20, 48, 0.3) 0%,
        rgba(10, 20, 48, 0.5) 40%,
        rgba(10, 20, 48, 0.95) 100%
    );
}

.blog-article__hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 80px;
}

/* Breadcrumb */
.blog-article__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.blog-article__breadcrumb a {
    color: var(--gv-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-article__breadcrumb a:hover {
    color: var(--gv-primary);
}

.blog-article__breadcrumb svg {
    color: var(--gv-text-muted);
    opacity: 0.5;
}

.blog-article__breadcrumb span {
    color: var(--gv-text-muted);
}

/* Category Badge */
.blog-article__category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.15);
    border: 1px solid rgba(248, 209, 2, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gv-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.blog-article__category i {
    font-size: 12px;
}

/* Article Title */
.blog-article__title {
    font-family: var(--gv-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gv-text-primary);
    line-height: 1.15;
    margin: 0 0 32px;
    max-width: 900px;
    letter-spacing: -0.02em;
}

/* Meta Info */
.blog-article__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-article__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gv-text-muted);
    font-size: 14px;
}

.blog-article__meta-item i {
    color: var(--gv-primary);
    font-size: 14px;
}

.blog-article__meta-divider {
    width: 4px;
    height: 4px;
    background: var(--gv-text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.blog-article__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--gv-secondary);
    overflow: hidden;
}

.blog-article__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-article__author-name {
    font-weight: 600;
    color: var(--gv-text-primary);
}

.blog-article__author-role {
    font-size: 12px;
    color: var(--gv-text-muted);
}

/* Main Content Area */
.blog-article__main {
    padding: 60px 0 80px;
    background: #ffffff;
}

.blog-article__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sidebar */
.blog-article__sidebar {
    position: relative;
}

.blog-article__sidebar > div {
    position: sticky;
    top: 100px;
}

/* Table of Contents */
.blog-article__toc {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.blog-article__toc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0a1430;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
}

.blog-article__toc-title i {
    color: #f8d102;
}

.blog-article__toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-article__toc-link {
    font-size: 14px;
    color: rgba(10, 20, 48, 0.7);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    display: block;
}

.blog-article__toc-link:hover {
    color: #0a1430;
    background: rgba(10, 20, 48, 0.05);
}

.blog-article__toc-link.active {
    color: #0a1430;
    background: rgba(248, 209, 2, 0.15);
    border-left-color: #f8d102;
    font-weight: 600;
}

.blog-article__toc-link.toc-h3 {
    padding-left: 24px;
    font-size: 13px;
}

/* Sticky Share */
.blog-article__share-sticky {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.blog-article__share-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(10, 20, 48, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-article__share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-article__share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0a1430;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid rgba(10, 20, 48, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-article__share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-article__share-btn--twitter:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.blog-article__share-btn--facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.blog-article__share-btn--linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
}

.blog-article__share-btn--copy:hover {
    background: #f8d102;
    color: #0a1430;
    border-color: #f8d102;
}

/* ============================================
   LIGHT BACKGROUND OVERRIDES
   Force dark text on white .blog-article__main
   ============================================ */

/* Article Content */
.blog-article__content {
    min-width: 0;
}

.blog-article__body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a2e;
}

.blog-article__body p {
    color: #1a1a2e;
}

.blog-article__body strong {
    color: #0a1430;
}

.blog-article__body li {
    color: #1a1a2e;
}

.blog-article__body p {
    margin: 0 0 24px;
}

.blog-article__body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0a1430;
    margin: 56px 0 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    scroll-margin-top: 100px;
}

.blog-article__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a1430;
    margin: 40px 0 20px;
    line-height: 1.35;
    scroll-margin-top: 100px;
}

.blog-article__body h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a1430;
    margin: 32px 0 16px;
}

.blog-article__body a {
    color: #0077ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.blog-article__body a:hover {
    color: #0a1430;
    text-decoration-thickness: 2px;
}

.blog-article__body ul,
.blog-article__body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.blog-article__body li {
    margin: 10px 0;
    padding-left: 8px;
}

.blog-article__body img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-article__body blockquote {
    margin: 40px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(248, 209, 2, 0.08) 0%, rgba(248, 209, 2, 0.03) 100%);
    border-left: 4px solid #f8d102;
    border-radius: 0 16px 16px 0;
    font-size: 20px;
    font-style: italic;
    color: rgba(10, 20, 48, 0.9);
    line-height: 1.7;
}

.blog-article__body blockquote p {
    margin: 0;
}

.blog-article__body pre {
    background: #0a1430;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 28px 0;
    font-size: 14px;
    line-height: 1.6;
}

.blog-article__body code {
    background: rgba(0, 119, 255, 0.1);
    color: #0077ff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Monaco', 'Consolas', monospace;
}

.blog-article__body pre code {
    background: transparent;
    padding: 0;
    color: #e6e6e6;
}

.blog-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 16px;
}

.blog-article__body th,
.blog-article__body td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(10, 20, 48, 0.1);
}

.blog-article__body th {
    background: #f8f9fa;
    font-weight: 600;
    color: #0a1430;
}

.blog-article__body hr {
    border: none;
    height: 1px;
    background: rgba(10, 20, 48, 0.1);
    margin: 48px 0;
}

/* Tags */
.blog-article__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 20, 48, 0.1);
}

.blog-article__tags > i {
    color: rgba(10, 20, 48, 0.4);
}

.blog-article__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(10, 20, 48, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-article__tag:hover {
    background: #f8d102;
    color: #0a1430;
}

/* Footer Section */
.blog-article__footer {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(10, 20, 48, 0.1);
}

/* Author Card */
.blog-article__author-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(10, 20, 48, 0.08);
    border-radius: 20px;
    margin-bottom: 40px;
}

.blog-article__author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8d102;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-article__author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article__author-card-avatar span {
    font-size: 32px;
    font-weight: 700;
    color: #0a1430;
}

.blog-article__author-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1430;
    margin: 0 0 8px;
}

.blog-article__author-card-content p {
    font-size: 15px;
    color: rgba(10, 20, 48, 0.7);
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-article__author-card-social {
    display: flex;
    gap: 12px;
}

.blog-article__author-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 20, 48, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1430;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-article__author-card-social a:hover {
    background: #f8d102;
    color: #0a1430;
    transform: translateY(-2px);
}

/* Share Section */
.blog-article__share-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1430;
    margin: 0 0 16px;
}

.blog-article__share-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-article__share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-article__share-button i {
    font-size: 14px;
}

.blog-article__share-button--twitter {
    background: #000000;
    color: #ffffff;
}

.blog-article__share-button--twitter:hover {
    background: #333333;
    transform: translateY(-2px);
}

.blog-article__share-button--facebook {
    background: #1877f2;
    color: #ffffff;
}

.blog-article__share-button--facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
}

.blog-article__share-button--linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.blog-article__share-button--linkedin:hover {
    background: #084d94;
    transform: translateY(-2px);
}

.blog-article__share-button--email {
    background: rgba(10, 20, 48, 0.1);
    color: #0a1430;
}

.blog-article__share-button--email:hover {
    background: #0a1430;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Related Articles Section */
.blog-article__related {
    background: var(--gv-bg-primary);
    padding: 80px 0;
}

.blog-article__related-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-article__related-header h2 {
    font-family: var(--gv-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gv-text-primary);
    margin: 0 0 12px;
}

.blog-article__related-header p {
    font-size: 18px;
    color: var(--gv-text-muted);
    margin: 0;
}

.blog-article__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-article__related-card {
    background: var(--gv-bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--gv-border-light);
    transition: all 0.3s ease;
}

.blog-article__related-card:hover {
    transform: translateY(-8px);
    border-color: var(--gv-border-primary);
    box-shadow: var(--gv-shadow-primary);
}

.blog-article__related-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-article__related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 48, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-article__related-card:hover .blog-article__related-card-overlay {
    opacity: 1;
}

.blog-article__related-card-content {
    padding: 24px;
}

.blog-article__related-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gv-text-muted);
    margin-bottom: 12px;
}

.blog-article__related-card-date i {
    color: var(--gv-primary);
    font-size: 12px;
}

.blog-article__related-card-content h3 {
    font-family: var(--gv-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gv-text-primary);
    line-height: 1.35;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article__related-card-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gv-primary);
}

.blog-article__related-card-read i {
    transition: transform 0.2s ease;
}

.blog-article__related-card:hover .blog-article__related-card-read i {
    transform: translateX(4px);
}

/* CTA Section */
.blog-article__cta {
    background: linear-gradient(135deg, var(--gv-secondary) 0%, var(--gv-secondary-light) 100%);
    padding: 80px 0;
}

.blog-article__cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.blog-article__cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 209, 2, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.blog-article__cta-icon i {
    font-size: 32px;
    color: var(--gv-primary);
}

.blog-article__cta-content h2 {
    font-family: var(--gv-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gv-text-primary);
    margin: 0 0 16px;
}

.blog-article__cta-content p {
    font-size: 18px;
    color: var(--gv-text-muted);
    line-height: 1.6;
    margin: 0 0 32px;
}

.blog-article__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gv-primary);
    color: var(--gv-secondary);
    font-family: var(--gv-font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-article__cta-button:hover {
    background: var(--gv-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--gv-shadow-primary-lg);
}

.blog-article__cta-button i {
    transition: transform 0.2s ease;
}

.blog-article__cta-button:hover i {
    transform: translateX(4px);
}

/* Toast Notification */
.blog-article__toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gv-secondary);
    color: var(--gv-text-primary);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.blog-article__toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.blog-article__toast i {
    color: var(--gv-accent-green);
}

/* ============================================
   BLOG ARTICLE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .blog-article__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-article__sidebar {
        order: 2;
        display: none;
    }

    .blog-article__related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-article__hero {
        min-height: 60vh;
    }

    .blog-article__hero-content {
        padding: 40px 0 60px;
    }

    .blog-article__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .blog-article__meta {
        gap: 12px;
    }

    .blog-article__meta-divider {
        display: none;
    }

    .blog-article__meta-item {
        font-size: 13px;
    }

    .blog-article__main {
        padding: 40px 0 60px;
    }

    .blog-article__body {
        font-size: 16px;
    }

    .blog-article__body h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }

    .blog-article__body h3 {
        font-size: 22px;
        margin: 32px 0 16px;
    }

    .blog-article__body blockquote {
        padding: 20px 24px;
        font-size: 18px;
    }

    .blog-article__author-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .blog-article__author-card-avatar {
        margin: 0 auto;
    }

    .blog-article__author-card-social {
        justify-content: center;
    }

    .blog-article__share-row {
        justify-content: center;
    }

    .blog-article__related {
        padding: 60px 0;
    }

    .blog-article__related-header h2 {
        font-size: 28px;
    }

    .blog-article__related-grid {
        grid-template-columns: 1fr;
    }

    .blog-article__cta {
        padding: 60px 0;
    }

    .blog-article__cta-content h2 {
        font-size: 28px;
    }

    .blog-article__cta-content p {
        font-size: 16px;
    }

    .blog-article__cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-article__container {
        padding: 0 16px;
    }

    .blog-article__breadcrumb {
        font-size: 12px;
    }

    .blog-article__category {
        font-size: 11px;
        padding: 6px 12px;
    }

    .blog-article__title {
        font-size: 24px;
    }

    .blog-article__meta-item {
        font-size: 12px;
    }

    .blog-article__author-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .blog-article__author-info {
        display: none;
    }

    .blog-article__share-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .blog-article__related-card-content {
        padding: 20px;
    }

    .blog-article__related-card-content h3 {
        font-size: 18px;
    }
}

/* ============================================
   CRITICAL: DARK TEXT OVERRIDES FOR WHITE BG
   These rules ensure visibility on white areas
   ============================================ */

/* TOC Section - Force dark text */
.blog-article__toc {
    background: #f8f9fa !important;
}

.blog-article__toc-title {
    color: #0a1430 !important;
}

.blog-article__toc-title i {
    color: #f8d102 !important;
}

/* TOC Links - Muted by default, active stands out */
.blog-article__toc-link,
.blog-article__toc-nav a,
nav#tableOfContents a {
    color: #9ca3af !important;
    text-decoration: none !important;
    display: block !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: transparent !important;
    transition: all 0.25s ease !important;
    border-left: 3px solid transparent !important;
    margin-bottom: 4px !important;
    font-weight: 400 !important;
}

.blog-article__toc-link:hover,
.blog-article__toc-nav a:hover,
nav#tableOfContents a:hover {
    color: #6b7280 !important;
    background: rgba(10, 20, 48, 0.03) !important;
}

/* Active TOC link - Prominent styling */
.blog-article__toc-link.active,
.blog-article__toc-nav a.active,
nav#tableOfContents a.active {
    color: #0a1430 !important;
    background: linear-gradient(135deg, rgba(248, 209, 2, 0.15) 0%, rgba(248, 209, 2, 0.08) 100%) !important;
    border-left: 3px solid #f8d102 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(248, 209, 2, 0.15) !important;
    transform: translateX(2px) !important;
}

/* Share Buttons - Force dark icons */
.blog-article__share-sticky {
    background: #f8f9fa !important;
}

.blog-article__share-label {
    color: #6b7280 !important;
}

.blog-article__share-btn {
    background: #ffffff !important;
    color: #0a1430 !important;
    border: 1px solid #e5e7eb !important;
}

.blog-article__share-btn i {
    color: #0a1430 !important;
}

.blog-article__share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.blog-article__share-btn--twitter:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.blog-article__share-btn--twitter:hover i {
    color: #ffffff !important;
}

.blog-article__share-btn--facebook:hover {
    background: #1877f2 !important;
    color: #ffffff !important;
    border-color: #1877f2 !important;
}

.blog-article__share-btn--facebook:hover i {
    color: #ffffff !important;
}

.blog-article__share-btn--linkedin:hover {
    background: #0a66c2 !important;
    color: #ffffff !important;
    border-color: #0a66c2 !important;
}

.blog-article__share-btn--linkedin:hover i {
    color: #ffffff !important;
}

.blog-article__share-btn--copy:hover {
    background: #f8d102 !important;
    color: #0a1430 !important;
    border-color: #f8d102 !important;
}

.blog-article__share-btn--copy:hover i {
    color: #0a1430 !important;
}

/* Article Body - Force dark text */
.blog-article__main {
    background: #ffffff !important;
}

.blog-article__body {
    color: #1a1a2e !important;
}

.blog-article__body p {
    color: #1a1a2e !important;
}

.blog-article__body h2,
.blog-article__body h3,
.blog-article__body h4,
.blog-article__body h5,
.blog-article__body h6 {
    color: #0a1430 !important;
}

.blog-article__body strong,
.blog-article__body b {
    color: #0a1430 !important;
}

.blog-article__body li {
    color: #1a1a2e !important;
}

.blog-article__body a {
    color: #0077ff !important;
}

.blog-article__body a:hover {
    color: #0055cc !important;
}

.blog-article__body blockquote {
    color: #1a1a2e !important;
    background: linear-gradient(135deg, rgba(248, 209, 2, 0.08) 0%, rgba(248, 209, 2, 0.03) 100%) !important;
    border-left: 4px solid #f8d102 !important;
}

.blog-article__body blockquote p {
    color: #1a1a2e !important;
}

.blog-article__body code {
    color: #0077ff !important;
    background: rgba(0, 119, 255, 0.1) !important;
}

.blog-article__body th {
    color: #0a1430 !important;
    background: #f8f9fa !important;
}

.blog-article__body td {
    color: #1a1a2e !important;
}

/* Tags - Force dark text */
.blog-article__tags > i {
    color: #6b7280 !important;
}

.blog-article__tag {
    color: #4a5568 !important;
    background: #f3f4f6 !important;
}

.blog-article__tag:hover {
    color: #0a1430 !important;
    background: #f8d102 !important;
}

/* Author Card - Force dark text */
.blog-article__author-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 1px solid #e5e7eb !important;
}

.blog-article__author-card-content h4 {
    color: #0a1430 !important;
}

.blog-article__author-card-content p {
    color: #4a5568 !important;
}

.blog-article__author-card-avatar span {
    color: #0a1430 !important;
}

.blog-article__author-card-social a {
    color: #0a1430 !important;
    background: rgba(10, 20, 48, 0.08) !important;
}

.blog-article__author-card-social a:hover {
    color: #0a1430 !important;
    background: #f8d102 !important;
}

.blog-article__author-card-social a i {
    color: inherit !important;
}

/* Share Section Bottom - Force dark text */
.blog-article__share-section h4 {
    color: #0a1430 !important;
}

.blog-article__share-button--email {
    color: #0a1430 !important;
    background: #f3f4f6 !important;
}

.blog-article__share-button--email i {
    color: #0a1430 !important;
}

.blog-article__share-button--email:hover {
    background: #0a1430 !important;
    color: #ffffff !important;
}

.blog-article__share-button--email:hover i {
    color: #ffffff !important;
}

/* Twitter/X button text */
.blog-article__share-button--twitter {
    color: #ffffff !important;
    background: #000000 !important;
}

.blog-article__share-button--twitter i {
    color: #ffffff !important;
}

/* Facebook button text */
.blog-article__share-button--facebook {
    color: #ffffff !important;
    background: #1877f2 !important;
}

.blog-article__share-button--facebook i {
    color: #ffffff !important;
}

/* LinkedIn button text */
.blog-article__share-button--linkedin {
    color: #ffffff !important;
    background: #0a66c2 !important;
}

.blog-article__share-button--linkedin i {
    color: #ffffff !important;
}

/* ============================================
   STYLED LISTS
   ============================================ */

/* Unordered Lists */
.blog-article__body ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 24px 0 !important;
}

.blog-article__body ul li {
    position: relative !important;
    padding-left: 28px !important;
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
    color: #1a1a2e !important;
}

.blog-article__body ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 8px !important;
    height: 8px !important;
    background: linear-gradient(135deg, #f8d102 0%, #e5c000 100%) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(248, 209, 2, 0.4) !important;
}

/* Nested unordered lists */
.blog-article__body ul ul {
    margin: 12px 0 12px 0 !important;
}

.blog-article__body ul ul li::before {
    width: 6px !important;
    height: 6px !important;
    background: #0a1430 !important;
    box-shadow: none !important;
    top: 11px !important;
}

.blog-article__body ul ul ul li::before {
    width: 6px !important;
    height: 2px !important;
    border-radius: 2px !important;
    top: 13px !important;
}

/* Ordered Lists */
.blog-article__body ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 24px 0 !important;
    counter-reset: list-counter !important;
}

.blog-article__body ol li {
    position: relative !important;
    padding-left: 45px !important;
    margin-bottom: 16px !important;
    line-height: 1.7 !important;
    counter-increment: list-counter !important;
    color: #1a1a2e !important;
}

.blog-article__body ol li::before {
    content: counter(list-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, #f8d102 0%, #e5c000 100%) !important;
    color: #0a1430 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 10px rgba(248, 209, 2, 0.3) !important;
}

/* Nested ordered lists */
.blog-article__body ol ol {
    margin: 12px 0 12px 0 !important;
}

.blog-article__body ol ol li::before {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    background: #0a1430 !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* ============================================
   STYLED TABLES
   ============================================ */

.blog-article__body table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 32px 0 !important;
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(10, 20, 48, 0.08) !important;
    border: 1px solid #e5e7eb !important;
}

.blog-article__body thead {
    background: linear-gradient(135deg, #0a1430 0%, #1a2744 100%) !important;
}

.blog-article__body th {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 16px 20px !important;
    text-align: left !important;
    border: none !important;
}

.blog-article__body th:first-child {
    border-top-left-radius: 16px !important;
}

.blog-article__body th:last-child {
    border-top-right-radius: 16px !important;
}

.blog-article__body td {
    padding: 14px 20px !important;
    color: #1a1a2e !important;
    font-size: 15px !important;
    border-bottom: 1px solid #f3f4f6 !important;
    background: #fff !important;
    transition: background 0.2s ease !important;
}

.blog-article__body tbody tr:last-child td {
    border-bottom: none !important;
}

.blog-article__body tbody tr:nth-child(even) td {
    background: #f9fafb !important;
}

.blog-article__body tbody tr:hover td {
    background: rgba(248, 209, 2, 0.08) !important;
}

/* Table caption */
.blog-article__body table caption {
    padding: 12px 20px !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    text-align: left !important;
    caption-side: bottom !important;
    background: #f9fafb !important;
    border-top: 1px solid #e5e7eb !important;
}

/* First column highlight */
.blog-article__body td:first-child {
    font-weight: 500 !important;
    color: #0a1430 !important;
}

/* ============================================
   DEFINITION LISTS
   ============================================ */

.blog-article__body dl {
    margin: 24px 0 !important;
    padding: 0 !important;
}

.blog-article__body dt {
    font-weight: 700 !important;
    color: #0a1430 !important;
    font-size: 16px !important;
    margin-top: 16px !important;
    padding-left: 16px !important;
    border-left: 3px solid #f8d102 !important;
}

.blog-article__body dd {
    margin: 8px 0 16px 0 !important;
    padding-left: 19px !important;
    color: #4a5568 !important;
    line-height: 1.7 !important;
}
