/* =====================================================
BLOG MODULE - SellToolMMO
Premium Dark SaaS Layout & Brand-Matched Visuals
===================================================== */

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary: #8B5CF6;
    --accent: #3B82F6;
    
    --bg: #020E1A;         /* Main Background */
    --card: #0D1323;       /* Card/Box Background */
    --card-hover: #141C32;
    
    --border: #131B2E;     /* Card Border */
    --border-hover: rgba(255, 255, 255, 0.12);

    --title: #F1F5F9;      /* Main Heading Text */
    --text: #F1F5F9;
    --desc: #94A3B8;       /* Description/Sub-text */
    --muted: #64748B;      /* Small Label Text */

    --success: #22C55E;
    --warning: #F97316;
    --danger: #EF4444;

    --radius-lg: 16px;     /* Card border radius */
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.4);

    --transition: cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* Base resets & layout */
.blog-module {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 24px;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    color: var(--desc);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* SECTION 1 — HERO LAYOUT */
.blog-hero-section {
    display: grid;
    grid-template-columns: 58fr 42fr;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* HERO LEFT BLOCK */
.blog-hero-left {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease-out;
}

.blog-hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 99px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22C55E;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.blog-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--title);
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(to right, #FFFFFF 0%, #8B5CF6 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--desc);
    margin-bottom: 32px;
}

.blog-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.blog-stat-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.blog-stat-box .stat-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    color: #3B82F6;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--title);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* HERO RIGHT BLOCK (FEATURED CARD) */
.blog-hero-right {
    position: relative;
    display: flex;
}

.blog-featured-card-horizontal {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    width: 100%;
    background: var(--card);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease-out;
}

.blog-featured-card-horizontal:hover {
    transform: translateY(-4px);
    border-color: #1E293B;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.blog-featured-content-wrap {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-badge-fire {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 99px;
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
    z-index: 3 !important;
}

.blog-featured-badge-fire i {
    margin-right: 4px;
}

.blog-featured-heading {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-featured-heading a {
    color: var(--title);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-featured-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--desc);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-featured-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.blog-featured-meta-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-author-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--title);
    font-weight: 500;
}

.avatar-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-featured-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 9999px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-featured-action:hover {
    background: var(--primary-hover);
}

.blog-featured-thumb-wrap {
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.blog-featured-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-out;
}

.blog-featured-thumb-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 2;
    transition: background-color 0.25s ease;
}

.blog-featured-card-horizontal:hover .blog-featured-thumb-wrap::after {
    background: rgba(0, 0, 0, 0.35);
}

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

/* Slider Indicators Mockup */
.blog-slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--primary);
}

/* SECTION 2 — SEARCH + FILTER ROW */
.blog-search-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.blog-search-box-compact {
    width: 35%;
    position: relative;
}

.blog-search-box-compact input {
    width: 100%;
    height: 38px;
    padding: 0 40px 0 16px;
    border-radius: 9999px;
    border: 1px solid #1E293B;
    background: var(--card);
    outline: none;
    color: var(--title);
    font-size: 13.5px;
    transition: all 0.2s ease;
}

.blog-search-box-compact input::placeholder {
    color: #64748B;
}

.blog-search-box-compact input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.blog-search-box-compact .search-btn-icon {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #64748B !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    z-index: 5 !important;
}

.blog-search-box-compact .search-btn-icon i {
    color: #64748B !important;
    font-size: 16px !important;
}

.blog-filter-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 65%;
    justify-content: flex-end;
}

.blog-pill-tab {
    height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 9999px;
    background: #1E293B;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--desc);
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-pill-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--title);
}

.blog-pill-tab.active {
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 600;
}

.blog-pill-tab.active:hover {
    background: var(--primary-hover);
}

.blog-sort-select-wrapper {
    position: relative;
}

.sort-select-pill {
    height: 32px;
    padding: 0 28px 0 12px;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: #1E293B;
    color: var(--desc);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sort-select-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--title);
}

