/* ============================================================
   THEME 2026 — MediaCore CMS
   Inspired by readers.id design
   ============================================================ */

:root {
    --blue:       #1d71b8;
    --blue-dark:  #155a9a;
    --blue-light: #e8f3fb;
    --red:        #e63838;
    --green:      #25d366;
    --text:       #1a1a1a;
    --body:       #333333;
    --muted:      #777777;
    --pale:       #aaaaaa;
    --border:     #e5e5e5;
    --bg:         #f4f5f6;
    --white:      #ffffff;
    --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
    --shadow-md:  0 2px 10px rgba(0,0,0,.10);
    --radius:     4px;
}

/* ---- RESET ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:15px;line-height:1.65;color:var(--body);background:var(--bg)}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
a:hover{color:var(--blue)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ---- UTILITY ---- */
.t26-container{max-width:1200px;margin:0 auto;padding:0 16px}
.t26-clamp2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.t26-clamp3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.t26-clamp1{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}

/* ---- HEADER TOP ---- */
.t26-header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:999}
.t26-header-inner{display:flex;align-items:center;gap:12px;padding:10px 16px;max-width:1200px;margin:0 auto}
.t26-menu-btn{display:flex;align-items:center;gap:5px;font-size:13px;color:var(--body);white-space:nowrap;padding:4px 0}
.t26-menu-btn span{font-size:18px;line-height:1}
.t26-logo{display:flex;align-items:center}
.t26-logo img{height:38px;width:auto}
.t26-logo-text{font-size:22px;font-weight:800;letter-spacing:-.5px}
.t26-logo-text .t26-logo-r{color:#e63838}
.t26-logo-text .t26-logo-domain{color:var(--blue)}
.t26-search{flex:1;max-width:340px;margin:0 auto}
.t26-search form{display:flex;align-items:center;border:1px solid var(--border);border-radius:20px;overflow:hidden;background:#f9f9f9}
.t26-search input{flex:1;border:none;background:none;padding:7px 14px;font-size:13px;outline:none;color:var(--body)}
.t26-search button{padding:7px 12px;color:var(--muted)}
.t26-social{display:flex;align-items:center;gap:6px}
.t26-social a{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;color:#fff}
.t26-social-fb{background:#1877f2}
.t26-social-tw{background:#000}
.t26-social-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.t26-social-yt{background:#ff0000}
.t26-social-rss{background:#f26522}

/* ---- NAVIGATION BAR ---- */
.t26-nav{background:var(--blue)}
.t26-nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;overflow-x:auto;scrollbar-width:none}
.t26-nav-inner::-webkit-scrollbar{display:none}
.t26-nav a{display:block;padding:10px 14px;font-size:13px;font-weight:500;color:#fff;white-space:nowrap;opacity:.9;transition:opacity .15s,background .15s}
.t26-nav a:hover,.t26-nav a.active{opacity:1;background:rgba(0,0,0,.15);color:#fff}
.t26-nav-more{padding:10px 14px;font-size:13px;font-weight:500;color:#fff;opacity:.9;cursor:pointer}

/* ---- LAYOUT ---- */
.t26-wrap{max-width:1200px;margin:20px auto;padding:0 16px;display:grid;grid-template-columns:1fr 300px;gap:20px;align-items:start}
.t26-wrap-full{max-width:1200px;margin:20px auto;padding:0 16px}
.t26-main{}
.t26-sidebar{}

/* ---- SECTION HEADER ---- */
.t26-sec{margin-bottom:6px}
.t26-sec-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;border-bottom:2px solid var(--blue);padding-bottom:8px}
.t26-sec-title{display:flex;align-items:center;gap:6px;font-size:16px;font-weight:700;color:var(--text)}
.t26-sec-title .icon{font-size:16px}
.t26-sec-link{font-size:12px;color:var(--blue);font-weight:500}
.t26-sec-link:hover{text-decoration:underline}

/* ---- CATEGORY BADGE ---- */
.t26-badge{display:inline-block;font-size:10px;font-weight:600;padding:2px 7px;border-radius:2px;text-transform:uppercase;letter-spacing:.04em;background:var(--blue);color:#fff}
.t26-badge-sm{font-size:9px;padding:1px 5px}
.t26-badge-red{background:var(--red)}
.t26-badge-green{background:#2ea44f}
.t26-badge-orange{background:#f5820d}
.t26-badge-purple{background:#7c3aed}
.t26-badge-teal{background:#0e9488}

/* ---- HERO SLIDER ---- */
.t26-hero{position:relative;border-radius:var(--radius);overflow:hidden;background:#111;margin-bottom:16px}
.t26-hero-slides{display:flex;transition:transform .45s ease}
.t26-hero-slide{min-width:100%;position:relative}
.t26-hero-slide img{width:100%;height:380px;object-fit:cover;opacity:.85}
.t26-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 55%)}
.t26-hero-body{position:absolute;bottom:0;left:0;right:0;padding:20px}
.t26-hero-body .t26-badge{margin-bottom:8px}
.t26-hero-title{font-size:20px;font-weight:700;color:#fff;line-height:1.3;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.t26-hero-meta{font-size:12px;color:rgba(255,255,255,.75)}
.t26-hero-btn{position:absolute;top:50%;transform:translateY(-50%);width:34px;height:34px;background:rgba(255,255,255,.25);backdrop-filter:blur(4px);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;transition:background .15s;z-index:2}
.t26-hero-btn:hover{background:rgba(255,255,255,.45)}
.t26-hero-prev{left:10px}
.t26-hero-next{right:10px}
.t26-hero-dots{position:absolute;bottom:10px;right:16px;display:flex;gap:4px;z-index:2}
.t26-hero-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.5);cursor:pointer;transition:background .15s}
.t26-hero-dot.active{background:#fff}

/* ---- POPULAR TAGS BAR ---- */
.t26-tags-bar{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px;align-items:center}
.t26-tags-bar-label{font-size:12px;font-weight:600;color:var(--muted)}
.t26-tag-pill{font-size:12px;padding:4px 10px;border:1px solid var(--border);border-radius:20px;color:var(--body);background:var(--white);transition:all .15s}
.t26-tag-pill:hover{background:var(--blue);color:#fff;border-color:var(--blue)}

/* ---- CARD: HORIZONTAL (thumb left) ---- */
.t26-card-h{display:flex;gap:10px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--border)}
.t26-card-h:last-child{border-bottom:none}
.t26-card-h-img{flex-shrink:0;width:90px;height:68px;border-radius:var(--radius);overflow:hidden;background:var(--border)}
.t26-card-h-img img{width:100%;height:100%;object-fit:cover}
.t26-card-h-body{flex:1;min-width:0}
.t26-card-h-title{font-size:14px;font-weight:600;line-height:1.4;color:var(--text);margin-bottom:4px}
.t26-card-h-title:hover{color:var(--blue)}
.t26-card-h-meta{font-size:11px;color:var(--muted)}

/* ---- CARD: VERTICAL (thumb top) ---- */
.t26-card-v{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.t26-card-v-img{position:relative;overflow:hidden;background:var(--border)}
.t26-card-v-img img{width:100%;height:160px;object-fit:cover;transition:transform .3s}
.t26-card-v:hover .t26-card-v-img img{transform:scale(1.03)}
.t26-card-v-body{padding:10px}
.t26-card-v-title{font-size:13px;font-weight:600;line-height:1.4;color:var(--text);margin:4px 0}
.t26-card-v-meta{font-size:11px;color:var(--muted)}

/* ---- CARD: LARGE (for featured section) ---- */
.t26-card-l{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.t26-card-l-img{position:relative;overflow:hidden}
.t26-card-l-img img{width:100%;height:200px;object-fit:cover;transition:transform .3s}
.t26-card-l:hover .t26-card-l-img img{transform:scale(1.03)}
.t26-card-l-badge{position:absolute;top:8px;left:8px}
.t26-card-l-body{padding:12px}
.t26-card-l-title{font-size:14px;font-weight:600;line-height:1.4;color:var(--text);margin-bottom:6px}
.t26-card-l-meta{font-size:11px;color:var(--muted)}

/* ---- LATEST POSTS LIST (homepage main feed) ---- */
.t26-post-row{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--border);background:var(--white);margin-bottom:1px;padding:12px}
.t26-post-row-img{flex-shrink:0;width:110px;height:80px;border-radius:var(--radius);overflow:hidden;background:var(--border)}
.t26-post-row-img img{width:100%;height:100%;object-fit:cover}
.t26-post-row-body{flex:1;min-width:0}
.t26-post-row-badge{margin-bottom:4px}
.t26-post-row-title{font-size:15px;font-weight:600;line-height:1.4;color:var(--text);margin-bottom:5px}
.t26-post-row a:hover .t26-post-row-title{color:var(--blue)}
.t26-post-row-meta{font-size:12px;color:var(--muted)}

/* ---- RECOMMENDED CAROUSEL ---- */
.t26-reco{position:relative;overflow:hidden;margin-bottom:20px}
.t26-reco-track{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:4px}
.t26-reco-track::-webkit-scrollbar{display:none}
.t26-reco-item{flex-shrink:0;width:200px;scroll-snap-align:start;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.t26-reco-item-img{height:120px;overflow:hidden}
.t26-reco-item-img img{width:100%;height:100%;object-fit:cover}
.t26-reco-item-body{padding:8px}
.t26-reco-item-title{font-size:12px;font-weight:600;line-height:1.35;color:var(--text);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.t26-reco-item-meta{font-size:10px;color:var(--muted);margin-top:4px}
.t26-reco-arrow{position:absolute;top:50%;transform:translateY(-50%);width:28px;height:28px;background:rgba(255,255,255,.9);border-radius:50%;box-shadow:var(--shadow-md);display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--body);z-index:2;cursor:pointer}
.t26-reco-prev{left:0}
.t26-reco-next{right:0}

/* ---- GRID SECTIONS ---- */
.t26-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.t26-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.t26-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}

/* ---- LOAD MORE ---- */
.t26-loadmore{text-align:center;padding:20px 0}
.t26-loadmore a,.t26-loadmore button{display:inline-block;padding:10px 32px;border:2px solid var(--blue);border-radius:4px;font-size:14px;font-weight:600;color:var(--blue);transition:all .15s}
.t26-loadmore a:hover,.t26-loadmore button:hover{background:var(--blue);color:#fff}

/* ---- SIDEBAR ---- */
.t26-sidebar-box{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-sm);margin-bottom:16px;overflow:hidden}
.t26-sidebar-head{padding:10px 14px;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:6px;font-size:14px;font-weight:700;color:var(--text)}
.t26-sidebar-body{padding:10px 14px}
.t26-popular-item{display:flex;gap:10px;align-items:flex-start;padding:8px 0;border-bottom:1px solid var(--border)}
.t26-popular-item:last-child{border-bottom:none}
.t26-popular-num{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:var(--blue);color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center}
.t26-popular-num.top{background:var(--red)}
.t26-popular-body{flex:1;min-width:0}
.t26-popular-title{font-size:13px;font-weight:500;line-height:1.4;color:var(--text);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.t26-popular-meta{font-size:11px;color:var(--muted);margin-top:2px}

/* ---- BREADCRUMB ---- */
.t26-breadcrumb{max-width:1200px;margin:12px auto 0;padding:0 16px;display:flex;align-items:center;flex-wrap:wrap;gap:4px;font-size:12px;color:var(--muted)}
.t26-breadcrumb a{color:var(--muted)}
.t26-breadcrumb a:hover{color:var(--blue)}
.t26-breadcrumb .sep{color:var(--pale)}
.t26-breadcrumb .current{color:var(--body);font-weight:500}

/* ---- ARTICLE DETAIL ---- */
.t26-article{background:var(--white);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow-sm)}
.t26-article-title{font-size:24px;font-weight:700;line-height:1.3;color:var(--text);margin-bottom:14px}
.t26-article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.t26-author-row{display:flex;align-items:center;gap:8px}
.t26-author-avatar{width:34px;height:34px;border-radius:50%;overflow:hidden;background:var(--border);flex-shrink:0}
.t26-author-avatar img{width:100%;height:100%;object-fit:cover}
.t26-author-name{font-size:13px;font-weight:600;color:var(--text)}
.t26-author-verified{color:#1d9bf0;font-size:12px;margin-left:2px}
.t26-article-date{font-size:12px;color:var(--muted)}
.t26-article-readcount{font-size:12px;color:var(--muted);display:flex;align-items:center;gap:3px}
.t26-share-row{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px}
.t26-share-btn{display:flex;align-items:center;gap:5px;padding:6px 12px;border-radius:4px;font-size:12px;font-weight:600;color:#fff}
.t26-share-wa{background:#25d366}
.t26-share-fb{background:#1877f2}
.t26-share-tw{background:#000}
.t26-share-copy{background:var(--muted);cursor:pointer}
.t26-share-btn:hover{opacity:.88;color:#fff}
.t26-article-featured{margin-bottom:12px;border-radius:var(--radius);overflow:hidden}
.t26-article-featured img{width:100%;max-height:480px;object-fit:cover}
.t26-article-caption{font-size:11px;color:var(--muted);margin-top:4px;text-align:center;font-style:italic}
.t26-fontsize-toggle{display:flex;align-items:center;gap:8px;margin-bottom:16px;font-size:12px;color:var(--muted)}
.t26-fontsize-toggle .t26-range{accent-color:var(--blue)}
.t26-article-body{font-size:16px;line-height:1.8;color:var(--body)}
.t26-article-body h2{font-size:20px;margin:20px 0 10px;color:var(--text)}
.t26-article-body h3{font-size:17px;margin:16px 0 8px;color:var(--text)}
.t26-article-body p{margin-bottom:14px}
.t26-article-body img{border-radius:var(--radius);margin:12px 0}
.t26-article-body ul,.t26-article-body ol{margin:10px 0 10px 24px}
.t26-article-body li{margin-bottom:5px}
.t26-article-body blockquote{border-left:3px solid var(--blue);padding:10px 16px;background:var(--blue-light);margin:14px 0;font-style:italic;color:var(--body)}
.t26-article-body a{color:var(--blue);text-decoration:underline}

/* Also Read inline box */
.t26-alsoread{border-left:3px solid var(--blue);padding:10px 12px;margin:16px 0;background:var(--blue-light);border-radius:0 var(--radius) var(--radius) 0;display:flex;align-items:center;gap:10px}
.t26-alsoread-icon{font-size:14px;color:var(--blue);flex-shrink:0}
.t26-alsoread-text{flex:1;font-size:13px;font-weight:600;color:var(--text)}
.t26-alsoread-img{flex-shrink:0;width:60px;height:44px;border-radius:var(--radius);overflow:hidden}
.t26-alsoread-img img{width:100%;height:100%;object-fit:cover}

/* Tags */
.t26-article-tags{display:flex;flex-wrap:wrap;gap:6px;margin:18px 0;padding:14px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.t26-article-tag{font-size:12px;padding:4px 10px;border:1px solid var(--border);border-radius:20px;color:var(--body);transition:all .15s}
.t26-article-tag:hover{background:var(--blue);color:#fff;border-color:var(--blue)}

/* Editors box */
.t26-editors-box{display:flex;align-items:center;gap:10px;padding:12px 0;border-bottom:1px solid var(--border);margin-bottom:16px}
.t26-editors-avatar{width:36px;height:36px;border-radius:50%;overflow:hidden;background:var(--border)}
.t26-editors-avatar img{width:100%;height:100%;object-fit:cover}
.t26-editors-name{font-size:13px;font-weight:600;color:var(--text)}
.t26-editors-role{font-size:11px;color:var(--muted)}
.t26-editors-divider{flex:1;height:1px;background:var(--border)}

/* Other Latest (2-col text) */
.t26-other-latest{display:grid;grid-template-columns:1fr 1fr;gap:0}
.t26-other-item{padding:8px 0;border-bottom:1px solid var(--border);padding-right:8px}
.t26-other-item:nth-child(even){padding-right:0;padding-left:8px;border-left:1px solid var(--border)}
.t26-other-item-badge{margin-bottom:3px}
.t26-other-item-title{font-size:13px;font-weight:500;line-height:1.4;color:var(--text)}
.t26-other-item-title:hover{color:var(--blue)}

/* Most Viewed grid */
.t26-most-viewed-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.t26-mv-item{display:flex;gap:8px;align-items:flex-start}
.t26-mv-img{flex-shrink:0;width:70px;height:52px;border-radius:var(--radius);overflow:hidden;background:var(--border)}
.t26-mv-img img{width:100%;height:100%;object-fit:cover}
.t26-mv-body{flex:1;min-width:0}
.t26-mv-badge{margin-bottom:2px}
.t26-mv-title{font-size:12px;font-weight:500;line-height:1.35;color:var(--text);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.t26-mv-meta{font-size:10px;color:var(--muted);margin-top:2px}

/* ---- CATEGORY / TAG PAGE ---- */
.t26-page-title{font-size:22px;font-weight:700;color:var(--text);text-align:center;margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--blue)}
.t26-cat-list{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-sm);overflow:hidden}
.t26-cat-item{display:flex;gap:12px;align-items:flex-start;padding:12px;border-bottom:1px solid var(--border)}
.t26-cat-item:last-child{border-bottom:none}
.t26-cat-item:hover{background:#fafafa}
.t26-cat-thumb{flex-shrink:0;width:90px;height:68px;border-radius:var(--radius);overflow:hidden;background:var(--border)}
.t26-cat-thumb img{width:100%;height:100%;object-fit:cover}
.t26-cat-body{flex:1;min-width:0}
.t26-cat-title{font-size:15px;font-weight:600;line-height:1.4;color:var(--text);margin-bottom:4px}
.t26-cat-title:hover{color:var(--blue)}
.t26-cat-meta{font-size:12px;color:var(--muted)}

/* ---- PAGINATION ---- */
.t26-pagination{display:flex;align-items:center;justify-content:center;gap:4px;padding:20px 0}
.t26-page-btn{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:var(--radius);font-size:13px;font-weight:600;color:var(--body);border:1px solid var(--border);background:var(--white);transition:all .15s}
.t26-page-btn:hover{border-color:var(--blue);color:var(--blue)}
.t26-page-btn.active{background:var(--blue);color:#fff;border-color:var(--blue)}
.t26-page-btn.disabled{opacity:.4;pointer-events:none}

/* ---- STATIC PAGE ---- */
.t26-page-content{max-width:780px;margin:0 auto;background:var(--white);border-radius:var(--radius);padding:24px;box-shadow:var(--shadow-sm)}
.t26-page-content h1{font-size:26px;font-weight:700;text-align:center;margin-bottom:16px;color:var(--text)}
.t26-page-content h2{font-size:18px;font-weight:700;margin:20px 0 8px;color:var(--text)}
.t26-page-content p{margin-bottom:12px;line-height:1.75;color:var(--body)}
.t26-page-content ul,.t26-page-content ol{margin:8px 0 12px 22px}
.t26-page-content li{margin-bottom:5px}
.t26-page-content a{color:var(--blue);text-decoration:underline}

/* ---- AUTHOR PAGE ---- */
.t26-author-box{background:var(--white);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow-sm);display:flex;gap:16px;align-items:center;margin-bottom:16px}
.t26-author-box-avatar{width:72px;height:72px;border-radius:50%;overflow:hidden;background:var(--border);flex-shrink:0}
.t26-author-box-avatar img{width:100%;height:100%;object-fit:cover}
.t26-author-box-name{font-size:20px;font-weight:700;margin-bottom:4px}
.t26-author-box-role{font-size:13px;color:var(--muted);margin-bottom:6px}
.t26-author-box-bio{font-size:14px;color:var(--body);line-height:1.6}

/* ---- FOOTER ---- */
.t26-footer{background:var(--white);border-top:2px solid var(--blue);margin-top:40px;padding:28px 0 16px}
.t26-footer-inner{max-width:1200px;margin:0 auto;padding:0 16px;display:grid;grid-template-columns:220px 1fr 1fr;gap:28px}
.t26-footer-brand .t26-logo-text{font-size:20px}
.t26-footer-social{display:flex;gap:6px;margin:10px 0}
.t26-footer-copy{font-size:11px;color:var(--muted);margin-top:8px;line-height:1.5}
.t26-footer-col h4{font-size:14px;font-weight:700;color:var(--text);margin-bottom:10px;padding-bottom:6px;border-bottom:1px solid var(--border)}
.t26-footer-links{display:grid;grid-template-columns:1fr 1fr;gap:4px 12px}
.t26-footer-links a{font-size:13px;color:var(--body);line-height:1.8}
.t26-footer-links a:hover{color:var(--blue)}
.t26-footer-links-single a{display:block;font-size:13px;color:var(--body);line-height:1.9}
.t26-footer-links-single a:hover{color:var(--blue)}
.t26-footer-bottom{max-width:1200px;margin:16px auto 0;padding:12px 16px 0;border-top:1px solid var(--border);text-align:center;font-size:11px;color:var(--pale)}

/* ---- SEARCH FORM (in-page) ---- */
.t26-search-header{text-align:center;margin-bottom:20px}
.t26-search-header h1{font-size:18px;color:var(--muted);font-weight:400;margin-bottom:12px}
.t26-search-header h1 strong{color:var(--text)}
.t26-search-form{display:flex;max-width:520px;margin:0 auto;border:2px solid var(--blue);border-radius:4px;overflow:hidden}
.t26-search-form input{flex:1;border:none;padding:10px 16px;font-size:15px;outline:none}
.t26-search-form button{padding:10px 20px;background:var(--blue);color:#fff;font-size:14px;font-weight:600}
.t26-no-result{text-align:center;padding:40px 0;color:var(--muted)}

/* ---- MOBILE NAV DRAWER ---- */
.t26-drawer-bg{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1998}
.t26-drawer{position:fixed;top:0;left:-280px;width:280px;height:100%;background:var(--white);z-index:1999;overflow-y:auto;transition:left .3s ease;box-shadow:var(--shadow-md)}
.t26-drawer.open{left:0}
.t26-drawer-head{padding:14px 16px;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:space-between}
.t26-drawer-head h3{font-size:16px}
.t26-drawer-close{font-size:20px;background:none;border:none;color:#fff;cursor:pointer}
.t26-drawer-nav a{display:block;padding:12px 16px;border-bottom:1px solid var(--border);font-size:14px;color:var(--body)}
.t26-drawer-nav a:hover{background:var(--blue-light);color:var(--blue)}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px){
    .t26-wrap{grid-template-columns:1fr;gap:16px}
    .t26-sidebar{display:none}
    .t26-grid-3{grid-template-columns:repeat(2,1fr)}
    .t26-footer-inner{grid-template-columns:1fr 1fr;gap:20px}
    .t26-footer-brand{grid-column:1/-1}
}
@media(max-width:768px){
    .t26-header-inner{flex-wrap:wrap;gap:8px}
    .t26-search{order:3;max-width:100%;width:100%}
    .t26-hero-slide img{height:240px}
    .t26-hero-title{font-size:16px}
    .t26-grid-3,.t26-grid-4{grid-template-columns:repeat(2,1fr)}
    .t26-grid-2{grid-template-columns:1fr}
    .t26-other-latest{grid-template-columns:1fr}
    .t26-other-item:nth-child(even){padding-left:0;border-left:none}
    .t26-most-viewed-grid{grid-template-columns:1fr}
    .t26-article-title{font-size:19px}
    .t26-footer-inner{grid-template-columns:1fr}
    .t26-footer-brand{grid-column:auto}
}
@media(max-width:480px){
    .t26-grid-3,.t26-grid-4{grid-template-columns:1fr}
    .t26-post-row-img{width:80px;height:60px}
    .t26-post-row-title{font-size:14px}
}

/* ============================================================
   Theme 2026 targeted polish: header, search, nav color, width
   ============================================================ */
body.theme-2026{
  --t26-layout-width:1070px;
  --t26-main-width:740px;
  --t26-sidebar-width:300px;
  --t26-gap:30px;
}
body.theme-2026 .t26-header-inner,
body.theme-2026 .t26-nav-inner,
body.theme-2026 .t26-footer-inner,
body.theme-2026 .t26-footer-bottom,
body.theme-2026 .t26-container{max-width:var(--t26-layout-width)}
body.theme-2026 .t26-header-inner{padding:10px 0;gap:14px;min-height:62px}
body.theme-2026 .t26-menu-btn{width:42px;height:42px;flex:0 0 42px;padding:0;border-radius:12px;background:var(--blue);color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 8px 18px rgba(0,0,0,.12);transition:transform .15s,box-shadow .15s,background .15s}
body.theme-2026 .t26-menu-btn:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.16);color:#fff}
body.theme-2026 .t26-burger-lines{display:flex;flex-direction:column;gap:4px;width:19px;height:auto;line-height:1}
body.theme-2026 .t26-burger-lines i{display:block;width:19px;height:2px;border-radius:999px;background:#fff}
body.theme-2026 .t26-logo{flex:0 0 auto;min-width:0}
body.theme-2026 .t26-logo img{max-height:38px;width:auto}
body.theme-2026 .t26-social{display:none!important}
body.theme-2026 .t26-search{position:relative;flex:0 1 270px;max-width:270px;margin-left:auto;margin-right:0}
body.theme-2026 .t26-search form{height:36px;border:1px solid var(--border);border-radius:6px;background:#fff;overflow:hidden;box-shadow:none}
body.theme-2026 .t26-search input{padding:7px 10px;font-size:13px;color:var(--body)}
body.theme-2026 .t26-search button.t26-search-submit{width:38px;min-width:38px;padding:0;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center}
body.theme-2026 .t26-search button.t26-search-submit:hover{background:var(--blue-dark);color:#fff}
body.theme-2026 .t26-search-toggle{display:none}
body.theme-2026 .t26-nav{background:var(--blue)!important;border-top:1px solid rgba(255,255,255,.16)}
body.theme-2026 .t26-nav a:hover,
body.theme-2026 .t26-nav a.active{background:var(--blue-dark)!important;color:#fff;opacity:1}
body.theme-2026 .t26-wrap{max-width:var(--t26-layout-width);grid-template-columns:var(--t26-main-width) var(--t26-sidebar-width);gap:var(--t26-gap);padding-left:0;padding-right:0}
body.theme-2026 .t26-wrap-full{max-width:var(--t26-layout-width);padding-left:0;padding-right:0}
body.theme-2026 .t26-main{min-width:0;width:100%}
body.theme-2026 .t26-sidebar{width:var(--t26-sidebar-width);min-width:0}
body.theme-2026 .t26-latest-button{padding-top:18px}
body.theme-2026 .t26-latest-button a{min-width:150px;text-align:center}

@media(max-width:1110px){
  body.theme-2026 .t26-header-inner,
  body.theme-2026 .t26-nav-inner,
  body.theme-2026 .t26-footer-inner,
  body.theme-2026 .t26-footer-bottom,
  body.theme-2026 .t26-container{max-width:calc(100% - 32px)}
  body.theme-2026 .t26-wrap,
  body.theme-2026 .t26-wrap-full{max-width:calc(100% - 32px);padding-left:0;padding-right:0}
  body.theme-2026 .t26-wrap{grid-template-columns:minmax(0,1fr) var(--t26-sidebar-width);gap:24px}
}
@media(max-width:1024px){
  body.theme-2026 .t26-wrap{grid-template-columns:1fr;gap:16px}
  body.theme-2026 .t26-sidebar{display:none;width:auto}
}
@media(max-width:768px){
  body.theme-2026 .t26-header-inner{flex-wrap:nowrap;gap:10px;min-height:56px;padding:8px 0}
  body.theme-2026 .t26-menu-btn{width:40px;height:40px;flex-basis:40px;border-radius:11px}
  body.theme-2026 .t26-logo{flex:1 1 auto}
  body.theme-2026 .t26-logo img{max-height:34px}
  body.theme-2026 .t26-search{order:0;flex:0 0 auto;width:auto;max-width:none;margin-left:0}
  body.theme-2026 .t26-search-toggle{width:40px;height:40px;border:1px solid var(--border);border-radius:10px;background:#fff;color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:17px;box-shadow:0 6px 16px rgba(0,0,0,.08)}
  body.theme-2026 .t26-search form{display:none;position:absolute;right:0;top:calc(100% + 8px);width:min(86vw,330px);height:40px;z-index:1200;box-shadow:0 14px 35px rgba(15,23,42,.18);border-color:rgba(15,23,42,.12)}
  body.theme-2026 .t26-search.open form{display:flex}
  body.theme-2026 .t26-search.open .t26-search-toggle{background:var(--blue);color:#fff;border-color:var(--blue)}
  body.theme-2026 .t26-search input{min-width:0;font-size:14px}
}
@media(max-width:480px){
  body.theme-2026 .t26-header-inner,
  body.theme-2026 .t26-nav-inner,
  body.theme-2026 .t26-wrap,
  body.theme-2026 .t26-wrap-full,
  body.theme-2026 .t26-footer-inner,
  body.theme-2026 .t26-footer-bottom{max-width:calc(100% - 24px)}
}


/* ============================================================
   Theme 2026 refinement: compact burger, working search, date meta, sidebar
   Patch scope: body.theme-2026 only
   ============================================================ */
body.theme-2026 .t26-header-inner{min-height:58px;padding-top:9px;padding-bottom:9px}
body.theme-2026 .t26-menu-btn{
  width:38px;height:38px;flex:0 0 38px;
  border-radius:6px;
  background:var(--blue);
  box-shadow:none;
  border:1px solid rgba(0,0,0,.04);
}
body.theme-2026 .t26-menu-btn:hover{
  background:var(--blue-dark);
  transform:none;
  box-shadow:none;
}
body.theme-2026 .t26-menu-btn:focus-visible,
body.theme-2026 .t26-search-toggle:focus-visible,
body.theme-2026 .t26-search-submit:focus-visible{
  outline:2px solid rgba(29,113,184,.28);
  outline-offset:2px;
}
body.theme-2026 .t26-burger-lines{width:17px;gap:3px}
body.theme-2026 .t26-burger-lines i{width:17px;height:2px;border-radius:2px}
body.theme-2026 .t26-burger-lines i:nth-child(2){width:13px;margin-left:4px}

body.theme-2026 .t26-search{
  position:relative;
  flex:0 1 292px;
  width:292px;
  max-width:292px;
  margin-left:auto;
}
body.theme-2026 .t26-search form{
  display:flex;
  align-items:center;
  width:100%;
  height:38px;
  border:1px solid #d9dee6;
  border-radius:6px;
  background:#fff;
  overflow:hidden;
  box-shadow:none;
  transition:border-color .15s, box-shadow .15s;
}
body.theme-2026 .t26-search form:focus-within{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,113,184,.08);
}
body.theme-2026 .t26-search input{
  flex:1 1 auto;
  min-width:0;
  height:100%;
  padding:8px 10px 8px 12px;
  font-size:13px;
  color:var(--text);
  background:#fff;
}
body.theme-2026 .t26-search input::placeholder{color:#8a94a3}
body.theme-2026 .t26-search .t26-search-submit,
body.theme-2026 .t26-search button.t26-search-submit{
  width:40px;min-width:40px;height:100%;
  padding:0;
  border-left:1px solid #edf0f4;
  background:#fff;
  color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;
}
body.theme-2026 .t26-search .t26-search-submit:hover,
body.theme-2026 .t26-search button.t26-search-submit:hover{
  background:#f8fafc;
  color:var(--blue-dark);
}
body.theme-2026 .t26-search-toggle{display:none}
body.theme-2026 .t26-nav{background:var(--blue)!important}
body.theme-2026 .t26-nav a:hover,
body.theme-2026 .t26-nav a.active{background:var(--blue-dark)!important;color:#fff}

body.theme-2026 .t26-post-row-meta time,
body.theme-2026 .t26-popular-meta time{font-style:normal;color:inherit}
body.theme-2026 .t26-post-row-meta{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#7b8492;
}
body.theme-2026 .t26-post-row-meta::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--blue);
  opacity:.55;
}

body.theme-2026 .t26-sidebar{position:relative}
body.theme-2026 .t26-sidebar-box{
  border:1px solid #e8ecf2;
  border-radius:8px;
  box-shadow:none;
  background:#fff;
  overflow:hidden;
  margin-bottom:16px;
}
body.theme-2026 .t26-sidebar-head{
  padding:11px 12px;
  border-bottom:1px solid #edf0f4;
  background:#fff;
  color:var(--text);
  font-size:13px;
  font-weight:800;
  letter-spacing:.01em;
}
body.theme-2026 .t26-sidebar-head::before{
  content:"";
  width:4px;height:18px;
  border-radius:2px;
  background:var(--blue);
  display:inline-block;
}
body.theme-2026 .t26-sidebar-body{padding:6px 12px 8px}
body.theme-2026 .t26-popular-item{
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid #f0f2f5;
}
body.theme-2026 .t26-popular-num{
  width:24px;height:24px;
  border-radius:6px;
  background:#f0f5fb;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
}
body.theme-2026 .t26-popular-num.top{
  background:var(--blue);
  color:#fff;
}
body.theme-2026 .t26-popular-title{
  font-size:13px;
  line-height:1.38;
  font-weight:650;
  color:var(--text);
}
body.theme-2026 .t26-popular-title:hover{color:var(--blue)}
body.theme-2026 .t26-popular-meta{
  display:block;
  margin-top:4px;
  font-size:11px;
  color:#8993a0;
}
body.theme-2026 .t26-sidebar .t26-badge{
  background:#f4f7fb;
  color:var(--blue);
  border:1px solid #e4eaf2;
  margin-bottom:4px;
}

@media(max-width:768px){
  body.theme-2026 .t26-header-inner{min-height:54px;gap:8px}
  body.theme-2026 .t26-menu-btn{width:36px;height:36px;flex-basis:36px;border-radius:6px}
  body.theme-2026 .t26-logo img{max-height:32px}
  body.theme-2026 .t26-search{order:0;flex:0 0 36px;width:36px;max-width:36px;margin-left:0}
  body.theme-2026 .t26-search-toggle{
    width:36px;height:36px;
    border:1px solid #d9dee6;
    border-radius:6px;
    background:#fff;
    color:var(--blue);
    display:flex;align-items:center;justify-content:center;
    font-size:15px;
    box-shadow:none;
  }
  body.theme-2026 .t26-search-toggle:hover,
  body.theme-2026 .t26-search.open .t26-search-toggle{
    background:#fff;
    color:var(--blue-dark);
    border-color:var(--blue);
  }
  body.theme-2026 .t26-search form{
    display:none;
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    width:min(88vw,340px);
    height:40px;
    z-index:1200;
    border-radius:6px;
    background:#fff;
    box-shadow:0 14px 32px rgba(15,23,42,.16);
  }
  body.theme-2026 .t26-search.open form{display:flex}
  body.theme-2026 .t26-search input{font-size:14px;padding-left:12px}
  body.theme-2026 .t26-search .t26-search-submit{width:42px;min-width:42px}
}

/* ===== THEME 2026 ACTIVE MOBILE OUTER GAP + DATE FIX ===== */
body.theme-2026 .t26-post-row-date,
body.theme-2026 .t26-post-row-meta.t26-post-row-date{
  display:block !important;
  margin-top:5px !important;
  color:#7b8492 !important;
  font-size:12px !important;
  line-height:1.35 !important;
}
body.theme-2026 .t26-post-row-date time{font-style:normal;color:inherit}
body.theme-2026 .t26-post-row-meta.t26-post-row-date::before{display:none!important;content:none!important}

@media(max-width:768px){
  body.theme-2026 .t26-wrap,
  body.theme-2026 .t26-wrap-full,
  body.theme-2026 .t26-breadcrumb{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  body.theme-2026 .t26-sec-head,
  body.theme-2026 .t26-page-title{
    margin-left:14px !important;
    margin-right:14px !important;
  }

  body.theme-2026 .t26-cat-list,
  body.theme-2026 .t26-article,
  body.theme-2026 .t26-page-content,
  body.theme-2026 .t26-static,
  body.theme-2026 .t26-tags-bar,
  body.theme-2026 .t26-hero,
  body.theme-2026 .t26-reco,
  body.theme-2026 .t26-loadmore{
    margin-left:0 !important;
    margin-right:0 !important;
  }

  body.theme-2026 .t26-post-row,
  body.theme-2026 .t26-cat-item{
    margin-left:0 !important;
    margin-right:0 !important;
    padding:12px 14px !important;
    gap:12px !important;
    border-radius:0 !important;
  }

  body.theme-2026 .t26-post-row-img{
    width:92px !important;
    height:68px !important;
    border-radius:4px !important;
  }

  body.theme-2026 .t26-post-row-title{
    font-size:14px !important;
    line-height:1.42 !important;
    margin-bottom:4px !important;
  }

  body.theme-2026 .t26-post-row-date,
  body.theme-2026 .t26-post-row-meta.t26-post-row-date{
    display:block !important;
    margin-top:4px !important;
    font-size:11.5px !important;
    line-height:1.35 !important;
    color:#7b8492 !important;
  }

  body.theme-2026 .t26-article,
  body.theme-2026 .t26-page-content,
  body.theme-2026 .t26-static{
    border-radius:0 !important;
    padding-left:14px !important;
    padding-right:14px !important;
  }
}
