﻿/* ========================================
   贸客宝资讯中心 - JustNews风格布局
   WordPress主题模板专用样式
   使用方法：上传到主题目录后，在functions.php中引入
   ======================================== */

/* CSS Variables */
:root {
    --mkb-primary: #1a56db;
    --mkb-primary-hover: #1e429f;
    --mkb-primary-light: #eff6ff;
    --mkb-secondary: #f59e0b;
    --mkb-text: #1a1a1a;
    --mkb-text-secondary: #666;
    --mkb-text-muted: #999;
    --mkb-border: #e5e7eb;
    --mkb-bg: #f5f7fa;
    --mkb-white: #ffffff;
    --mkb-sidebar-width: 300px;
    --mkb-container: 1200px;
    --mkb-radius-sm: 4px;
    --mkb-radius-md: 8px;
    --mkb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --mkb-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --mkb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --mkb-transition: all 0.2s ease;
}

/* ===== Page Header / Banner ===== */
body.mkb-news-page .mkb-page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--mkb-primary) 50%, #3b82f6 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.mkb-news-page .mkb-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

body.mkb-news-page .mkb-page-header body.mkb-news-page .mkb-container {
    position: relative;
    z-index: 1;
}

body.mkb-news-page .mkb-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.4;
}

body.mkb-news-page .mkb-page-description {
    font-size: 15px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Container ===== */
body.mkb-news-page .mkb-container {
    max-width: var(--mkb-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Breadcrumb ===== */
body.mkb-news-page body.mkb-news-page .mkb-breadcrumb-section {
    background: var(--mkb-white);
    border-bottom: 1px solid var(--mkb-border);
    padding: 12px 0;
}

body.mkb-news-page .mkb-breadcrumb {
    font-size: 13px;
    color: var(--mkb-text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

body.mkb-news-page .mkb-breadcrumb a {
    color: var(--mkb-text-secondary);
}

body.mkb-news-page .mkb-breadcrumb a:hover {
    color: var(--mkb-primary);
}

body.mkb-news-page .mkb-separator {
    color: var(--mkb-text-muted);
    font-size: 12px;
}

body.mkb-news-page .mkb-current {
    color: var(--mkb-text);
    font-weight: 500;
}

/* ===== Main Content Area ===== */
body.mkb-news-page .mkb-main-content {
    padding: 30px 0 50px;
    background: var(--mkb-bg);
}

body.mkb-news-page .mkb-main-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

body.mkb-news-page .mkb-primary-content {
    flex: 1;
    min-width: 0;
}

/* ===== Category Tabs ===== */
body.mkb-news-page .mkb-category-tabs {
    background: var(--mkb-white);
    border-radius: var(--mkb-radius-md);
    padding: 4px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    box-shadow: var(--mkb-shadow-sm);
}

body.mkb-news-page .mkb-tab-item {
    padding: 8px 18px;
    font-size: 13px;
    color: var(--mkb-text-secondary);
    border-radius: var(--mkb-radius-sm);
    transition: var(--mkb-transition);
    white-space: nowrap;
    text-decoration: none;
}

body.mkb-news-page .mkb-tab-item:hover {
    color: var(--mkb-primary);
    background: var(--mkb-primary-light);
}

body.mkb-news-page .mkb-tab-item.active {
    background: var(--mkb-primary);
    color: #fff;
}

/* ===== Article List ===== */
body.mkb-news-page .mkb-article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.mkb-news-page .mkb-article-item {
    background: var(--mkb-white);
    border-radius: var(--mkb-radius-md);
    overflow: hidden;
    box-shadow: var(--mkb-shadow-sm);
    transition: var(--mkb-transition);
    display: flex;
}

body.mkb-news-page .mkb-article-item:hover {
    box-shadow: var(--mkb-shadow-md);
    transform: translateY(-2px);
}

body.mkb-news-page .mkb-item-img {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

body.mkb-news-page .mkb-item-img-inner {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

body.mkb-news-page .mkb-item-img img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.mkb-news-page .mkb-article-item:hover body.mkb-news-page .mkb-item-img img {
    transform: scale(1.05);
}

body.mkb-news-page .mkb-item-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--mkb-primary);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 500;
    z-index: 2;
    text-decoration: none;
}

body.mkb-news-page .mkb-item-category:hover {
    color: #fff;
    background: var(--mkb-primary-hover);
}

body.mkb-news-page .mkb-item-category.mkb-cat-seo { background: #10b981; }
body.mkb-news-page .mkb-item-category.mkb-cat-seo:hover { background: #059669; }
body.mkb-news-page .mkb-item-category.mkb-cat-social { background: #8b5cf6; }
body.mkb-news-page .mkb-item-category.mkb-cat-social:hover { background: #7c3aed; }
body.mkb-news-page .mkb-item-category.mkb-cat-build { background: #f59e0b; }
body.mkb-news-page .mkb-item-category.mkb-cat-build:hover { background: #d97706; }
body.mkb-news-page .mkb-item-category.mkb-cat-trade { background: #ef4444; }
body.mkb-news-page .mkb-item-category.mkb-cat-trade:hover { background: #dc2626; }

body.mkb-news-page .mkb-item-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

body.mkb-news-page .mkb-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

body.mkb-news-page .mkb-item-title a {
    color: var(--mkb-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

body.mkb-news-page .mkb-item-title a:hover {
    color: var(--mkb-primary);
}

body.mkb-news-page .mkb-item-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--mkb-text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

body.mkb-news-page .mkb-item-meta > span {
    display: flex;
    align-items: center;
    gap: 4px;
}

body.mkb-news-page .mkb-item-excerpt {
    color: var(--mkb-text-secondary);
    font-size: 13.5px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

body.mkb-news-page .mkb-item-footer {
    display: flex;
    justify-content: flex-end;
}

body.mkb-news-page .mkb-read-more {
    font-size: 13px;
    font-weight: 500;
    color: var(--mkb-primary);
    text-decoration: none;
}

body.mkb-news-page .mkb-read-more:hover {
    color: var(--mkb-primary-hover);
}

/* No posts */
body.mkb-news-page .mkb-no-posts {
    background: var(--mkb-white);
    border-radius: var(--mkb-radius-md);
    padding: 60px 20px;
    text-align: center;
    color: var(--mkb-text-muted);
    box-shadow: var(--mkb-shadow-sm);
}

/* ===== Pagination - Full Reset & Override ===== */
body.mkb-news-page .mkb-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Reset theme's nav.pagination outer container */
body.mkb-news-page .mkb-pagination .navigation.pagination,
body.mkb-news-page .mkb-pagination .pagination {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
    float: none !important;
    width: auto !important;
    text-align: center !important;
    overflow: visible !important;
    position: static !important;
}

/* Reset nav-links */
body.mkb-news-page .mkb-pagination .nav-links {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
    float: none !important;
    text-align: center !important;
}

/* Screen reader text */
body.mkb-news-page .mkb-pagination .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Reset the ul */
body.mkb-news-page .mkb-pagination ul.page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    float: none !important;
    width: auto !important;
    vertical-align: top !important;
    justify-content: center !important;
}

/* Reset li */
body.mkb-news-page .mkb-pagination ul.page-numbers li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    float: none !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

body.mkb-news-page .mkb-pagination ul.page-numbers li::before,
body.mkb-news-page .mkb-pagination ul.page-numbers li::after {
    display: none !important;
    content: none !important;
}

/* Individual page buttons - strong override */
body.mkb-news-page .mkb-pagination ul.page-numbers li a.page-numbers,
body.mkb-news-page .mkb-pagination ul.page-numbers li span.page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    color: #666666 !important;
    font-size: 13px !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    float: none !important;
    position: static !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    font-family: inherit !important;
}

body.mkb-news-page .mkb-pagination ul.page-numbers li a.page-numbers:hover {
    background: #eff6ff !important;
    border-color: #1a56db !important;
    color: #1a56db !important;
    text-decoration: none !important;
}

/* Current page */
body.mkb-news-page .mkb-pagination ul.page-numbers li span.page-numbers.current {
    background: #1a56db !important;
    border-color: #1a56db !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    cursor: default !important;
}

/* Prev / Next */
body.mkb-news-page .mkb-pagination ul.page-numbers li a.prev.page-numbers,
body.mkb-news-page .mkb-pagination ul.page-numbers li a.next.page-numbers {
    padding: 0 14px !important;
    min-width: auto !important;
}

/* Dots */
body.mkb-news-page .mkb-pagination ul.page-numbers li span.page-numbers.dots {
    border: none !important;
    background: transparent !important;
    color: #999999 !important;
    min-width: auto !important;
    padding: 0 4px !important;
    cursor: default !important;
}

/* ===== Sidebar ===== */
body.mkb-news-page .mkb-sidebar {
    width: var(--mkb-sidebar-width);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 94px;
}

body.mkb-news-page .mkb-widget {
    background: var(--mkb-white);
    border-radius: var(--mkb-radius-md);
    padding: 20px;
    box-shadow: var(--mkb-shadow-sm);
}

body.mkb-news-page body.mkb-news-page .mkb-widget-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--mkb-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mkb-border);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.mkb-news-page body.mkb-news-page .mkb-widget-title-icon {
    width: 3px;
    height: 16px;
    background: var(--mkb-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

body.mkb-news-page body.mkb-news-page .mkb-widget-title-icon.mkb-hot {
    background: #ef4444;
}

/* Search Widget */
body.mkb-news-page .mkb-widget-search-form {
    display: flex;
    border: 1px solid var(--mkb-border);
    border-radius: var(--mkb-radius-sm);
    overflow: hidden;
    transition: var(--mkb-transition);
}

body.mkb-news-page .mkb-widget-search-form:focus-within {
    border-color: var(--mkb-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

body.mkb-news-page .mkb-widget-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 13px;
    background: transparent;
}

body.mkb-news-page .mkb-widget-search-submit {
    background: var(--mkb-primary);
    color: #fff;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--mkb-transition);
}

body.mkb-news-page .mkb-widget-search-submit:hover {
    background: var(--mkb-primary-hover);
}

/* Post Thumb Widget */
body.mkb-news-page .mkb-post-thumb-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.mkb-news-page .mkb-post-thumb-item {
    display: flex;
    gap: 12px;
    transition: var(--mkb-transition);
    list-style: none;
}

body.mkb-news-page .mkb-post-thumb-item:hover {
    transform: translateX(4px);
}

.mkb-post-thumb-img {
    position: relative;
    width: 90px;
    height: 65px;
    flex-shrink: 0;
    border-radius: var(--mkb-radius-sm);
    overflow: hidden;
}

.mkb-post-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkb-post-thumb-num {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--mkb-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 4px 0;
}

body.mkb-news-page .mkb-post-thumb-item:nth-child(1) .mkb-post-thumb-num { background: #ef4444; }
body.mkb-news-page .mkb-post-thumb-item:nth-child(2) .mkb-post-thumb-num { background: #f97316; }
body.mkb-news-page .mkb-post-thumb-item:nth-child(3) .mkb-post-thumb-num { background: #eab308; }

.mkb-post-thumb-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mkb-post-thumb-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.mkb-post-thumb-title a {
    color: var(--mkb-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.mkb-post-thumb-title a:hover {
    color: var(--mkb-primary);
}

.mkb-post-thumb-date {
    font-size: 11px;
    color: var(--mkb-text-muted);
}

/* Hot Posts Widget */
body.mkb-news-page .mkb-hot-post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.mkb-news-page .mkb-hot-post-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--mkb-border);
    transition: var(--mkb-transition);
    list-style: none;
}

body.mkb-news-page .mkb-hot-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

body.mkb-news-page .mkb-hot-post-item:hover {
    transform: translateX(4px);
}

.mkb-hot-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #e5e7eb;
    color: var(--mkb-text-secondary);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-top: 2px;
}

.mkb-hot-num.mkb-hot-1 { background: #ef4444; color: #fff; }
.mkb-hot-num.mkb-hot-2 { background: #f97316; color: #fff; }
.mkb-hot-num.mkb-hot-3 { background: #eab308; color: #fff; }

body.mkb-news-page .mkb-hot-post-item a {
    font-size: 13px;
    color: var(--mkb-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

body.mkb-news-page .mkb-hot-post-item a:hover {
    color: var(--mkb-primary);
}

/* Categories Widget */
body.mkb-news-page .mkb-category-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkb-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: var(--mkb-transition);
    list-style: none;
}

.mkb-cat-item:last-child {
    border-bottom: none;
}

.mkb-cat-item:hover {
    padding-left: 6px;
}

.mkb-cat-item a {
    font-size: 13.5px;
    color: var(--mkb-text);
    text-decoration: none;
}

.mkb-cat-item a:hover {
    color: var(--mkb-primary);
}

.mkb-cat-count {
    font-size: 12px;
    color: var(--mkb-text-muted);
    background: #f3f4f6;
    padding: 1px 8px;
    border-radius: 10px;
}

.mkb-cat-active a {
    color: var(--mkb-primary);
    font-weight: 500;
}

/* Tag Cloud Widget */
body.mkb-news-page .mkb-tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.mkb-news-page .mkb-tagcloud a {
    font-size: 12px !important;
    color: var(--mkb-text-secondary);
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--mkb-transition);
    line-height: 1.5;
    text-decoration: none;
}

body.mkb-news-page .mkb-tagcloud a:hover {
    background: var(--mkb-primary);
    color: #fff;
}

/* CTA Widget */
body.mkb-news-page .mkb-widget_cta {
    padding: 0;
    overflow: hidden;
}

body.mkb-news-page .mkb-cta-box {
    background: linear-gradient(135deg, var(--mkb-primary), #3b82f6);
    color: #fff;
    padding: 24px;
    text-align: center;
}

.mkb-cta-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

body.mkb-news-page .mkb-cta-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

body.mkb-news-page .mkb-cta-desc {
    font-size: 12.5px;
    opacity: 0.9;
    margin-bottom: 16px;
    line-height: 1.6;
}

body.mkb-news-page .mkb-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--mkb-primary) !important;
    padding: 10px 28px;
    border-radius: var(--mkb-radius-md);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--mkb-transition);
    text-decoration: none;
}

body.mkb-news-page .mkb-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

body.mkb-news-page .mkb-cta-phone {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

/* ===== Back to Top Button ===== */
body.mkb-news-page .mkb-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--mkb-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--mkb-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

body.mkb-news-page .mkb-back-to-top.mkb-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.mkb-news-page .mkb-back-to-top:hover {
    background: var(--mkb-primary-hover);
    transform: translateY(-2px);
}

/* ===== Animation ===== */
@keyframes mkb-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.mkb-news-page .mkb-article-item {
    animation: mkb-fadeInUp 0.5s ease forwards;
}

body.mkb-news-page .mkb-article-item:nth-child(1) { animation-delay: 0.05s; }
body.mkb-news-page .mkb-article-item:nth-child(2) { animation-delay: 0.1s; }
body.mkb-news-page .mkb-article-item:nth-child(3) { animation-delay: 0.15s; }
body.mkb-news-page .mkb-article-item:nth-child(4) { animation-delay: 0.2s; }
body.mkb-news-page .mkb-article-item:nth-child(5) { animation-delay: 0.25s; }
body.mkb-news-page .mkb-article-item:nth-child(6) { animation-delay: 0.3s; }
body.mkb-news-page .mkb-article-item:nth-child(7) { animation-delay: 0.35s; }
body.mkb-news-page .mkb-article-item:nth-child(8) { animation-delay: 0.4s; }

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    body.mkb-news-page .mkb-main-container {
        flex-direction: column;
    }

    body.mkb-news-page .mkb-sidebar {
        width: 100%;
        position: static;
    }

    body.mkb-news-page .mkb-item-img {
        width: 240px;
    }
}

@media (max-width: 768px) {
    body.mkb-news-page .mkb-page-header {
        padding: 40px 0 30px;
    }

    body.mkb-news-page .mkb-page-title {
        font-size: 24px;
    }

    body.mkb-news-page .mkb-page-description {
        font-size: 13px;
    }

    body.mkb-news-page .mkb-article-item {
        flex-direction: column;
    }

    body.mkb-news-page .mkb-item-img {
        width: 100%;
    }

    body.mkb-news-page .mkb-item-img-inner {
        min-height: 180px;
    }

    body.mkb-news-page .mkb-item-img img {
        min-height: 180px;
    }

    body.mkb-news-page .mkb-item-content {
        padding: 16px;
    }

    body.mkb-news-page .mkb-item-title {
        font-size: 16px;
    }

    body.mkb-news-page .mkb-item-excerpt {
        -webkit-line-clamp: 2;
    }

    body.mkb-news-page .mkb-category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    body.mkb-news-page .mkb-tab-item {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    body.mkb-news-page .mkb-container {
        padding: 0 15px;
    }

    body.mkb-news-page .mkb-page-title {
        font-size: 20px;
    }

    body.mkb-news-page .mkb-main-content {
        padding: 20px 0 40px;
    }

    body.mkb-news-page .mkb-item-title {
        font-size: 15px;
    }

    body.mkb-news-page .mkb-pagination ul {
        gap: 4px;
    }

    body.mkb-news-page .mkb-pagination .page-numbers {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    body.mkb-news-page .mkb-back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Sticky sidebar scrollbar */
@media (min-width: 993px) {
    body.mkb-news-page .mkb-sidebar {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding-right: 5px;
    }

    body.mkb-news-page .mkb-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    body.mkb-news-page .mkb-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    body.mkb-news-page .mkb-sidebar::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 2px;
    }
}



/* ========================================
   Single Article Page Styles
   ======================================== */

/* Article Header */
body.mkb-news-page .mkb-single-article {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

body.mkb-news-page .mkb-article-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

body.mkb-news-page .mkb-article-cats {
    margin-bottom: 12px;
}

body.mkb-news-page .mkb-article-cats .mkb-item-category {
    position: static;
    display: inline-block;
    margin-right: 8px;
}

body.mkb-news-page .mkb-article-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 16px;
}

body.mkb-news-page .mkb-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
}

body.mkb-news-page .mkb-article-meta > span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image */
body.mkb-news-page .mkb-article-thumb {
    margin: 0 -30px 30px;
    text-align: center;
    background: #f5f7fa;
}

body.mkb-news-page .mkb-article-thumb img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Article Content */
body.mkb-news-page .mkb-article-content {
    font-size: 15px;
    line-height: 1.85;
    color: #333;
}

body.mkb-news-page .mkb-article-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a56db;
    display: inline-block;
}

body.mkb-news-page .mkb-article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #1a1a1a;
}

body.mkb-news-page .mkb-article-content p {
    margin-bottom: 16px;
    text-align: justify;
}

body.mkb-news-page .mkb-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 16px 0;
}

body.mkb-news-page .mkb-article-content blockquote {
    border-left: 4px solid #1a56db;
    padding: 12px 20px;
    margin: 20px 0;
    background: #eff6ff;
    color: #1e429f;
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

body.mkb-news-page .mkb-article-content ul,
body.mkb-news-page .mkb-article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

body.mkb-news-page .mkb-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

body.mkb-news-page .mkb-article-content a {
    color: #1a56db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

body.mkb-news-page .mkb-article-content a:hover {
    border-bottom-color: #1a56db;
}

body.mkb-news-page .mkb-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

body.mkb-news-page .mkb-article-content th,
body.mkb-news-page .mkb-article-content td {
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    text-align: left;
}

body.mkb-news-page .mkb-article-content th {
    background: #f5f7fa;
    font-weight: 600;
}

body.mkb-news-page .mkb-article-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: Consolas, Monaco, monospace;
    color: #dc2626;
}

body.mkb-news-page .mkb-article-content pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 16px 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
}

body.mkb-news-page .mkb-article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Page links */
body.mkb-news-page .mkb-page-links {
    margin: 30px 0;
    text-align: center;
    clear: both;
}

body.mkb-news-page .mkb-page-links span {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 30px;
    margin: 0 4px;
    padding: 0 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

body.mkb-news-page .mkb-page-links a span {
    background: #1a56db;
    color: #fff;
    border-color: #1a56db;
}

/* Article Tags */
body.mkb-news-page .mkb-article-tags {
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

body.mkb-news-page .mkb-tags-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    color: #666;
    flex-shrink: 0;
}

body.mkb-news-page .mkb-article-tags .mkb-tagcloud {
    flex: 1;
}

/* Article Footer */
body.mkb-news-page .mkb-article-footer {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    gap: 16px;
}

body.mkb-news-page .mkb-like-btn,
body.mkb-news-page .mkb-share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

body.mkb-news-page .mkb-like-btn:hover,
body.mkb-news-page .mkb-share-btn:hover {
    border-color: #1a56db;
    color: #1a56db;
    background: #eff6ff;
}

/* Author Box */
body.mkb-news-page .mkb-author-box {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

body.mkb-news-page .mkb-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

body.mkb-news-page .mkb-author-info {
    flex: 1;
}

body.mkb-news-page .mkb-author-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}

body.mkb-news-page .mkb-author-name a {
    color: #1a1a1a;
    text-decoration: none;
}

body.mkb-news-page .mkb-author-name a:hover {
    color: #1a56db;
}

body.mkb-news-page .mkb-author-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts */
body.mkb-news-page .mkb-related-posts {
    margin: 30px 0;
}

body.mkb-news-page .mkb-related-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.mkb-news-page .mkb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.mkb-news-page .mkb-related-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

body.mkb-news-page .mkb-related-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

body.mkb-news-page .mkb-related-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

body.mkb-news-page .mkb-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

body.mkb-news-page .mkb-related-item:hover .mkb-related-img img {
    transform: scale(1.05);
}

body.mkb-news-page .mkb-related-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding: 12px 14px 4px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.mkb-news-page .mkb-related-item-title a {
    color: #1a1a1a;
    text-decoration: none;
}

body.mkb-news-page .mkb-related-item-title a:hover {
    color: #1a56db;
}

body.mkb-news-page .mkb-related-date {
    display: block;
    padding: 0 14px 12px;
    font-size: 12px;
    color: #999;
}

/* Comments Area */
body.mkb-news-page .mkb-comments-area {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* Responsive for single article */
@media (max-width: 768px) {
    body.mkb-news-page .mkb-single-article {
        padding: 20px;
    }

    body.mkb-news-page .mkb-article-title {
        font-size: 20px;
    }

    body.mkb-news-page .mkb-article-thumb {
        margin: 0 -20px 20px;
    }

    body.mkb-news-page .mkb-article-content {
        font-size: 14px;
    }

    body.mkb-news-page .mkb-article-content h2 {
        font-size: 18px;
    }

    body.mkb-news-page .mkb-article-content h3 {
        font-size: 16px;
    }

    body.mkb-news-page .mkb-related-grid {
        grid-template-columns: 1fr;
    }

    body.mkb-news-page .mkb-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}




/* ========================================
   Enhanced Single Article - Bootstrap Style
   ======================================== */

/* Hide like/share buttons */
body.mkb-news-page .mkb-article-footer {
    display: none !important;
}

/* Article Card - Bootstrap style */
body.mkb-news-page .mkb-single-article {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 40px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04) !important;
    border: 1px solid #e9ecef !important;
}

/* Article Header */
body.mkb-news-page .mkb-article-header {
    margin-bottom: 32px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid #e9ecef !important;
}

body.mkb-news-page .mkb-article-cats {
    margin-bottom: 16px !important;
}

body.mkb-news-page .mkb-article-cats .mkb-item-category {
    font-size: 12px !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

body.mkb-news-page .mkb-article-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #212529 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.3px !important;
}

body.mkb-news-page .mkb-article-meta {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    font-size: 13px !important;
    color: #6c757d !important;
    flex-wrap: wrap !important;
}

body.mkb-news-page .mkb-article-meta > span {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

body.mkb-news-page .mkb-meta-author {
    color: #495057 !important;
    font-weight: 500 !important;
}

/* Featured Image */
body.mkb-news-page .mkb-article-thumb {
    margin: 0 -40px 32px !important;
    background: #f8f9fa !important;
}

body.mkb-news-page .mkb-article-thumb img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Article Content - Bootstrap typography */
body.mkb-news-page .mkb-article-content {
    font-size: 16px !important;
    line-height: 1.9 !important;
    color: #343a40 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif !important;
}

body.mkb-news-page .mkb-article-content h1,
body.mkb-news-page .mkb-article-content h2,
body.mkb-news-page .mkb-article-content h3,
body.mkb-news-page .mkb-article-content h4,
body.mkb-news-page .mkb-article-content h5,
body.mkb-news-page .mkb-article-content h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif !important;
    color: #212529 !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

body.mkb-news-page .mkb-article-content h2 {
    font-size: 24px !important;
    margin: 40px 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #0d6efd !important;
    display: inline-block !important;
}

body.mkb-news-page .mkb-article-content h3 {
    font-size: 20px !important;
    margin: 32px 0 16px !important;
    color: #212529 !important;
}

body.mkb-news-page .mkb-article-content p {
    margin-bottom: 20px !important;
    text-align: justify !important;
    color: #343a40 !important;
}

body.mkb-news-page .mkb-article-content p:first-of-type::first-letter {
    font-size: 2.5em !important;
    font-weight: 600 !important;
    float: left !important;
    line-height: 1 !important;
    margin-right: 8px !important;
    margin-top: 4px !important;
    color: #0d6efd !important;
}

body.mkb-news-page .mkb-article-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin: 24px 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

body.mkb-news-page .mkb-article-content blockquote {
    border-left: 4px solid #0d6efd !important;
    padding: 16px 24px !important;
    margin: 24px 0 !important;
    background: #f8f9fa !important;
    color: #495057 !important;
    font-style: normal !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

body.mkb-news-page .mkb-article-content ul,
body.mkb-news-page .mkb-article-content ol {
    margin: 20px 0 !important;
    padding-left: 28px !important;
}

body.mkb-news-page .mkb-article-content li {
    margin-bottom: 10px !important;
    line-height: 1.8 !important;
    color: #343a40 !important;
}

body.mkb-news-page .mkb-article-content a {
    color: #0d6efd !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(13, 110, 253, 0.2) !important;
    transition: all 0.2s ease !important;
}

body.mkb-news-page .mkb-article-content a:hover {
    color: #0a58ca !important;
    border-bottom-color: #0a58ca !important;
}

body.mkb-news-page .mkb-article-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 24px 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

body.mkb-news-page .mkb-article-content th,
body.mkb-news-page .mkb-article-content td {
    border: 1px solid #dee2e6 !important;
    padding: 12px 16px !important;
    text-align: left !important;
}

body.mkb-news-page .mkb-article-content th {
    background: #f8f9fa !important;
    font-weight: 600 !important;
    color: #212529 !important;
}

body.mkb-news-page .mkb-article-content code {
    background: #f8f9fa !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    color: #d63384 !important;
    border: 1px solid #e9ecef !important;
}

body.mkb-news-page .mkb-article-content pre {
    background: #212529 !important;
    color: #f8f9fa !important;
    padding: 20px 24px !important;
    border-radius: 8px !important;
    overflow-x: auto !important;
    margin: 24px 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

body.mkb-news-page .mkb-article-content pre code {
    background: none !important;
    color: inherit !important;
    padding: 0 !important;
    border: none !important;
    font-size: inherit !important;
}

/* Page links */
body.mkb-news-page .mkb-page-links {
    margin: 40px 0 !important;
    text-align: center !important;
    clear: both !important;
}

body.mkb-news-page .mkb-page-links span {
    display: inline-block !important;
    min-width: 36px !important;
    height: 36px !important;
    line-height: 34px !important;
    margin: 0 4px !important;
    padding: 0 12px !important;
    text-align: center !important;
    background: #fff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    transition: all 0.2s !important;
}

body.mkb-news-page .mkb-page-links a span {
    background: #0d6efd !important;
    color: #fff !important;
    border-color: #0d6efd !important;
}

body.mkb-news-page .mkb-page-links a:hover span {
    background: #0a58ca !important;
    border-color: #0a58ca !important;
}

/* Article Tags - Bootstrap badge style */
body.mkb-news-page .mkb-article-tags {
    margin: 32px 0 !important;
    padding: 20px 24px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    border: 1px solid #e9ecef !important;
}

body.mkb-news-page .mkb-tags-label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    flex-shrink: 0 !important;
    font-size: 14px !important;
}

body.mkb-news-page .mkb-article-tags .mkb-tagcloud {
    flex: 1 !important;
}

body.mkb-news-page .mkb-article-tags .mkb-tagcloud a {
    font-size: 12px !important;
    color: #0d6efd !important;
    background: #e7f1ff !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    transition: all 0.2s ease !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    font-weight: 500 !important;
}

body.mkb-news-page .mkb-article-tags .mkb-tagcloud a:hover {
    background: #0d6efd !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

/* Author Box - Bootstrap card style */
body.mkb-news-page .mkb-author-box {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 24px !important;
    margin: 32px 0 !important;
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start !important;
    border: 1px solid #e9ecef !important;
}

body.mkb-news-page .mkb-author-avatar img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

body.mkb-news-page .mkb-author-info {
    flex: 1 !important;
}

body.mkb-news-page .mkb-author-name {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
    color: #212529 !important;
}

body.mkb-news-page .mkb-author-name a {
    color: #212529 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

body.mkb-news-page .mkb-author-name a:hover {
    color: #0d6efd !important;
}

body.mkb-news-page .mkb-author-desc {
    font-size: 14px !important;
    color: #6c757d !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Related Posts - Bootstrap card grid */
body.mkb-news-page .mkb-related-posts {
    margin: 40px 0 !important;
}

body.mkb-news-page .mkb-related-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #212529 !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #e9ecef !important;
}

body.mkb-news-page .mkb-related-title .mkb-widget-title-icon {
    width: 4px !important;
    height: 20px !important;
    background: #0d6efd !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

body.mkb-news-page .mkb-related-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

body.mkb-news-page .mkb-related-item {
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

body.mkb-news-page .mkb-related-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    transform: translateY(-4px) !important;
    border-color: #dee2e6 !important;
}

body.mkb-news-page .mkb-related-img {
    width: 100% !important;
    height: 160px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
}

body.mkb-news-page .mkb-related-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

body.mkb-news-page .mkb-related-item:hover .mkb-related-img img {
    transform: scale(1.08) !important;
}

body.mkb-news-page .mkb-related-item-title {
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    padding: 16px 18px 8px !important;
    margin: 0 !important;
    min-height: 64px !important;
}

body.mkb-news-page .mkb-related-item-title a {
    color: #212529 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

body.mkb-news-page .mkb-related-item-title a:hover {
    color: #0d6efd !important;
}

body.mkb-news-page .mkb-related-date {
    display: block !important;
    padding: 0 18px 16px !important;
    font-size: 12px !important;
    color: #adb5bd !important;
}

/* Comments Area */
body.mkb-news-page .mkb-comments-area {
    margin-top: 40px !important;
    padding-top: 24px !important;
    border-top: 1px solid #e9ecef !important;
}

/* Breadcrumb improvements */
body.mkb-news-page .mkb-breadcrumb-section {
    background: #fff !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 14px 0 !important;
}

body.mkb-news-page .mkb-breadcrumb {
    font-size: 13px !important;
    color: #6c757d !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

body.mkb-news-page .mkb-breadcrumb a {
    color: #6c757d !important;
    transition: color 0.2s !important;
}

body.mkb-news-page .mkb-breadcrumb a:hover {
    color: #0d6efd !important;
}

body.mkb-news-page .mkb-separator {
    color: #dee2e6 !important;
    font-size: 12px !important;
}

body.mkb-news-page .mkb-current {
    color: #212529 !important;
    font-weight: 500 !important;
}

/* Main content area */
body.mkb-news-page .mkb-main-content {
    padding: 32px 0 60px !important;
    background: #f8f9fa !important;
}

/* Responsive enhancements */
@media (max-width: 992px) {
    body.mkb-news-page .mkb-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body.mkb-news-page .mkb-single-article {
        padding: 24px 20px !important;
        border-radius: 8px !important;
    }

    body.mkb-news-page .mkb-article-title {
        font-size: 24px !important;
    }

    body.mkb-news-page .mkb-article-thumb {
        margin: 0 -20px 24px !important;
    }

    body.mkb-news-page .mkb-article-content {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    body.mkb-news-page .mkb-article-content h2 {
        font-size: 20px !important;
    }

    body.mkb-news-page .mkb-article-content h3 {
        font-size: 18px !important;
    }

    body.mkb-news-page .mkb-related-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body.mkb-news-page .mkb-author-box {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 20px !important;
    }

    body.mkb-news-page .mkb-article-meta {
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    body.mkb-news-page .mkb-single-article {
        padding: 20px 16px !important;
    }

    body.mkb-news-page .mkb-article-title {
        font-size: 20px !important;
    }

    body.mkb-news-page .mkb-main-content {
        padding: 20px 0 40px !important;
    }

    body.mkb-news-page .mkb-article-content {
        font-size: 14.5px !important;
    }
}
