/* ==========================================================================
   NS Epoxy - Modern Blog Single Post UI Styling
   ========================================================================== */

:root {
    --blog-primary: #09446E;
    --blog-primary-dark: #062b46;
    --blog-primary-light: #0e5b94;
    --blog-accent: #80BC4D;
    --blog-accent-hover: #6ea83e;
    --blog-accent-light: rgba(128, 188, 77, 0.12);
    --blog-bg: #f8fafc;
    --blog-card-bg: #ffffff;
    --blog-text-main: #2d3748;
    --blog-text-muted: #64748b;
    --blog-text-light: #94a3b8;
    --blog-border: #e2e8f0;
    --blog-border-focus: #cbd5e1;
    --blog-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
    --blog-shadow-md: 0 4px 14px -2px rgba(9, 68, 110, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --blog-shadow-lg: 0 10px 25px -4px rgba(9, 68, 110, 0.12), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
    --blog-radius-sm: 8px;
    --blog-radius-md: 14px;
    --blog-radius-lg: 20px;
}

/* Base resets & typography for blog wrapper */
.blog-article-page {
    background-color: var(--blog-bg);
    color: var(--blog-text-main);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.75;
    padding-bottom: 60px;
}

/* ==========================================================================
   BLOG LISTING GRID STYLES (blogs.php)
   ========================================================================== */
.blogs-index-page {
    background-color: #f8fafc;
    padding: 50px 0 80px 0;
}

.blog-grid-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px -2px rgba(9, 68, 110, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px -4px rgba(9, 68, 110, 0.14);
    border-color: #80BC4D;
}

.blog-grid-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-grid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
    display: block;
}

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

.blog-grid-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(9, 68, 110, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.blog-grid-badge.accent {
    background: #80BC4D;
    color: #062b46;
}

.blog-grid-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-grid-title {
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.45;
    color: #09446E;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
    transition: color 0.2s ease;
}

.blog-grid-title a {
    color: #09446E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-grid-card:hover .blog-grid-title a {
    color: #80BC4D;
}

.blog-grid-excerpt {
    font-size: 14px !important;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-grid-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.blog-grid-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #09446E;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-grid-readmore i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog-grid-card:hover .blog-grid-readmore {
    color: #80BC4D;
}

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

/* ==========================================================================
   HEADER HIGHLIGHT & CONTRAST
   ========================================================================== */
header {
    background: #ffffff !important;
    position: relative !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 4px 20px rgba(9, 68, 110, 0.08) !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(9, 68, 110, 0.08);
}

.sticky header {
    position: fixed !important;
    top: 0;
    left: 0;
    background: #ffffff !important;
    box-shadow: 0 6px 25px rgba(9, 68, 110, 0.12) !important;
}

.header-lt {
    display: flex;
    align-items: center;
}

.header-lt a img {
    height: auto;
    max-width: 200px !important;
    display: block;
}

.header-rt {
    padding-top: 6px !important;
}

.header-rt ul li {
    padding: 0 10px !important;
}

.header-rt ul li a,
.header-rt ul li a.des {
    color: #1e293b !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: inline-block;
    text-decoration: none;
}

.header-rt ul li a:hover,
.header-rt ul li a.des:hover,
.header-rt ul li.active a {
    color: #80BC4D !important;
    background: rgba(128, 188, 77, 0.1) !important;
}

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.blog-hero-section {
    position: relative;
    background: linear-gradient(135deg, #062b46 0%, #09446E 60%, #0f5485 100%);
    padding: 55px 0 55px 0;
    color: #ffffff;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 20%, rgba(128, 188, 77, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 15% 85%, rgba(9, 68, 110, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Breadcrumbs */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
    color: var(--blog-accent);
}

.blog-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.blog-breadcrumb .active-crumb {
    color: var(--blog-accent);
    font-weight: 500;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Badge */
.blog-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-category-badge {
    background: var(--blog-accent);
    color: #062b46;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
}

/* Main H1 Title */
.blog-main-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Meta Details */
.blog-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-meta-item i, .blog-meta-item svg {
    color: var(--blog-accent);
}

/* ==========================================================================
   2. MAIN CONTENT & ARTICLE CONTAINER
   ========================================================================== */
.blog-content-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.blog-article-card {
    background: var(--blog-card-bg);
    border-radius: var(--blog-radius-lg);
    box-shadow: var(--blog-shadow-md);
    border: 1px solid var(--blog-border);
    padding: 40px;
    margin-bottom: 30px;
}

/* Featured Media */
.blog-featured-media {
    position: relative;
    border-radius: var(--blog-radius-md);
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: var(--blog-shadow-sm);
    border: 1px solid var(--blog-border);
    background: #f1f5f9;
}

.blog-featured-media img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured-media:hover img {
    transform: scale(1.015);
}

.blog-media-caption {
    padding: 10px 18px;
    background: #ffffff;
    font-size: 13px;
    color: var(--blog-text-muted);
    border-top: 1px solid var(--blog-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Lead intro callout */
.blog-lead-box {
    background: linear-gradient(to right, rgba(128, 188, 77, 0.08), rgba(9, 68, 110, 0.03));
    border-left: 4px solid var(--blog-accent);
    border-radius: 0 var(--blog-radius-sm) var(--blog-radius-sm) 0;
    padding: 22px 24px;
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 450;
}

/* Article Body Typography */
.blog-body {
    font-size: 16.5px;
    color: var(--blog-text-main);
}

.blog-body p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: #334155;
    font-size: 16.5px !important;
}

/* Section Headings */
.blog-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--blog-primary);
    margin-top: 45px;
    margin-bottom: 18px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.blog-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--blog-accent);
}

.blog-body h2 .sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--blog-accent-light);
    color: var(--blog-primary);
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    border: 1px solid rgba(128, 188, 77, 0.3);
    flex-shrink: 0;
}

