/* ============================================================
   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 CUMULATIVE FINAL PATCH ===== */
body.theme-2026 .t26-header,body.theme-2026 header.t26-header{position:sticky!important;top:0!important;z-index:90!important;transform:none!important;will-change:auto!important}body.theme-2026 .t26-header.is-scrolled{box-shadow:0 2px 12px rgba(15,23,42,.08)}body.theme-2026 .t26-nav{z-index:80!important}body.theme-2026 .t26-search form{z-index:95!important}
body.theme-2026 .t26-drawer-bg{z-index:110!important;background:rgba(15,23,42,.42)!important}body.theme-2026 .t26-drawer{z-index:120!important;width:292px!important;max-width:86vw!important;left:-300px!important;overflow-y:auto!important;background:#fff!important;box-shadow:0 20px 44px rgba(15,23,42,.18)!important}body.theme-2026 .t26-drawer.open{left:0!important}body.theme-2026 .t26-drawer-head{min-height:58px!important;padding:10px 12px!important;background:#fff!important;color:var(--text)!important;border-bottom:1px solid #edf0f4!important}body.theme-2026 .t26-drawer-brand{display:flex!important;align-items:center!important;width:38px!important;height:38px!important;overflow:hidden!important;border-radius:8px!important;background:#f3f6fa!important;border:1px solid #e1e8f0!important}body.theme-2026 .t26-drawer-brand img{width:100%!important;height:100%!important;object-fit:contain!important;padding:3px!important}body.theme-2026 .t26-drawer-brand span{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--blue)}body.theme-2026 .t26-drawer-close{width:34px!important;height:34px!important;display:flex!important;align-items:center!important;justify-content:center!important;border:1px solid #dbe3ed!important;border-radius:6px!important;color:#1f2937!important;background:#fff!important;font-size:22px!important;line-height:1!important}body.theme-2026 .t26-drawer-section,body.theme-2026 .t26-drawer-pages{padding:10px 10px 0!important}body.theme-2026 .t26-drawer-section-title{font-size:11px!important;line-height:1!important;font-weight:800!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#7b8492!important;margin:0 0 7px!important}body.theme-2026 .t26-drawer-nav,body.theme-2026 .t26-drawer-page-list{display:grid!important;grid-template-columns:1fr 1fr!important;gap:6px!important}body.theme-2026 .t26-drawer-nav a,body.theme-2026 .t26-drawer-page-list a{display:flex!important;align-items:center!important;min-height:34px!important;padding:7px 9px!important;border:1px solid #e4e9f1!important;border-radius:5px!important;background:#fff!important;color:#28313d!important;font-size:12px!important;font-weight:650!important;line-height:1.25!important;overflow:hidden!important;text-overflow:ellipsis!important}body.theme-2026 .t26-drawer-nav a:hover,body.theme-2026 .t26-drawer-nav a.active,body.theme-2026 .t26-drawer-page-list a:hover{border-color:var(--blue)!important;color:var(--blue)!important;background:rgba(29,113,184,.045)!important}body.theme-2026 .t26-drawer-pages{padding-bottom:14px!important}
body.theme-2026 .t26-tags-bar{display:flex!important;align-items:center!important;flex-wrap:wrap!important;gap:8px!important;background:#fff!important;border:1px solid #e6ebf2!important;border-radius:8px!important;padding:10px 12px!important;box-shadow:none!important}body.theme-2026 .t26-tags-bar-label{font-size:12px!important;font-weight:800!important;color:#1f2937!important;margin-right:2px!important}body.theme-2026 .t26-tag-pill{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:28px!important;padding:4px 10px!important;border:1px solid #dbe3ed!important;border-radius:4px!important;background:#fff!important;color:#2c3642!important;font-size:12px!important;font-weight:650!important;line-height:1.2!important;transition:all .15s ease!important}body.theme-2026 .t26-tag-pill:hover{border-color:var(--blue)!important;color:var(--blue)!important;background:rgba(29,113,184,.04)!important}
body.theme-2026 .t26-sidebar-box{border:1px solid #e8ecf2!important;border-radius:8px!important;box-shadow:none!important;background:#fff!important}body.theme-2026 .t26-sidebar-head{padding:11px 12px!important;border-bottom:1px solid #edf0f4!important;font-size:14px!important;font-weight:700!important}body.theme-2026 .t26-sidebar-body{padding:10px 12px!important}body.theme-2026 .t26-popular-item{display:grid!important;grid-template-columns:24px minmax(0,1fr)!important;gap:10px!important;align-items:center!important;padding:9px 0!important;border-bottom:1px solid #edf0f4!important}body.theme-2026 .t26-popular-item.has-thumb{grid-template-columns:24px 68px minmax(0,1fr)!important}body.theme-2026 .t26-popular-item:last-child{border-bottom:none!important}body.theme-2026 .t26-popular-num{width:24px!important;height:24px!important;border-radius:4px!important;background:var(--blue)!important;color:#fff!important;font-size:12px!important;font-weight:800!important;display:flex!important;align-items:center!important;justify-content:center!important;line-height:1!important;margin:0!important}body.theme-2026 .t26-popular-num.top{background:var(--red)!important}body.theme-2026 .t26-popular-media{display:block!important;width:68px!important;height:52px!important;border-radius:4px!important;overflow:hidden!important;background:#eef2f7!important}body.theme-2026 .t26-popular-media img{width:100%!important;height:100%!important;object-fit:cover!important}body.theme-2026 .t26-popular-body{min-width:0!important}body.theme-2026 .t26-popular-body .t26-badge,body.theme-2026 .t26-popular-meta{display:none!important}body.theme-2026 .t26-popular-title{font-size:13px!important;font-weight:650!important;line-height:1.42!important;color:var(--text)!important;margin:0!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}
body.theme-2026 .t26-post-row-date,body.theme-2026 .t26-post-row-meta.t26-post-row-date,body.theme-2026 .t26-cat-meta.t26-post-row-date{display:block!important;margin-top:5px!important;color:#7b8492!important;font-size:12px!important;line-height:1.35!important;font-weight:400!important}body.theme-2026 .t26-post-row-date time,body.theme-2026 .t26-cat-meta time{font-style:normal;color:inherit}body.theme-2026 .t26-post-row-meta.t26-post-row-date:before,body.theme-2026 .t26-cat-meta.t26-post-row-date:before{display:none!important;content:none!important}
@media(max-width:768px){html,body.theme-2026{overflow-x:hidden!important}body.theme-2026{background:#fff!important}body.theme-2026 .t26-container,body.theme-2026 .t26-wrap,body.theme-2026 .t26-wrap-full,body.theme-2026 .t26-breadcrumb{width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important}body.theme-2026 .t26-wrap{display:block!important;margin-top:10px!important;margin-bottom:0!important}body.theme-2026 .t26-main{width:100%!important;max-width:100%!important;min-width:0!important}body.theme-2026 .t26-sec{margin:0 0 14px!important}body.theme-2026 .t26-sec-head{margin:12px 0 8px!important;padding:0 12px 8px!important;border-bottom-width:2px!important}body.theme-2026 .t26-page-title{margin:12px 0 10px!important;padding:0 12px 10px!important;text-align:left!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-search-header,body.theme-2026 .t26-author-box,body.theme-2026 .t26-no-result{width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;border-radius:0!important;box-shadow:none!important}body.theme-2026 .t26-cat-list{background:#fff!important;overflow:visible!important}body.theme-2026 .t26-post-row,body.theme-2026 .t26-cat-item{width:100%!important;margin:0!important;padding:10px 12px!important;gap:10px!important;border-radius:0!important;box-shadow:none!important;background:#fff!important;border-bottom:1px solid #e5e7eb!important;align-items:flex-start!important}body.theme-2026 .t26-post-row:last-child,body.theme-2026 .t26-cat-item:last-child{border-bottom:none!important}body.theme-2026 .t26-post-row-img,body.theme-2026 .t26-cat-thumb{width:86px!important;height:64px!important;min-width:86px!important;flex:0 0 86px!important;border-radius:4px!important}body.theme-2026 .t26-post-row-body,body.theme-2026 .t26-cat-body{min-width:0!important;flex:1 1 auto!important}body.theme-2026 .t26-post-row-title,body.theme-2026 .t26-cat-title{font-size:14px!important;line-height:1.42!important;margin:0 0 4px!important}body.theme-2026 .t26-post-row-date,body.theme-2026 .t26-post-row-meta.t26-post-row-date,body.theme-2026 .t26-cat-meta,body.theme-2026 .t26-cat-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-hero,body.theme-2026 .t26-tags-bar,body.theme-2026 .t26-reco,body.theme-2026 .t26-grid-2,body.theme-2026 .t26-grid-3,body.theme-2026 .t26-grid-4,body.theme-2026 .t26-loadmore,body.theme-2026 .t26-pagination{width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important}body.theme-2026 .t26-hero{border-radius:0!important}body.theme-2026 .t26-tags-bar{padding:8px 12px!important;gap:6px!important;border-radius:0!important}body.theme-2026 .t26-tag-pill{min-height:26px!important;padding:3px 9px!important;font-size:11.5px!important;border-radius:3px!important}body.theme-2026 .t26-reco-track{padding-left:12px!important;padding-right:12px!important;gap:10px!important}body.theme-2026 .t26-reco-item{width:190px!important;border-radius:4px!important}body.theme-2026 .t26-article,body.theme-2026 .t26-page-content,body.theme-2026 .t26-static,body.theme-2026 .t26-search-header,body.theme-2026 .t26-author-box{padding-left:12px!important;padding-right:12px!important}body.theme-2026 .t26-breadcrumb{padding:8px 12px 0!important}body.theme-2026 .t26-sidebar{display:none!important}body.theme-2026 .t26-drawer{width:286px!important;max-width:88vw!important}body.theme-2026 .t26-drawer-nav,body.theme-2026 .t26-drawer-page-list{grid-template-columns:1fr 1fr!important;gap:5px!important}body.theme-2026 .t26-drawer-nav a,body.theme-2026 .t26-drawer-page-list a{min-height:32px!important;padding:6px 8px!important;font-size:11.8px!important}}

/* ===== THEME 2026 ANCHOR FIXED HEADER SPACER FINAL ===== */
body.theme-2026 .t26-header,
body.theme-2026 header.t26-header{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  width:100%!important;
  z-index:90!important;
  transform:none!important;
  will-change:auto!important;
}
body.theme-2026 .t26-header-spacer{
  display:block!important;
  width:100%!important;
  height:var(--t26-header-height,96px)!important;
  min-height:var(--t26-header-height,96px)!important;
  flex:0 0 auto!important;
  pointer-events:none!important;
  clear:both!important;
}
body.theme-2026 .t26-nav{z-index:80!important}
body.theme-2026 .t26-search form{z-index:95!important}
body.theme-2026 .t26-drawer,
body.theme-2026 .t26-drawer-bg{z-index:120!important}
body.theme-2026 .sticky,
body.theme-2026 .is-sticky,
body.theme-2026 .site-sticky,
body.theme-2026 .t26-sticky{z-index:90!important;top:0!important}
body.theme-2026 .t26-header[style]{top:0!important}
@media(max-width:768px){
  body.theme-2026 .t26-header-spacer{
    height:var(--t26-header-height,100px)!important;
    min-height:var(--t26-header-height,100px)!important;
  }
}

/* ===== THEME 2026 ARTICLE DETAIL REVISION FINAL ===== */
body.theme-2026.article-page--2026 .t26-breadcrumb{
  max-width:var(--t26-layout-width,1070px)!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.theme-2026.article-page--2026 .t26-wrap{
  max-width:var(--t26-layout-width,1070px)!important;
  grid-template-columns:var(--t26-main-width,740px) var(--t26-sidebar-width,300px)!important;
  gap:var(--t26-gap,30px)!important;
}
body.theme-2026 .t26-article{
  box-shadow:none!important;
  border:1px solid #e7ecf2!important;
}
body.theme-2026 .t26-article-meta{
  justify-content:flex-start!important;
  gap:12px!important;
  margin-bottom:12px!important;
  padding-bottom:12px!important;
}
body.theme-2026 .t26-article-readcount{
  display:none!important;
}
body.theme-2026 .t26-author-initial{
  width:100%;height:100%;
  background:var(--blue);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:800;color:#fff;
}
body.theme-2026 .t26-article-featured{
  width:100%!important;
  aspect-ratio:16/9!important;
  background:#eef2f7!important;
  border-radius:6px!important;
  overflow:hidden!important;
  margin:0 0 14px!important;
}
body.theme-2026 .t26-article-featured img{
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
}
body.theme-2026 .t26-article-caption{
  position:relative;
  background:#fff;
  margin-top:0!important;
  padding:6px 8px;
}
body.theme-2026 .t26-fontsize-toggle{
  justify-content:center!important;
  margin:12px auto 16px!important;
  padding:8px 10px!important;
  width:max-content!important;
  max-width:100%!important;
  border:1px solid #e5eaf1!important;
  border-radius:6px!important;
  background:#fff!important;
}
body.theme-2026 .t26-fontsize-toggle .t26-range{
  width:120px!important;
}
body.theme-2026 .t26-font-a-small{font-size:11px}
body.theme-2026 .t26-font-a-big{font-size:15px}
body.theme-2026 .t26-font-label{font-size:11px;color:var(--muted);margin-left:4px}
body.theme-2026 .t26-article-body{
  font-size:16px!important;
  line-height:1.68!important;
  color:#2f3742!important;
}
body.theme-2026 .t26-article-body p{
  margin-bottom:11px!important;
}
body.theme-2026 .t26-article-body h2{
  line-height:1.35!important;
  margin:18px 0 9px!important;
}
body.theme-2026 .t26-article-body h3{
  line-height:1.35!important;
  margin:15px 0 8px!important;
}
body.theme-2026 .t26-ad-slot{
  margin:14px 0!important;
  min-height:1px;
}
body.theme-2026 .t26-article-pagination{
  margin:18px 0!important;
  padding:12px!important;
  border:1px solid #e5eaf1!important;
  border-radius:8px!important;
  background:#f9fbfd!important;
  text-align:center!important;
}
body.theme-2026 .t26-page-count{
  font-size:12px!important;
  font-weight:700!important;
  color:#6b7280!important;
  margin-bottom:8px!important;
}
body.theme-2026 .t26-article-pagination .pagination,
body.theme-2026 .t26-article-pagination ul{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  gap:6px!important;
  flex-wrap:wrap!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
body.theme-2026 .t26-article-pagination a,
body.theme-2026 .t26-article-pagination span,
body.theme-2026 .t26-article-pagination li a,
body.theme-2026 .t26-article-pagination li span{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:34px!important;
  height:34px!important;
  padding:0 10px!important;
  border:1px solid #d9e1ec!important;
  border-radius:6px!important;
  background:#fff!important;
  color:#2f3742!important;
  font-size:13px!important;
  font-weight:700!important;
}
body.theme-2026 .t26-article-pagination .active a,
body.theme-2026 .t26-article-pagination .active span,
body.theme-2026 .t26-article-pagination a:hover{
  background:var(--blue)!important;
  border-color:var(--blue)!important;
  color:#fff!important;
}
body.theme-2026 .t26-editors-box{
  display:flex!important;
  align-items:flex-start!important;
  gap:12px!important;
  padding:14px!important;
  margin:16px 0!important;
  border:1px solid #e5eaf1!important;
  border-radius:8px!important;
  background:#fbfcfe!important;
}
body.theme-2026 .t26-editors-avatar{
  flex:0 0 38px!important;
  width:38px!important;
  height:38px!important;
  border-radius:8px!important;
}
body.theme-2026 .t26-editors-content{min-width:0;flex:1}
body.theme-2026 .t26-editors-label{
  font-size:11px!important;
  font-weight:800!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
  color:var(--blue)!important;
  margin-bottom:4px!important;
}
body.theme-2026 .t26-editors-name{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px 12px!important;
  font-size:13px!important;
  font-weight:700!important;
  color:#1f2937!important;
  margin-bottom:8px!important;
}
body.theme-2026 .t26-editors-tags{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px!important;
}
body.theme-2026 .t26-editors-tags a{
  display:inline-flex!important;
  align-items:center!important;
  min-height:26px!important;
  padding:3px 9px!important;
  border:1px solid #dbe3ed!important;
  border-radius:4px!important;
  background:#fff!important;
  color:#2f3742!important;
  font-size:12px!important;
  font-weight:650!important;
}
body.theme-2026 .t26-editors-tags a:hover{
  border-color:var(--blue)!important;
  color:var(--blue)!important;
}
body.theme-2026 .t26-related-section,
body.theme-2026 .t26-other-section{
  margin-top:16px!important;
  background:#fff!important;
  border:1px solid #e7ecf2!important;
  border-radius:8px!important;
  padding:14px!important;
  box-shadow:none!important;
}
body.theme-2026 .t26-related-list{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:0 14px!important;
}
body.theme-2026 .t26-related-item{
  display:flex!important;
  gap:8px!important;
  align-items:flex-start!important;
  padding:9px 0!important;
  border-bottom:1px solid #edf0f4!important;
}
body.theme-2026 .t26-related-dot{
  width:6px!important;
  height:6px!important;
  margin-top:8px!important;
  border-radius:2px!important;
  background:var(--blue)!important;
  flex:0 0 6px!important;
}
body.theme-2026 .t26-related-title{
  font-size:13px!important;
  font-weight:650!important;
  line-height:1.45!important;
  color:#1f2937!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
}
body.theme-2026 .t26-related-item:hover .t26-related-title{
  color:var(--blue)!important;
}
@media(max-width:768px){
  body.theme-2026.article-page--2026 .t26-breadcrumb{
    max-width:100%!important;
    padding:8px 12px 0!important;
  }
  body.theme-2026.article-page--2026 .t26-wrap{
    display:block!important;
    max-width:100%!important;
  }
  body.theme-2026 .t26-article{
    border-left:none!important;
    border-right:none!important;
    border-radius:0!important;
  }
  body.theme-2026 .t26-article-featured{
    border-radius:0!important;
    margin-left:-12px!important;
    margin-right:-12px!important;
    width:calc(100% + 24px)!important;
  }
  body.theme-2026 .t26-article-body{
    font-size:16px!important;
    line-height:1.66!important;
  }
  body.theme-2026 .t26-related-section,
  body.theme-2026 .t26-other-section{
    border-left:none!important;
    border-right:none!important;
    border-radius:0!important;
    padding:12px!important;
  }
  body.theme-2026 .t26-related-list{
    grid-template-columns:1fr!important;
  }
  body.theme-2026 .t26-fontsize-toggle{
    width:100%!important;
  }
}

/* ===== THEME 2026 ARTICLE DETAIL REFINE 2 ===== */
body.theme-2026.article-page--2026 .t26-main{
  padding-top:0!important;
}
body.theme-2026.article-page--2026 .t26-article{
  padding-top:14px!important;
}
body.theme-2026 .t26-article-title{
  margin-top:0!important;
  padding-top:0!important;
  margin-bottom:10px!important;
}
body.theme-2026 .t26-author-link{
  color:var(--text)!important;
  text-decoration:none!important;
}
body.theme-2026 .t26-author-link:hover{
  color:var(--blue)!important;
}
body.theme-2026 .t26-share-row{
  gap:6px!important;
  margin-bottom:12px!important;
}
body.theme-2026 .t26-share-btn{
  min-height:30px!important;
  padding:5px 9px!important;
  border-radius:5px!important;
  font-size:12px!important;
  font-weight:750!important;
  line-height:1!important;
}
body.theme-2026 .t26-share-icon{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:16px!important;
  height:16px!important;
  font-size:10px!important;
  font-weight:900!important;
  line-height:1!important;
}
body.theme-2026 .t26-share-wa .t26-share-icon{
  font-size:9px!important;
}
body.theme-2026 .t26-share-fb .t26-share-icon{
  font-size:14px!important;
  font-family:Arial, sans-serif!important;
}
body.theme-2026 .t26-share-tw .t26-share-icon{
  font-size:13px!important;
}
body.theme-2026 .t26-share-copy .t26-share-icon{
  font-size:12px!important;
}
body.theme-2026 .t26-article-body{
  line-height:1.4!important;
}
body.theme-2026 .t26-article-body p{
  margin-bottom:9px!important;
}
body.theme-2026 .t26-article-body li{
  margin-bottom:5px!important;
}
body.theme-2026 .t26-article-body h2,
body.theme-2026 .t26-article-body h3{
  line-height:1.25!important;
}

/* Related Post kembali visual seperti Most Viewed: pakai gambar, compact, 6 item */
body.theme-2026 .t26-related-list{
  display:none!important;
}
body.theme-2026 .t26-related-grid{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:12px!important;
}
body.theme-2026 .t26-related-card{
  display:block!important;
  background:#fff!important;
  border:1px solid #e7ecf2!important;
  border-radius:7px!important;
  overflow:hidden!important;
  box-shadow:none!important;
  transition:border-color .15s ease, transform .15s ease!important;
}
body.theme-2026 .t26-related-card:hover{
  border-color:var(--blue)!important;
  transform:translateY(-1px)!important;
}
body.theme-2026 .t26-related-thumb{
  display:block!important;
  width:100%!important;
  aspect-ratio:5/3!important;
  background:#eef2f7!important;
  overflow:hidden!important;
}
body.theme-2026 .t26-related-thumb img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  transition:transform .25s ease!important;
}
body.theme-2026 .t26-related-card:hover .t26-related-thumb img{
  transform:scale(1.035)!important;
}
body.theme-2026 .t26-related-card-title{
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  padding:8px 9px 9px!important;
  min-height:47px!important;
  color:#1f2937!important;
  font-size:13px!important;
  font-weight:700!important;
  line-height:1.35!important;
}
body.theme-2026 .t26-related-card:hover .t26-related-card-title{
  color:var(--blue)!important;
}
@media(max-width:768px){
  body.theme-2026.article-page--2026 .t26-article{
    padding-top:12px!important;
  }
  body.theme-2026 .t26-share-row{
    gap:5px!important;
  }
  body.theme-2026 .t26-share-btn{
    min-height:29px!important;
    padding:5px 8px!important;
    font-size:11.5px!important;
  }
  body.theme-2026 .t26-related-grid{
    grid-template-columns:1fr 1fr!important;
    gap:9px!important;
  }
  body.theme-2026 .t26-related-card-title{
    font-size:12.5px!important;
    padding:7px 8px 8px!important;
  }
}

/* ===== THEME 2026 DETAIL UI + PAGINATION FINAL ===== */
/* Text size works with JS setProperty('important') */
body.theme-2026 .t26-article-body{
  font-size:var(--t26-article-font-size,16px)!important;
  line-height:1.4!important;
}

/* Compact share buttons with proper SVG icons */
body.theme-2026 .t26-share-row{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  margin-bottom:12px!important;
}
body.theme-2026 .t26-share-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:5px!important;
  min-height:30px!important;
  padding:5px 8px!important;
  border-radius:5px!important;
  font-size:11.5px!important;
  font-weight:750!important;
  line-height:1!important;
  white-space:nowrap!important;
}
body.theme-2026 .t26-share-icon{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:15px!important;
  height:15px!important;
  flex:0 0 15px!important;
  line-height:1!important;
}
body.theme-2026 .t26-share-icon svg{
  display:block!important;
  width:15px!important;
  height:15px!important;
  fill:currentColor!important;
}
body.theme-2026 .t26-share-wa{background:#20b35a!important;color:#fff!important}
body.theme-2026 .t26-share-fb{background:#1877f2!important;color:#fff!important}
body.theme-2026 .t26-share-tw{background:#111!important;color:#fff!important}
body.theme-2026 .t26-share-copy{background:#64748b!important;color:#fff!important}
body.theme-2026 .t26-share-copy.copied{background:#16a34a!important;color:#fff!important}

/* Font size control: clearer center + active value */
body.theme-2026 .t26-fontsize-toggle{
  gap:8px!important;
}
body.theme-2026 .t26-font-label{
  margin-left:2px!important;
}
body.theme-2026 #t26-fontsize-value{
  font-size:11px!important;
  font-weight:800!important;
  color:var(--blue)!important;
  min-width:30px!important;
}

/* Related Post: more compact visual card with smaller image */
body.theme-2026 .t26-related-section{
  padding:12px!important;
}
body.theme-2026 .t26-related-grid{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:9px!important;
}
body.theme-2026 .t26-related-card{
  display:grid!important;
  grid-template-columns:82px minmax(0,1fr)!important;
  align-items:center!important;
  gap:8px!important;
  min-height:64px!important;
  padding:6px!important;
  background:#fff!important;
  border:1px solid #e7ecf2!important;
  border-radius:6px!important;
  overflow:hidden!important;
  box-shadow:none!important;
  transition:border-color .15s ease, background .15s ease!important;
}
body.theme-2026 .t26-related-card:hover{
  border-color:var(--blue)!important;
  background:#fbfdff!important;
  transform:none!important;
}
body.theme-2026 .t26-related-thumb{
  display:block!important;
  width:82px!important;
  height:52px!important;
  aspect-ratio:auto!important;
  border-radius:4px!important;
  overflow:hidden!important;
  background:#eef2f7!important;
}
body.theme-2026 .t26-related-thumb img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  transition:transform .25s ease!important;
}
body.theme-2026 .t26-related-card-title{
  padding:0!important;
  min-height:0!important;
  font-size:12.5px!important;
  font-weight:700!important;
  line-height:1.35!important;
  color:#1f2937!important;
  display:-webkit-box!important;
  -webkit-line-clamp:3!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
}
body.theme-2026 .t26-related-card:hover .t26-related-card-title{
  color:var(--blue)!important;
}

/* Global pagination: latest/category/tag/search/author */
body.theme-2026 .t26-pagination{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  padding:16px 8px!important;
  margin:12px 0!important;
}
body.theme-2026 .t26-pagination ul,
body.theme-2026 .t26-pagination .pagination{
  display:flex!important;
  justify-content:center!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
body.theme-2026 .t26-pagination li{
  display:inline-flex!important;
  margin:0!important;
  padding:0!important;
}
body.theme-2026 .t26-pagination a,
body.theme-2026 .t26-pagination span,
body.theme-2026 .t26-pagination strong,
body.theme-2026 .t26-page-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:34px!important;
  height:34px!important;
  padding:0 10px!important;
  border:1px solid #dbe3ed!important;
  border-radius:6px!important;
  background:#fff!important;
  color:#344054!important;
  font-size:13px!important;
  font-weight:750!important;
  line-height:1!important;
  box-shadow:none!important;
  transition:all .15s ease!important;
}
body.theme-2026 .t26-pagination a:hover,
body.theme-2026 .t26-page-btn:hover{
  border-color:var(--blue)!important;
  color:var(--blue)!important;
  background:rgba(29,113,184,.045)!important;
}
body.theme-2026 .t26-pagination .active a,
body.theme-2026 .t26-pagination .active span,
body.theme-2026 .t26-pagination strong,
body.theme-2026 .t26-page-btn.active{
  background:var(--blue)!important;
  border-color:var(--blue)!important;
  color:#fff!important;
}
body.theme-2026 .t26-pagination .disabled span,
body.theme-2026 .t26-pagination .disabled a,
body.theme-2026 .t26-page-btn.disabled{
  opacity:.45!important;
  pointer-events:none!important;
}

/* Article pagination follows same compact visual */
body.theme-2026 .t26-article-pagination{
  padding:10px!important;
}
body.theme-2026 .t26-article-pagination a,
body.theme-2026 .t26-article-pagination span,
body.theme-2026 .t26-article-pagination li a,
body.theme-2026 .t26-article-pagination li span{
  min-width:34px!important;
  height:34px!important;
  border-radius:6px!important;
}

@media(max-width:768px){
  body.theme-2026 .t26-share-row{
    gap:5px!important;
  }
  body.theme-2026 .t26-share-btn{
    min-height:28px!important;
    padding:5px 7px!important;
    font-size:11px!important;
  }
  body.theme-2026 .t26-share-icon,
  body.theme-2026 .t26-share-icon svg{
    width:14px!important;
    height:14px!important;
    flex-basis:14px!important;
  }
  body.theme-2026 .t26-related-grid{
    grid-template-columns:1fr!important;
    gap:7px!important;
  }
  body.theme-2026 .t26-related-card{
    grid-template-columns:76px minmax(0,1fr)!important;
    min-height:58px!important;
    padding:6px!important;
  }
  body.theme-2026 .t26-related-thumb{
    width:76px!important;
    height:48px!important;
  }
  body.theme-2026 .t26-related-card-title{
    font-size:12.5px!important;
    -webkit-line-clamp:2!important;
  }
  body.theme-2026 .t26-pagination{
    gap:5px!important;
    padding:14px 6px!important;
  }
  body.theme-2026 .t26-pagination a,
  body.theme-2026 .t26-pagination span,
  body.theme-2026 .t26-pagination strong,
  body.theme-2026 .t26-page-btn{
    min-width:31px!important;
    height:31px!important;
    padding:0 8px!important;
    font-size:12px!important;
    border-radius:5px!important;
  }
}

/* ===== THEME 2026 FONT SIZE CONTROL FIX FINAL ===== */
body.theme-2026{
  --t26-article-font-size:16px;
}
body.theme-2026 .t26-article-body{
  font-size:var(--t26-article-font-size,16px)!important;
  line-height:1.4!important;
}
body.theme-2026 .t26-article-body p,
body.theme-2026 .t26-article-body li,
body.theme-2026 .t26-article-body span,
body.theme-2026 .t26-article-body div,
body.theme-2026 .t26-article-body a,
body.theme-2026 .t26-article-body strong,
body.theme-2026 .t26-article-body em,
body.theme-2026 .t26-article-body blockquote,
body.theme-2026 .t26-article-body td,
body.theme-2026 .t26-article-body th{
  font-size:inherit!important;
}
body.theme-2026 .t26-article-body h2{
  font-size:calc(var(--t26-article-font-size,16px) + 4px)!important;
  line-height:1.25!important;
}
body.theme-2026 .t26-article-body h3{
  font-size:calc(var(--t26-article-font-size,16px) + 2px)!important;
  line-height:1.25!important;
}
body.theme-2026 .t26-fontsize-toggle{
  position:relative!important;
  z-index:2!important;
}
body.theme-2026 #t26-fontsize-range{
  pointer-events:auto!important;
  cursor:pointer!important;
}
body.theme-2026 #t26-fontsize-value{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:34px!important;
  height:22px!important;
  padding:0 6px!important;
  border:1px solid #dbe3ed!important;
  border-radius:4px!important;
  background:#fff!important;
  color:var(--blue)!important;
  font-size:11px!important;
  font-weight:800!important;
  line-height:1!important;
}

/* ===== THEME 2026 BREADCRUMB TAGS SHARE FINAL ===== */
/* Breadcrumb category/latest/tag/detail sejajar dengan header/container 1070 */
body.theme-2026 .t26-breadcrumb{
  max-width:var(--t26-layout-width,1070px)!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}

/* Trending Tags: lebih indah, compact, dengan aksen api */
body.theme-2026 .t26-tags-bar{
  position:relative!important;
  overflow:hidden!important;
  border:1px solid #f3d1a8!important;
  border-radius:8px!important;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,122,0,.28), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255,77,0,.18), transparent 26%),
    linear-gradient(135deg, #fff8f0 0%, #ffffff 48%, #fff4e7 100%)!important;
  box-shadow:0 4px 14px rgba(255,111,0,.08)!important;
  padding:10px 12px!important;
  gap:7px!important;
}
body.theme-2026 .t26-tags-bar::before{
  content:"🔥"!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:24px!important;
  height:24px!important;
  border-radius:5px!important;
  background:#fff!important;
  border:1px solid rgba(255,113,0,.25)!important;
  font-size:14px!important;
  margin-right:1px!important;
}
body.theme-2026 .t26-tags-bar-label{
  color:#9a4200!important;
  font-weight:850!important;
  letter-spacing:.01em!important;
}
body.theme-2026 .t26-tag-pill{
  border-radius:4px!important;
  border-color:#efc99f!important;
  background:rgba(255,255,255,.88)!important;
  color:#6b3a12!important;
  min-height:27px!important;
  padding:4px 9px!important;
  font-size:11.8px!important;
  font-weight:750!important;
}
body.theme-2026 .t26-tag-pill:hover{
  background:#ff7a00!important;
  border-color:#ff7a00!important;
  color:#fff!important;
}

/* Detail: author + share sebaris, share rata kanan */
body.theme-2026 .t26-article-meta{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
}
body.theme-2026 .t26-meta-share{
  margin-left:auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  min-width:0!important;
}
body.theme-2026 .t26-meta-share .t26-share-row{
  margin:0!important;
  justify-content:flex-end!important;
  flex-wrap:nowrap!important;
  gap:5px!important;
}
body.theme-2026 .t26-meta-share .t26-share-btn{
  min-height:28px!important;
  padding:5px 7px!important;
  font-size:0!important;
  gap:0!important;
  border-radius:5px!important;
}
body.theme-2026 .t26-meta-share .t26-share-btn > span:not(.t26-share-icon){
  display:none!important;
}
body.theme-2026 .t26-meta-share .t26-share-icon,
body.theme-2026 .t26-meta-share .t26-share-icon svg{
  width:15px!important;
  height:15px!important;
  flex-basis:15px!important;
}

/* Featured caption kecil dan compact */
body.theme-2026 .t26-article-caption{
  font-size:10.5px!important;
  line-height:1.35!important;
  color:#7b8492!important;
  text-align:left!important;
  font-style:normal!important;
  padding:5px 8px!important;
  background:#f8fafc!important;
  border-top:1px solid #edf0f4!important;
}

/* Tags di luar editors team, lebih kecil compact */
body.theme-2026 .t26-editors-tags{
  display:none!important;
}
body.theme-2026 .t26-article-tags-compact{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:5px!important;
  margin:8px 0 14px!important;
  padding:0!important;
}
body.theme-2026 .t26-article-tags-compact a{
  display:inline-flex!important;
  align-items:center!important;
  min-height:23px!important;
  padding:2px 7px!important;
  border:1px solid #dbe3ed!important;
  border-radius:4px!important;
  background:#fff!important;
  color:#4b5563!important;
  font-size:11px!important;
  font-weight:700!important;
  line-height:1.1!important;
}
body.theme-2026 .t26-article-tags-compact a:hover{
  color:var(--blue)!important;
  border-color:var(--blue)!important;
  background:rgba(29,113,184,.04)!important;
}

@media(max-width:768px){
  body.theme-2026 .t26-breadcrumb{
    max-width:100%!important;
    padding:8px 12px 0!important;
  }
  body.theme-2026 .t26-tags-bar{
    border-radius:0!important;
    padding:8px 12px!important;
    gap:5px!important;
  }
  body.theme-2026 .t26-tags-bar::before{
    width:22px!important;
    height:22px!important;
    font-size:13px!important;
  }
  body.theme-2026 .t26-article-meta{
    align-items:flex-start!important;
    gap:8px!important;
  }
  body.theme-2026 .t26-meta-share .t26-share-row{
    gap:4px!important;
  }
  body.theme-2026 .t26-meta-share .t26-share-btn{
    min-width:27px!important;
    width:27px!important;
    height:27px!important;
    padding:0!important;
  }
  body.theme-2026 .t26-meta-share .t26-share-icon,
  body.theme-2026 .t26-meta-share .t26-share-icon svg{
    width:14px!important;
    height:14px!important;
  }
  body.theme-2026 .t26-article-tags-compact{
    margin-top:7px!important;
  }
}

/* ===== THEME 2026 LANGUAGE SOCIAL FINAL ===== */
/* Modern compact square social icons, no rounded-circle */
body.theme-2026 .t26-social-square{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:28px!important;
  height:28px!important;
  border-radius:5px!important;
  background:#fff!important;
  color:#334155!important;
  border:1px solid #dbe3ed!important;
  line-height:1!important;
  transition:all .15s ease!important;
}
body.theme-2026 .t26-social-square svg{
  width:15px!important;
  height:15px!important;
  display:block!important;
  fill:currentColor!important;
}
body.theme-2026 .t26-social-square:hover{
  transform:translateY(-1px)!important;
  color:#fff!important;
}
body.theme-2026 .t26-social-facebook:hover{background:#1877f2!important;border-color:#1877f2!important}
body.theme-2026 .t26-social-twitter:hover{background:#111!important;border-color:#111!important}
body.theme-2026 .t26-social-instagram:hover{background:#e4405f!important;border-color:#e4405f!important}
body.theme-2026 .t26-social-youtube:hover{background:#ff0033!important;border-color:#ff0033!important}
body.theme-2026 .t26-social-rss:hover{background:#f97316!important;border-color:#f97316!important}

body.theme-2026 .t26-footer-social{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  margin-top:10px!important;
}

/* Drawer social at the very bottom */
body.theme-2026 .t26-drawer-social{
  margin-top:auto!important;
  padding:10px!important;
  border-top:1px solid #edf0f4!important;
}
body.theme-2026 .t26-drawer-social-list{
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
  flex-wrap:wrap!important;
}
body.theme-2026 .t26-drawer-social .t26-social-square{
  width:27px!important;
  height:27px!important;
  border-radius:5px!important;
}
body.theme-2026 .t26-drawer-social .t26-social-square svg{
  width:14px!important;
  height:14px!important;
}

/* Avoid old circular social styles leaking into Theme 2026 */
body.theme-2026 .t26-footer-social a[style],
body.theme-2026 .t26-drawer-social a[style]{
  border-radius:5px!important;
}

@media(max-width:768px){
  body.theme-2026 .t26-drawer-social{
    padding:9px 10px 12px!important;
  }
  body.theme-2026 .t26-drawer-social-list{
    gap:5px!important;
  }
}

/* ===== THEME 2026 RESTORE HEADER SPACER AFTER SOCIAL PATCH ===== */
/* Header fixed membutuhkan spacer agar breadcrumb/hero/konten tidak tertutup header. */
body.theme-2026 .t26-header,
body.theme-2026 header.t26-header{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  width:100%!important;
  z-index:90!important;
  transform:none!important;
}
body.theme-2026 .t26-header-spacer{
  display:block!important;
  width:100%!important;
  height:var(--t26-header-height,96px)!important;
  min-height:var(--t26-header-height,96px)!important;
  flex:0 0 auto!important;
  pointer-events:none!important;
  clear:both!important;
}
@media(max-width:768px){
  body.theme-2026 .t26-header-spacer{
    height:var(--t26-header-height,100px)!important;
    min-height:var(--t26-header-height,100px)!important;
  }
}

/* ===== THEME 2026 PRIVACY CAPTION LANGUAGE FINAL ===== */
body.theme-2026 .t26-article-caption{
  display:block!important;
  font-size:10.5px!important;
  line-height:1.35!important;
  color:#6b7280!important;
  text-align:left!important;
  font-style:normal!important;
  padding:5px 8px!important;
  margin:0!important;
  background:#f8fafc!important;
  border-top:1px solid #edf0f4!important;
}
body.theme-2026 .t26-page-count{
  text-transform:none!important;
  letter-spacing:0!important;
}

/* ===== THEME 2026 CAPTION RESTORE CUMULATIVE FINAL ===== */
/* Featured image detail: caption selalu terlihat, tidak terpotong oleh overflow/aspect-ratio */
body.theme-2026 .t26-article-featured{
  aspect-ratio:auto!important;
  overflow:visible!important;
  background:transparent!important;
  border-radius:6px!important;
  margin:0 0 14px!important;
}
body.theme-2026 .t26-article-featured img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  aspect-ratio:16/9!important;
  object-fit:cover!important;
  border-radius:6px 6px 0 0!important;
  background:#eef2f7!important;
}
body.theme-2026 .t26-article-caption{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  font-size:10.5px!important;
  line-height:1.35!important;
  color:#6b7280!important;
  text-align:left!important;
  font-style:normal!important;
  padding:5px 8px!important;
  margin:0!important;
  background:#f8fafc!important;
  border:1px solid #edf0f4!important;
  border-top:none!important;
  border-radius:0 0 6px 6px!important;
}

/* Mobile detail artikel: featured image full bleed menempel kanan-kiri layar */
@media(max-width:768px){
  body.theme-2026.article-page--2026 .t26-article{
    overflow:visible!important;
  }
  body.theme-2026.article-page--2026 .t26-article-featured{
    width:100vw!important;
    max-width:100vw!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
    border-radius:0!important;
    overflow:visible!important;
  }
  body.theme-2026.article-page--2026 .t26-article-featured img{
    display:block!important;
    width:100vw!important;
    max-width:100vw!important;
    height:auto!important;
    aspect-ratio:16/9!important;
    object-fit:cover!important;
    border-radius:0!important;
  }
  body.theme-2026.article-page--2026 .t26-article-caption{
    width:100vw!important;
    max-width:100vw!important;
    border-left:0!important;
    border-right:0!important;
    border-radius:0!important;
    padding:5px 12px!important;
    margin:0!important;
  }
}

/* Editors Team: lebih kompak, kecil, minimalis */
body.theme-2026 .t26-editors-box{
  gap:8px!important;
  padding:10px 11px!important;
  margin:12px 0 8px!important;
  border-radius:6px!important;
  background:#fbfcfe!important;
  border:1px solid #e8edf3!important;
  box-shadow:none!important;
}
body.theme-2026 .t26-editors-avatar{
  flex:0 0 30px!important;
  width:30px!important;
  height:30px!important;
  border-radius:6px!important;
  overflow:hidden!important;
}
body.theme-2026 .t26-editors-avatar img{
  width:30px!important;
  height:30px!important;
  object-fit:cover!important;
}
body.theme-2026 .t26-editors-avatar .t26-author-initial{
  font-size:12px!important;
  border-radius:6px!important;
}
body.theme-2026 .t26-editors-content{
  min-width:0!important;
}
body.theme-2026 .t26-editors-label{
  font-size:10px!important;
  line-height:1.15!important;
  margin-bottom:3px!important;
  letter-spacing:.05em!important;
  font-weight:800!important;
  color:var(--blue)!important;
}
body.theme-2026 .t26-editors-name{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:4px 9px!important;
  margin-bottom:0!important;
  font-size:12px!important;
  line-height:1.35!important;
  font-weight:650!important;
  color:#334155!important;
}
body.theme-2026 .t26-editors-name span{
  display:inline-flex!important;
  align-items:center!important;
  max-width:100%!important;
}
body.theme-2026 .t26-article-tags-compact{
  margin:7px 0 12px!important;
  gap:4px!important;
}
body.theme-2026 .t26-article-tags-compact a{
  min-height:21px!important;
  padding:2px 6px!important;
  border-radius:3px!important;
  font-size:10.5px!important;
  line-height:1.1!important;
}
@media(max-width:768px){
  body.theme-2026 .t26-editors-box{
    margin-left:0!important;
    margin-right:0!important;
    padding:9px 10px!important;
    gap:8px!important;
  }
  body.theme-2026 .t26-editors-label{
    font-size:9.5px!important;
  }
  body.theme-2026 .t26-editors-name{
    font-size:11.5px!important;
    gap:3px 8px!important;
  }
}

/* Theme 2026 Ads Integration */
body.theme-2026 .t26-ad-slot{
  display:block;
  width:100%;
  max-width:100%;
  margin:14px auto!important;
  text-align:center;
  overflow:hidden;
  clear:both;
}
body.theme-2026 .t26-ad-slot .t26-ad-link,
body.theme-2026 .t26-ad-slot .t26-ad-code{
  display:block;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
body.theme-2026 .t26-ad-slot img,
body.theme-2026 .t26-ad-slot iframe,
body.theme-2026 .t26-ad-slot ins{
  max-width:100%!important;
}
body.theme-2026 .t26-ad-header{
  max-width:984px;
  padding:0 12px;
  margin-top:10px!important;
  margin-bottom:10px!important;
}
body.theme-2026 .t26-sidebar-ad{
  width:100%;
  max-width:300px;
  margin:0 auto 14px!important;
}
body.theme-2026 .t26-footer-ad{
  max-width:984px;
  padding:0 12px;
  margin:18px auto!important;
}
body.theme-2026 .t26-ad-inarticle{
  margin:18px auto!important;
}
body.theme-2026 .t26-home-ad,
body.theme-2026 .t26-list-ad,
body.theme-2026 .t26-page-ad{
  margin:16px auto!important;
}
/* Flying banner kanan/kiri Theme 2026 dinonaktifkan. Slot lama kini dirender sebagai mobile sticky top/bottom via helper global. */
@media(max-width:768px){
  body.theme-2026 .t26-ad-slot{
    width:100%!important;
    max-width:100%!important;
    margin:12px auto!important;
    padding-left:0!important;
    padding-right:0!important;
  }
  body.theme-2026 .t26-ad-header,
  body.theme-2026 .t26-footer-ad{
    padding-left:8px!important;
    padding-right:8px!important;
  }
}

/* Global banner alignment: center all primary/alternative banner output without placeholder box */
.si-ad-center,
.classic-ad-slot,
.si-kanal-banner-wrap,
.home-banner,
.t26-ad-slot,
.t26-ad-code-shell,
.t26-ad-alt{
  display:block;
  max-width:100%;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
  clear:both;
}
.si-ad-center > *,
.classic-ad-slot > *,
.si-kanal-banner-wrap > *,
.home-banner > *,
.t26-ad-slot > *,
.t26-ad-code-shell > *,
.t26-ad-alt > *{
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
}
.si-ad-center img,
.classic-ad-slot img,
.si-kanal-banner-wrap img,
.home-banner img,
.t26-ad-slot img{
  display:block;
  margin-left:auto!important;
  margin-right:auto!important;
  height:auto;
}
.si-ad-center iframe,
.classic-ad-slot iframe,
.si-kanal-banner-wrap iframe,
.home-banner iframe,
.t26-ad-slot iframe,
.si-ad-center ins.adsbygoogle,
.classic-ad-slot ins.adsbygoogle,
.si-kanal-banner-wrap ins.adsbygoogle,
.home-banner ins.adsbygoogle,
.t26-ad-slot ins.adsbygoogle{
  display:block!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
}

/* SI PATCH FINAL 2026-05-06: global ad alignment + mobile full-width natural fit */
.si-ad-center,
.classic-ad-slot,
.si-kanal-banner-wrap,
.home-banner,
.t26-ad-slot,
.t26-ad-code-shell,
.t26-ad-alt{
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
  clear:both;
}
.si-ad-center > *,
.classic-ad-slot > *,
.si-kanal-banner-wrap > *,
.home-banner > *,
.t26-ad-slot > *,
.t26-ad-code-shell > *,
.t26-ad-alt > *{
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
  box-sizing:border-box!important;
}
.si-ad-center img,
.classic-ad-slot img,
.si-kanal-banner-wrap img,
.home-banner img,
.t26-ad-slot img,
.t26-ad-code-shell img,
.t26-ad-alt img{
  display:block!important;
  max-width:100%!important;
  height:auto!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.si-ad-center iframe,
.classic-ad-slot iframe,
.si-kanal-banner-wrap iframe,
.home-banner iframe,
.t26-ad-slot iframe,
.t26-ad-code-shell iframe,
.t26-ad-alt iframe,
.si-ad-center ins.adsbygoogle,
.classic-ad-slot ins.adsbygoogle,
.si-kanal-banner-wrap ins.adsbygoogle,
.home-banner ins.adsbygoogle,
.t26-ad-slot ins.adsbygoogle,
.t26-ad-code-shell ins.adsbygoogle,
.t26-ad-alt ins.adsbygoogle{
  display:block!important;
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
}
@media (max-width:767px){
  .si-ad-center,
  .classic-ad-slot,
  .si-kanal-banner-wrap,
  .home-banner,
  .t26-ad-slot,
  .t26-ad-code-shell,
  .t26-ad-alt{
    padding-left:0!important;
    padding-right:0!important;
    overflow:hidden!important;
  }
  .si-ad-center img,
  .classic-ad-slot img,
  .si-kanal-banner-wrap img,
  .home-banner img,
  .t26-ad-slot img,
  .t26-ad-code-shell img,
  .t26-ad-alt img{
    width:auto!important;
    max-width:100%!important;
  }
}