.blog-sort-select-wrapper::after {
    content: "\ea4e";
    font-family: "remixicon";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 12px;
    pointer-events: none;
}

/* SECTION 3 — MAIN LAYOUT (GRID + SIDEBAR) */
.blog-grid-main-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT AREA */
.blog-main-content-column {
    display: flex;
    flex-direction: column;
}

.blog-section-indicator {
    margin-bottom: 20px;
}

.blog-section-title-line {
    font-size: 18px;
    font-weight: 800;
    color: var(--title);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-section-title-line::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 16px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    padding-right: 2px;
}

.blog-grid-three-cols {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

/* PREMIUM SAAS ARTICLE CARD */
.blog-card-saas {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease-out;
}

.blog-card-saas:hover {
    transform: translateY(-4px);
    border-color: #1E293B;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.blog-card-thumb-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: #000;
}

.blog-card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-out;
}

.blog-card-thumb-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
    transition: background-color 0.25s ease;
}

.blog-card-saas:hover .blog-card-thumb-wrap::after {
    background: rgba(0, 0, 0, 0.25);
}

.blog-card-saas:hover .blog-card-thumb-wrap img {
    transform: scale(1.03);
}

.card-tag-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 20px;
    padding: 0 8px;
    border-radius: 4px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    z-index: 3 !important;
}

/* Custom categories tag colors */
.card-tag-pill.category-facebook { background: #1877F2 !important; }
.card-tag-pill.category-tiktok { background: #010101 !important; border: 1px solid #FE2C55; color: #FE2C55 !important; }
.card-tag-pill.category-youtube { background: #FF0000 !important; }

.blog-card-body-wrap {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card-heading a {
    color: var(--title);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-card-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--desc);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: auto;
}

.blog-card-meta-row span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.btn-view-more-posts {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 24px;
    border-radius: 9999px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-view-more-posts:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #FFFFFF;
}

/* Arrow hover movement */
.arrow-icon {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

.btn-featured-action:hover .arrow-icon,
.btn-view-more-posts:hover .arrow-icon {
    transform: translateX(4px);
}

/* RIGHT SIDEBAR COLUMN */
.blog-sidebar-widget-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-glass-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-header-line {
    font-size: 14px;
    font-weight: 800;
    color: var(--title);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.widget-header-line::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 12px;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    padding-right: 2px;
}

/* Widget Card 1: Popular categories in 2 columns */
.widget-list-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.widget-list-item-row a {
    color: var(--desc);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-list-item-row a:hover {
    color: var(--accent);
}

.widget-badge-count {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    margin-left: 4px;
}

/* Widget Card 2: Tag cloud chip */
.widget-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-pill-tag {
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #1E293B;
    text-decoration: none;
    color: #94A3B8;
    font-size: 11.5px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.widget-pill-tag:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.widget-desc-text {
    font-size: 12.5px;
    color: var(--desc);
    margin-bottom: 16px;
}

.widget-email-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.widget-email-form input {
    flex: 1;
    height: 38px;
    padding: 0 16px;
    border-radius: 9999px;
    border: 1px solid #1E293B;
    background: var(--card);
    color: var(--title);
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
}

.widget-email-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-email-submit {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-email-submit:hover {
    background: var(--primary-hover);
}

.widget-notice-spam {
    font-size: 10.5px;
    color: var(--muted);
    display: block;
}

/* SECTION 4 — VALUE STRIP */
.blog-value-grid-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}

.value-card-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 120px;
    box-shadow: var(--shadow-sm);
}

.value-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bg-icon-blue { background: rgba(37, 99, 235, 0.15); color: #3B82F6; }
.bg-icon-purple { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }
.bg-icon-green { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.bg-icon-yellow { background: rgba(234, 179, 8, 0.15); color: #EAB308; }

.value-content-text {
    display: flex;
    flex-direction: column;
}

.value-heading-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 4px;
}

.value-heading-desc {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--desc);
}

/* Sticky layout rules */
.blog-grid-main-layout > .blog-sidebar-widget-column {
    position: sticky;
    top: 90px;
    height: fit-content;
}

/* ======================================
DETAIL PAGE STYLE (Centered, Premium)
====================================== */
.blog-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.blog-detail-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--title);
    margin-bottom: 16px;
    text-align: center;
}

.blog-detail-meta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--desc);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-cover {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 460px;
    box-shadow: var(--shadow-md);
}

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

.blog-content {
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.blog-content h1,
.blog-module .blog-content h1 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--title) !important;
    margin: 36px 0 16px 0 !important;
    line-height: 1.3 !important;
}

.blog-content h2,
.blog-module .blog-content h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--title) !important;
    margin: 32px 0 14px 0 !important;
    line-height: 1.35 !important;
}