.blog-body h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--blog-primary-dark);
    margin-top: 30px;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Key Takeaways / Highlights Card */
.blog-takeaways-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--blog-radius-md);
    padding: 24px;
    margin: 30px 0;
}

.blog-takeaways-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 14px;
}

/* Interactive Checklist & Feature Grid */
.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 25px 0 35px 0;
}

.blog-feature-item {
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--blog-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--blog-shadow-md);
    border-color: var(--blog-accent);
}

.blog-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--blog-accent-light);
    color: var(--blog-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.blog-feature-content h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--blog-primary);
    margin-bottom: 4px;
}

.blog-feature-content p {
    font-size: 14px !important;
    line-height: 1.6;
    color: var(--blog-text-muted);
    margin-bottom: 0;
}

/* Bullet list styled cards */
.blog-styled-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-styled-list li {
    position: relative;
    padding: 14px 18px 14px 44px;
    background: #f8fafc;
    border-radius: var(--blog-radius-sm);
    border: 1px solid var(--blog-border);
    font-size: 15.5px;
    line-height: 1.65;
    color: #334155;
    transition: all 0.2s ease;
}

.blog-styled-list li:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: var(--blog-shadow-sm);
}

.blog-styled-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 20px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2380BC4D'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.blog-styled-list li strong {
    color: var(--blog-primary);
}

/* Pro-Tip / Alert Callout */
.blog-callout {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 5px solid #2563eb;
    border-radius: var(--blog-radius-sm);
    padding: 20px 22px;
    margin: 28px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.blog-callout-icon {
    color: #2563eb;
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.blog-callout-content {
    font-size: 15px;
    color: #1e3a8a;
    line-height: 1.65;
}

.blog-callout-content strong {
    color: #1d4ed8;
    display: block;
    margin-bottom: 4px;
}

/* Conclusion Box */
.blog-conclusion-box {
    background: linear-gradient(135deg, #09446E 0%, #062b46 100%);
    color: #ffffff;
    border-radius: var(--blog-radius-md);
    padding: 32px 36px;
    margin: 45px 0 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--blog-shadow-md);
}

.blog-conclusion-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(128, 188, 77, 0.15);
    pointer-events: none;
}

.blog-conclusion-box h3 {
    color: var(--blog-accent);
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 14px;
}

.blog-conclusion-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px !important;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Social Share & Tags Bar */
.blog-share-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0 0 0;
    margin-top: 35px;
    border-top: 1px solid var(--blog-border);
}