.blog-content h3,
.blog-module .blog-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--title) !important;
    margin: 28px 0 12px 0 !important;
    line-height: 1.4 !important;
}

.blog-content h4,
.blog-module .blog-content h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--title) !important;
    margin: 24px 0 10px 0 !important;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 28px 0;
    box-shadow: var(--shadow-sm);
}

.blog-content blockquote {
    margin: 32px 0;
    padding: 12px 24px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--desc);
}

.blog-content pre {
    margin: 28px 0;
    padding: 20px;
    background: #010409;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow-x: auto;
}

.blog-content code {
    font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
    font-size: 13.5px;
    color: #F8F8F2;
}

/* Related section */
.blog-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--title);
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.blog-related {
    margin-top: 64px;
}

.blog-comments {
    margin-top: 64px;
}

.comment {
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--card);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.comment-admin {
    border-left: 3px solid var(--primary);
    background: rgba(37, 99, 235, 0.03);
}

/* Premium sticky reading progress */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    width: 0;
    transition: width 0.1s ease;
}

/* Empty State Style */
.jumbotron {
    padding: 48px;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
}

.jumbotron i {
    font-size: 40px;
    color: var(--muted);
    margin-bottom: 16px;
}

/* ======================================
RESPONSIVE LAYOUT RULES
====================================== */
@media(max-width: 1200px) {
    .blog-hero-section {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-left {
        padding: 32px;
    }
    
    .blog-featured-card-horizontal {
        max-height: none;
        grid-template-columns: 1fr;
    }
    
    .blog-featured-thumb-wrap {
        height: 240px;
        order: -1;
    }
    
    .blog-grid-main-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar-widget-column {
        position: static !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 32px;
    }
    
    .blog-value-grid-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1024px) {
    .blog-grid-three-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 640px) {
    .blog-featured-card-horizontal {
        grid-template-columns: 1fr;
        max-height: none;
        height: auto;
    }
    
    .blog-featured-thumb-wrap {
        height: 200px;
        order: -1;
    }
    
    .blog-featured-content-wrap {
        padding: 24px;
    }
    
    .blog-search-filter-row {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 12px;
    }
    
    .blog-search-box-compact,
    .blog-filter-tabs {
        width: 100% !important;
        justify-content: flex-start;
    }
    
    .blog-grid-three-cols {
        grid-template-columns: 1fr !important;
    }
    
    .blog-sidebar-widget-column {
        grid-template-columns: 1fr;
    }
    
    .blog-value-grid-strip {
        grid-template-columns: 1fr;
    }
    
    .value-card-box {
        height: auto;
        padding: 16px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

/* =====================================================
   ADDITIONAL BUTTONS & CTA WIDGETS
   ===================================================== */
.btn-hero-utilities-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #FFFFFF !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-utilities-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF !important;
}

.btn-hero-utilities-action i {
    font-size: 16px;
}

.widget-utilities-cta {
    background: linear-gradient(135deg, rgba(13, 19, 35, 0.95) 0%, rgba(37, 99, 235, 0.08) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.25) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

.btn-sidebar-utilities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    width: 100%;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.btn-sidebar-utilities:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: #FFFFFF !important;
}