.blog-share-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--blog-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-share-buttons {
    display: flex;
    gap: 10px;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--blog-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--blog-border);
}

.blog-share-btn:hover {
    background: var(--blog-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--blog-shadow-sm);
}

/* Author / Publisher Card */
.blog-author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-md);
    padding: 24px;
    margin-top: 30px;
}

.blog-author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--blog-primary);
    color: var(--blog-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    box-shadow: var(--blog-shadow-sm);
}

.blog-author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blog-primary);
    margin-bottom: 4px;
}

.blog-author-info p {
    font-size: 13.5px !important;
    line-height: 1.6;
    color: var(--blog-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   3. SIDEBAR STYLING
   ========================================================================== */
.blog-sidebar {
    position: sticky;
    top: 90px;
}

.blog-widget {
    background: var(--blog-card-bg);
    border-radius: var(--blog-radius-md);
    border: 1px solid var(--blog-border);
    box-shadow: var(--blog-shadow-sm);
    padding: 26px;
    margin-bottom: 25px;
}

.blog-widget-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--blog-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--blog-accent);
}

/* Table of Contents Widget */
.blog-toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-toc-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.blog-toc-item a:hover {
    color: var(--blog-primary);
    background: var(--blog-accent-light);
    transform: translateX(4px);
    font-weight: 500;
}

.blog-toc-item a i {
    font-size: 10px;
    color: var(--blog-accent);
}

/* CTA Lead Widget */
.blog-cta-widget {
    background: linear-gradient(145deg, #09446E 0%, #062b46 100%);
    color: #ffffff;
    border: none;
    position: relative;
    overflow: hidden;
}

.blog-cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(128, 188, 77, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-widget .blog-widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.blog-cta-widget p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-cta-button {
    display: block;
    width: 100%;
    background: var(--blog-accent);
    color: #062b46;
    font-weight: 700;
    font-size: 14.5px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(128, 188, 77, 0.3);
}

.blog-cta-button:hover {
    background: #90d157;
    color: #062b46;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(128, 188, 77, 0.45);
}

.blog-quick-contact {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

.blog-quick-contact a {
    color: var(--blog-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.blog-quick-contact a:hover {
    text-decoration: underline;
}

/* Related Posts Widget */
.blog-related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--blog-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.blog-related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-related-item:hover .blog-related-title {
    color: var(--blog-accent-hover);
}

.blog-related-img {
    width: 68px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}

.blog-related-info {
    flex-grow: 1;
}

.blog-related-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blog-primary);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-date {
    font-size: 12px;
    color: var(--blog-text-light);
}

/* ==========================================================================
   4. BOTTOM NAVIGATION & RELATED ARTICLES SECTION
   ========================================================================== */
.blog-bottom-section {
    margin-top: 40px;
}

.blog-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.blog-nav-card {
    background: var(--blog-card-bg);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-md);
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--blog-shadow-sm);
}

.blog-nav-card:hover {
    border-color: var(--blog-accent);
    transform: translateY(-2px);
    box-shadow: var(--blog-shadow-md);
    text-decoration: none;
}

.blog-nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--blog-text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-nav-card.prev .blog-nav-label {
    justify-content: flex-start;
}

.blog-nav-card.next {
    text-align: right;
}

.blog-nav-card.next .blog-nav-label {
    justify-content: flex-end;
}

.blog-nav-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--blog-primary);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   5. RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
    .blog-hero-section {
        padding: 110px 0 45px 0;
    }
    .blog-main-title {
        font-size: 26px;
    }
    .blog-article-card {
        padding: 24px 20px;
    }
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
    .blog-nav-grid {
        grid-template-columns: 1fr;
    }
    .blog-nav-card.next {
        text-align: left;
    }
    .blog-nav-card.next .blog-nav-label {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .blog-main-title {
        font-size: 22px;
    }
    .blog-feature-grid {
        grid-template-columns: 1fr;
    }
    .blog-meta-bar {
        font-size: 13px;
        gap: 12px;
    }
    .blog-author-card {
        flex-direction: column;
        text-align: center;
    }
    .blog-body h2 {
        font-size: 20px;
    }
}
