/*
Theme Name: Satellite Theme6 — Btourq
Theme URI: https://satellites.mobtools.ai/
Description: Bright news/magazine skin adapted from the Btourq demo. Dark meta topbar with a live date, a white brand row with an orange SUBSCRIBE pill, a bold uppercase nav row, an orange "TOP NEWS" sliding ticker, a split hero (one big overlay feature + two stacked cards), centered section headers with side-rules and an uppercase eyebrow, vivid rounded (pill) category tags, numbered "Feature News" cards on a warm band, a tri-column category showcase, an "Editor's Choice" grid, and a near-black multi-column footer. Type pairs Karla (headings/UI) with Lora (body serif); accent is a warm orange-red. Motion: on-scroll fade-up reveals, ticker slide, hover image-zoom. Visuals only — all integrations come from the shared Satellite Skin Core mu-plugin.
Author: MobTools
Version: 1.0.2
License: GPL-2.0-or-later
Text Domain: satellite-theme6
*/

/* ─── Tokens ─────────────────────────────────────────────────────────── */
:root {
    /* THEME-OWNED palette (does NOT inherit satellite_primary_color) */
    --t6-primary: #f54923;
    --t6-primary-2: #d83c18;
    --t6-red: #c4211b;         /* topbar (gaming "Home 2") */
    --t6-red-2: #a91813;
    --t6-ink: #121418;
    --t6-ink-2: #6c6f72;
    --t6-ink-3: #9a9ca0;
    --t6-on-dark: #d9dadc;
    --t6-bg: #ffffff;
    --t6-bg-alt: #fbf1ec;
    --t6-line: #ececec;
    --t6-topbar: #c4211b;
    --t6-header: #0e0f12;      /* dark header bar */
    --t6-dark: #121418;
    --t6-footer: #121418;

    --t6-font: "Lora", Georgia, "Times New Roman", serif;
    --t6-head: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --t6-display: "Karla", sans-serif;
    --t6-ui: "Karla", sans-serif;

    --t6-container: 1200px;
    --t6-radius: 6px;
    --t6-pill: 30px;
    --t6-shadow: 0 12px 34px rgba(18, 20, 24, .10);
    --t6-shadow-sm: 0 6px 20px rgba(18, 20, 24, .07);
    --t6-topbar-h: 44px;
    --t6-ease: cubic-bezier(.25, .46, .45, .94);
}

/* ─── Base ───────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--t6-font);
    font-size: 16px;
    line-height: 1.85;
    color: var(--t6-ink-2);
    background: var(--t6-bg);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
/* The platform base stylesheet underlines all links; scope underlines to the
   article/page prose only (titles, nav, cards, footer must stay clean). */
.theme-theme6 a { text-decoration: none; }
.theme-theme6 .t6-article-body a,
.theme-theme6 .t6-page-body a { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--t6-head); color: var(--t6-ink); margin: 0 0 .5em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1.4em; }

.t6-container { max-width: var(--t6-container); margin: 0 auto; padding: 0 20px; width: 100%; }
.t6-container--narrow { max-width: 820px; }
.t6-site-main { min-height: 40vh; }

/* ─── Reading progress ───────────────────────────────────────────────── */
.t6-reading-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 2000;
    background: var(--t6-primary); transform: scaleX(0); transform-origin: 0 50%;
}

/* ─── Topbar (red) ───────────────────────────────────────────────────── */
.t6-topbar { background: var(--t6-topbar); color: #fff; font-family: var(--t6-ui); }
.t6-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--t6-topbar-h); }
.t6-topbar-links { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.t6-topbar-links a { color: rgba(255,255,255,.9); transition: color .2s var(--t6-ease); }
.t6-topbar-links a:hover { color: #fff; }
.t6-topbar-links .sep { color: rgba(255,255,255,.45); }
.t6-topbar-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: rgba(255,255,255,.92); }
.t6-topbar-date { display: inline-flex; align-items: center; gap: 8px; }
.t6-topbar-date svg { flex: none; }
.t6-topbar-auth { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.92); transition: color .2s var(--t6-ease); }
.t6-topbar-auth svg { flex: none; }
.t6-topbar-auth:hover { color: #fff; }

/* ─── Header (dark bar: logo + nav + search) ─────────────────────────── */
.t6-header { background: var(--t6-header); }
.t6-header.is-stuck {
    position: fixed; top: 0; left: 0; right: 0; z-index: 950; background: var(--t6-header);
    box-shadow: 0 6px 24px rgba(0,0,0,.35); animation: t6-drop .35s var(--t6-ease);
}
@keyframes t6-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.t6-header-inner { display: flex; align-items: center; gap: 26px; min-height: 82px; }
.t6-brand { display: inline-flex; align-items: center; gap: 12px; flex: none; line-height: 1; }
.t6-brand-mark {
    width: 44px; height: 44px; border-radius: 50%; flex: none; display: inline-flex;
    align-items: center; justify-content: center; background: var(--t6-primary); color: #fff;
    font-family: var(--t6-display); font-weight: 800; font-size: 24px;
}
.t6-brand-name {
    display: block; font-family: var(--t6-display); font-weight: 700; font-size: 24px;
    letter-spacing: -.01em; color: #fff; white-space: nowrap;
}
.t6-nav { min-width: 0; margin-left: auto; }
.t6-primary-list { list-style: none; display: flex; flex-wrap: nowrap; align-items: center; gap: 18px; margin: 0; padding: 0; }
.t6-primary-list a {
    font-family: var(--t6-ui); font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .01em; color: #fff; transition: color .2s var(--t6-ease); white-space: nowrap;
    display: inline-block; padding: 30px 0;
}
.t6-primary-list a:hover, .t6-primary-list .current-menu-item > a { color: var(--t6-primary); }
.t6-primary-list ul { display: none; }

.t6-header-actions { display: flex; align-items: center; gap: 16px; flex: none; margin-left: 22px; }
.t6-search-toggle { background: none; border: 0; color: #fff; cursor: pointer; padding: 4px; display: inline-flex; }
.t6-search-toggle:hover { color: var(--t6-primary); }
.t6-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 4px; }
.t6-menu-toggle span { width: 24px; height: 2px; background: #fff; transition: .25s var(--t6-ease); }
.t6-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.t6-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.t6-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.t6-search-panel { border-top: 1px solid rgba(255,255,255,.1); background: var(--t6-header); padding: 16px 0; }
.t6-searchform { display: flex; max-width: 640px; margin: 0 auto; border: 1px solid rgba(255,255,255,.18); border-radius: var(--t6-pill); overflow: hidden; }
.t6-searchform input { flex: 1; border: 0; padding: 12px 20px; font: inherit; outline: none; background: #fff; }
.t6-searchform button { border: 0; background: var(--t6-primary); color: #fff; padding: 0 20px; cursor: pointer; display: inline-flex; align-items: center; }

/* ─── Section header (centered, side rules, eyebrow) ─────────────────── */
.t6-section-head { text-align: center; margin-bottom: 34px; }
.t6-section-title {
    position: relative; display: inline-block; font-family: var(--t6-head); font-size: 36px;
    font-weight: 700; color: var(--t6-ink); margin: 0; padding: 0 26px;
}
.t6-section-title::before, .t6-section-title::after {
    content: ""; position: absolute; top: 50%; width: 220px; height: 1px; background: var(--t6-line);
}
.t6-section-title::before { right: 100%; }
.t6-section-title::after { left: 100%; }
.t6-section-sub { display: block; font-family: var(--t6-ui); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--t6-ink-3); margin-top: 10px; }
.t6-section-head--left { text-align: left; }
.t6-section-head--left .t6-section-title { padding: 0; font-size: 26px; }
.t6-section-head--left .t6-section-title::before { display: none; }
.t6-section-head--left .t6-section-title::after { left: auto; right: 100%; margin-right: 0; }
.t6-section-head--left { display: flex; align-items: center; gap: 16px; }
.t6-section-head--left .t6-section-title { white-space: nowrap; }
.t6-section-head--left .t6-section-rule { flex: 1; height: 1px; background: var(--t6-line); }

/* Bar header: bold left title + a "See More" outlined button on the right. */
.t6-section-head--bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; }
.t6-section-head--bar .t6-section-title { padding: 0; font-size: 30px; }
.t6-section-head--bar .t6-section-title::before, .t6-section-head--bar .t6-section-title::after { display: none; }
.t6-see-more {
    flex: none; font-family: var(--t6-ui); font-size: 14px; font-weight: 700; color: var(--t6-ink-2);
    border: 1px solid var(--t6-line); border-radius: 4px; padding: 9px 20px; transition: .2s var(--t6-ease);
}
.t6-see-more:hover { background: var(--t6-primary); border-color: var(--t6-primary); color: #fff; }

.t6-band { background: var(--t6-bg-alt); }
.t6-band .t6-section-title::before, .t6-band .t6-section-title::after { background: #ecddd4; }

/* ─── Pills (rounded category tags) ──────────────────────────────────── */
.t6-pill {
    display: inline-block; background: var(--pill, var(--t6-primary)); color: #fff;
    font-family: var(--t6-ui); font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .03em; padding: 6px 15px; line-height: 1.3; border-radius: var(--t6-pill);
}
.t6-pill--overlay { position: absolute; top: 16px; left: 16px; z-index: 3; }

/* ─── Section spacing ────────────────────────────────────────────────── */
.t6-section { padding: 62px 0; }
.t6-section--tight { padding: 46px 0; }
.t6-block { margin-bottom: 44px; }

/* ─── Hero (3-up: standard | big overlay feature | standard) ─────────── */
.t6-hero { padding: 34px 0 10px; }
.t6-hero-grid { display: grid; grid-template-columns: 1fr 1.7fr 1fr; gap: 24px; align-items: stretch; }
.t6-hero-col { display: flex; flex-direction: column; }
.t6-hero-col--lead .t6-ov-card { height: 100%; min-height: 540px; }
.t6-hero-col--lead .t6-ov-media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.t6-hero-col--lead .t6-ov-title { font-size: 34px; line-height: 1.15; }
.t6-hero-col .t6-card { height: 100%; }
.t6-hero-col .t6-card-media { aspect-ratio: 3 / 4; }

/* Recommended Articles: 1 big overlay + 2 stacked, then a 3-up overlay row. */
.t6-recgrid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px; align-items: stretch; }
.t6-recgrid-lead .t6-ov-card { height: 100%; min-height: 440px; }
.t6-recgrid-lead .t6-ov-media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.t6-recgrid-lead .t6-ov-title { font-size: 30px; line-height: 1.2; }
.t6-recgrid-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.t6-recgrid-side .t6-ov-card { height: 100%; }
.t6-recgrid-side .t6-ov-media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.t6-recrow { margin-top: 26px; }
.t6-recrow .t6-ov-media { aspect-ratio: 16 / 10; }

/* Featured banner: full-bleed overlay banner + a 4-up overlay row. */
.t6-section--flush { padding-top: 0; }
.t6-banner { margin-bottom: 26px; }
.t6-banner .t6-ov-card { min-height: 400px; border-radius: 0; }
.t6-banner .t6-ov-media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.t6-banner .t6-ov-content { max-width: var(--t6-container); margin: 0 auto; left: 0; right: 0; padding: 30px 20px; }
.t6-banner .t6-ov-title { font-size: 40px; line-height: 1.1; max-width: 720px; }
.t6-bannerrow .t6-ov-media { aspect-ratio: 4 / 3; }

/* This Week News: a 2×2 grid of large overlay cards. */
.t6-weekgrid .t6-ov-media { aspect-ratio: 16 / 9; }
.t6-weekgrid .t6-ov-title { font-size: 24px; }

/* ─── Overlay card (hero lead, hero side, tri-column featured) ───────── */
.t6-ov-card { position: relative; border-radius: var(--t6-radius); overflow: hidden; background: #121418; }
.t6-ov-media { display: block; position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.t6-ov-media img, .t6-ov-media .t6-thumb-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--t6-ease); }
.t6-ov-card:hover .t6-ov-media img { transform: scale(1.06); }
.t6-ov-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,20,24,.88) 0%, rgba(18,20,24,.15) 55%, transparent 100%); }
.t6-ov-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; z-index: 2; }
.t6-ov-content .t6-pill { margin-bottom: 12px; }
.t6-ov-date { display: inline-flex; align-items: center; gap: 6px; font-family: var(--t6-ui); font-size: 12px; color: #d7d7d7; margin-bottom: 6px; }
.t6-ov-title { font-family: var(--t6-head); font-size: 19px; line-height: 1.32; font-weight: 700; margin: 0; }
.t6-ov-title a { color: #fff; }
.t6-ov-title a:hover { color: #fff; opacity: .9; }
.t6-ov-meta { display: flex; flex-wrap: wrap; gap: 18px; font-family: var(--t6-ui); font-size: 12px; color: #e2e2e2; margin-top: 10px; }
.t6-ov-meta span { display: inline-flex; align-items: center; gap: 6px; }
.t6-hero-lead .t6-ov-card { min-height: 520px; }
.t6-hero-lead .t6-ov-media, .t6-hero-side .t6-ov-media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
.t6-hero-lead .t6-ov-title { font-size: 34px; line-height: 1.15; }
.t6-hero-side .t6-ov-card { min-height: 248px; }

/* ─── Standard card (image top, pill, title, meta) ───────────────────── */
.t6-card { display: flex; flex-direction: column; }
.t6-card-media { position: relative; display: block; border-radius: var(--t6-radius); overflow: hidden; aspect-ratio: 4 / 3; }
.t6-card-media img, .t6-card-media .t6-thumb-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--t6-ease); }
.t6-card:hover .t6-card-media img { transform: scale(1.06); }
.t6-card-num {
    position: absolute; right: 14px; top: -23px; width: 46px; height: 46px; border-radius: 50%;
    background: #fff; color: var(--t6-ink); font-family: var(--t6-head); font-weight: 500; font-size: 22px;
    display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--t6-shadow-sm); z-index: 3;
}
.t6-card-body { position: relative; padding-top: 18px; }
.t6-card-body .t6-pill { margin-bottom: 12px; }
.t6-card-title { font-family: var(--t6-head); font-size: 20px; font-weight: 700; line-height: 1.4; margin: 0 0 10px; color: var(--t6-ink); }
.t6-card-title a:hover { color: var(--t6-primary); }
.t6-card-meta { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--t6-ui); font-size: 13px; color: var(--t6-ink-3); }
.t6-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.t6-card-meta strong { color: var(--t6-ink); font-weight: 700; }
.t6-card-meta svg { flex: none; }

/* ─── List card (weekly list, tri-column) ────────────────────────────── */
.t6-list-card { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--t6-line); align-items: flex-start; }
.t6-list-card:last-child { border-bottom: 0; }
.t6-list-thumb { flex: 0 0 116px; width: 116px; height: 88px; border-radius: var(--t6-radius); overflow: hidden; }
.t6-list-thumb--round { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%; }
.t6-list-thumb img, .t6-list-thumb .t6-thumb-placeholder { width: 100%; height: 100%; object-fit: cover; }
.t6-list-body { min-width: 0; }
.t6-list-cat { font-family: var(--t6-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.t6-list-title { font-family: var(--t6-head); font-size: 17px; line-height: 1.4; font-weight: 700; margin: 4px 0 0; color: var(--t6-ink); }
.t6-list-title a:hover { color: var(--t6-primary); }
.t6-list-meta { display: flex; flex-wrap: wrap; gap: 14px; font-family: var(--t6-ui); font-size: 12px; color: var(--t6-ink-3); margin-top: 6px; }
.t6-list-meta span { display: inline-flex; align-items: center; gap: 5px; }
.t6-list-meta svg { color: var(--t6-primary); flex: none; }

/* ─── Grids ──────────────────────────────────────────────────────────── */
.t6-grid { display: grid; gap: 26px; }
.t6-grid-2 { grid-template-columns: repeat(2, 1fr); }
.t6-grid-3 { grid-template-columns: repeat(3, 1fr); }
.t6-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Weekly (featured + list) ───────────────────────────────────────── */
.t6-splitfeature { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.t6-splitfeature .t6-card-media { aspect-ratio: 16 / 10; }
.t6-splitfeature .t6-card-title { font-size: 24px; }

/* ─── Tri-column showcase ────────────────────────────────────────────── */
.t6-tricol { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; }
.t6-tricol-col--mid { border-left: 1px solid var(--t6-line); border-right: 1px solid var(--t6-line); padding: 0 30px; }
.t6-tricol .t6-ov-card { margin-bottom: 18px; }
.t6-tricol .t6-ov-card .t6-ov-media { aspect-ratio: 16 / 10; }
.t6-tricol .t6-list-card { padding: 12px 0; }

/* ─── Load more ──────────────────────────────────────────────────────── */
.t6-loadmore-wrap { text-align: center; margin-top: 46px; }
.t6-loadmore {
    display: inline-block; background: var(--t6-primary); color: #fff; font-family: var(--t6-ui);
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    padding: 16px 42px; border-radius: var(--t6-pill); transition: .2s var(--t6-ease);
}
.t6-loadmore:hover { background: var(--t6-ink); }

/* ─── Sidebar (archive) ──────────────────────────────────────────────── */
.t6-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 44px; align-items: start; }
.t6-main { min-width: 0; }
.t6-sidebar { display: flex; flex-direction: column; gap: 34px; }
.t6-widget { background: #fff; }
.t6-widget-head { position: relative; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--t6-line); }
.t6-widget-head::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 60px; height: 2px; background: var(--t6-primary); }
.t6-widget-title { color: var(--t6-ink); font-family: var(--t6-head); font-size: 20px; font-weight: 700; margin: 0; }
.t6-tabs-head { display: flex; gap: 8px; margin-bottom: 18px; }
.t6-tab { flex: 1; border: 1px solid var(--t6-line); cursor: pointer; font-family: var(--t6-ui); font-size: 14px; font-weight: 700; padding: 10px; background: #fff; color: var(--t6-ink); border-radius: var(--t6-radius); text-transform: uppercase; letter-spacing: .03em; }
.t6-tab.is-active { background: var(--t6-primary); color: #fff; border-color: var(--t6-primary); }
.t6-tab-panel { display: none; }
.t6-tab-panel.is-active { display: block; }
.t6-widget--subscribe { background: var(--t6-primary); color: #fff; padding: 30px 24px; border-radius: var(--t6-radius); text-align: center; }
.t6-sub-eyebrow { font-family: var(--t6-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }
.t6-sub-title { color: #fff; font-size: 24px; margin: 2px 0 4px; }
.t6-sub-sub { font-size: 14px; opacity: .9; margin: 0 0 18px; }
.t6-sub-form { display: flex; flex-direction: column; gap: 10px; }
.t6-sub-form input { border: 0; padding: 12px 14px; border-radius: var(--t6-pill); font: inherit; }
.t6-sub-form button { border: 0; background: var(--t6-ink); color: #fff; padding: 12px; border-radius: var(--t6-pill); font-family: var(--t6-ui); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; }
.t6-sub-form button:hover { background: #000; }
.t6-cat-list { list-style: none; margin: 0; padding: 0; }
.t6-cat-list li { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--t6-line); padding: 11px 0; }
.t6-cat-list li:last-child { border-bottom: 0; }
.t6-cat-list a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--t6-head); font-weight: 700; color: var(--t6-ink); }
.t6-cat-list a span { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.t6-cat-list a:hover { color: var(--t6-primary); }
.t6-cat-list em { font-style: normal; font-size: 13px; color: var(--t6-ink-3); }

/* ─── Single ─────────────────────────────────────────────────────────── */
.t6-single-main, .t6-archive-main { padding: 50px 0 66px; }
.t6-breadcrumb { font-family: var(--t6-ui); font-size: 13px; color: var(--t6-ink-3); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.t6-breadcrumb a:hover { color: var(--t6-primary); }
.t6-post-cover { position: relative; border-radius: var(--t6-radius); overflow: hidden; margin-bottom: 22px; }
.t6-post-cover img { width: 100%; max-height: 480px; object-fit: cover; }
.t6-post-cover .t6-pill { position: absolute; top: 18px; left: 18px; }
.t6-post-title { font-family: var(--t6-head); font-size: 40px; line-height: 1.2; margin: 0 0 16px; }
.t6-post-meta { border-bottom: 1px solid var(--t6-line); padding-bottom: 18px; margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 18px; font-family: var(--t6-ui); font-size: 14px; color: var(--t6-ink-3); }
.t6-post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.t6-post-meta svg { color: var(--t6-primary); flex: none; }
.t6-post-meta .t6-meta-author { display: inline-flex; align-items: center; gap: 8px; }
.t6-post-meta img { border-radius: 50%; }

.t6-toc { background: var(--t6-bg-alt); border-left: 3px solid var(--t6-primary); border-radius: var(--t6-radius); padding: 18px 22px; margin: 0 0 28px; }
.t6-toc-title { font-family: var(--t6-head); font-weight: 700; color: var(--t6-ink); margin-bottom: 8px; }
.t6-toc ol { margin: 0; padding-left: 20px; }
.t6-toc a:hover { color: var(--t6-primary); }

.t6-article-body { font-size: 18px; line-height: 1.9; color: var(--t6-ink-2); }
.t6-article-body h2, .t6-article-body h3 { margin: 1.6em 0 .6em; color: var(--t6-ink); font-family: var(--t6-head); }
.t6-article-body h2 { font-size: 28px; }
.t6-article-body h3 { font-size: 22px; }
.t6-article-body a { color: var(--t6-primary); text-decoration: underline; }
.t6-article-body img { border-radius: var(--t6-radius); margin: 1.4em 0; }
.t6-article-body blockquote { margin: 1.6em 0; padding: 6px 24px; border-left: 4px solid var(--t6-primary); background: var(--t6-bg-alt); font-size: 20px; color: var(--t6-ink); font-style: italic; border-radius: 0 var(--t6-radius) var(--t6-radius) 0; }
.t6-article-body ul, .t6-article-body ol { padding-left: 22px; }
.t6-article-body li { margin-bottom: .5em; }

.t6-share { display: flex; align-items: center; gap: 10px; margin: 30px 0; }
.t6-share-label { font-family: var(--t6-ui); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 13px; margin-right: 4px; }
.t6-share a { width: 38px; height: 38px; border-radius: 50%; background: var(--t6-bg-alt); color: var(--t6-ink-2); display: inline-flex; align-items: center; justify-content: center; transition: .2s var(--t6-ease); }
.t6-share a:hover { background: var(--t6-primary); color: #fff; }

.t6-feedback { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: var(--t6-bg-alt); border-radius: var(--t6-radius); padding: 16px 20px; margin: 26px 0; }
.t6-feedback-q { font-family: var(--t6-head); font-weight: 700; color: var(--t6-ink); }
.t6-feedback button { border: 1px solid var(--t6-line); background: #fff; border-radius: var(--t6-pill); padding: 6px 20px; cursor: pointer; font: inherit; font-weight: 700; }
.t6-feedback button:hover { border-color: var(--t6-primary); color: var(--t6-primary); }
.t6-feedback-thanks { color: var(--t6-primary); font-weight: 700; }

.t6-tags { margin: 26px 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.t6-tags-label { font-family: var(--t6-head); font-weight: 700; color: var(--t6-ink); margin-right: 4px; }
.t6-tag { background: var(--t6-bg-alt); border-radius: var(--t6-pill); padding: 5px 15px; font-family: var(--t6-ui); font-size: 13px; color: var(--t6-ink-2); }
.t6-tag:hover { background: var(--t6-primary); color: #fff; }

.t6-author-bio { display: flex; gap: 20px; background: var(--t6-bg-alt); border-radius: var(--t6-radius); padding: 26px; margin: 30px 0; }
.t6-author-av img { border-radius: 50%; }
.t6-author-name { font-family: var(--t6-head); font-size: 19px; margin: 0 0 2px; }
.t6-author-name a:hover { color: var(--t6-primary); }
.t6-author-title { font-family: var(--t6-ui); font-size: 13px; color: var(--t6-primary); text-transform: uppercase; letter-spacing: .03em; font-weight: 700; margin-bottom: 8px; }
.t6-author-desc { margin: 0 0 10px; font-size: 15px; }
.t6-author-link { color: var(--t6-primary); font-weight: 700; }
.t6-related { margin-top: 44px; }

/* ─── Page head (archive / page) ─────────────────────────────────────── */
.t6-page-head { background: var(--t6-bg-alt); border-bottom: 1px solid var(--t6-line); padding: 44px 0; text-align: center; }
.t6-page-head .t6-breadcrumb { justify-content: center; }
.t6-page-title { font-family: var(--t6-head); font-size: 40px; margin: 0; }
.t6-page-desc { margin-top: 10px; color: var(--t6-ink-2); }
.t6-page { padding: 54px 0 64px; }
.t6-page-body { font-size: 18px; line-height: 1.9; }
.t6-page-body h2 { font-size: 27px; margin: 1.4em 0 .5em; font-family: var(--t6-head); }
.t6-page-body a { color: var(--t6-primary); }

.t6-pagination { margin-top: 44px; text-align: center; }
.t6-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--t6-line); border-radius: var(--t6-radius); margin: 0 4px; font-family: var(--t6-head); font-weight: 700; color: var(--t6-ink); }
.t6-pagination .page-numbers.current, .t6-pagination .page-numbers:hover { background: var(--t6-primary); color: #fff; border-color: var(--t6-primary); }
.t6-empty { padding: 40px 0; color: var(--t6-ink-3); }

/* ─── 404 ────────────────────────────────────────────────────────────── */
.t6-404 { text-align: center; padding: 70px 0; }
.t6-404-code { font-family: var(--t6-display); font-size: 120px; font-weight: 800; color: var(--t6-primary); line-height: 1; }
.t6-404-title { font-size: 28px; margin: 6px 0 22px; }
.t6-404-search { max-width: 460px; margin: 0 auto 20px; }
.t6-404 .t6-block { margin-top: 50px; text-align: left; }
.t6-btn { display: inline-block; background: var(--t6-primary); color: #fff; padding: 14px 30px; border-radius: var(--t6-pill); font-family: var(--t6-ui); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.t6-btn:hover { background: var(--t6-primary-2); }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.t6-footer { background: var(--t6-footer); color: #a9abae; padding: 70px 0 0; }
.t6-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.t6-footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.t6-footer-logo { font-family: var(--t6-display); font-weight: 700; font-size: 30px; color: #fff; }
.t6-footer-about { font-size: 15px; line-height: 1.8; margin: 0 0 20px; }
.t6-footer-social { display: flex; gap: 14px; }
.t6-footer-social a { color: #cfd0d2; display: inline-flex; }
.t6-footer-social a:hover { color: var(--t6-primary); }
.t6-footer-title { color: #fff; font-family: var(--t6-head); font-size: 20px; margin: 0 0 22px; }
.t6-footer-links { list-style: none; margin: 0; padding: 0; }
.t6-footer-links li { margin-bottom: 12px; }
.t6-footer-links a { font-size: 15px; color: #b3b4b7; }
.t6-footer-links a:hover { color: var(--t6-primary); padding-left: 4px; }
.t6-footer-subscribe { display: flex; margin-top: 16px; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 8px; }
.t6-footer-subscribe input { flex: 1; min-width: 0; border: 0; background: transparent; color: #fff; padding: 8px 0; font: inherit; }
.t6-footer-subscribe input::placeholder { color: #8a8c8f; }
.t6-footer-subscribe button { border: 0; background: var(--t6-primary); color: #fff; width: 40px; height: 40px; border-radius: var(--t6-radius); font-size: 18px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.t6-footer-note { font-size: 14px; margin: 16px 0 0; line-height: 1.7; }
.t6-footer-post { display: flex; gap: 14px; margin-bottom: 18px; }
.t6-footer-post-thumb { flex: 0 0 72px; width: 72px; height: 60px; border-radius: var(--t6-radius); overflow: hidden; }
.t6-footer-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.t6-footer-post-date { font-family: var(--t6-ui); font-size: 12px; color: var(--t6-primary); margin-bottom: 4px; }
.t6-footer-post-title { color: #e2e2e2; font-family: var(--t6-head); font-weight: 700; font-size: 14px; line-height: 1.4; }
.t6-footer-post-title:hover { color: var(--t6-primary); }
.t6-footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,.08); }
.t6-footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--t6-ui); font-size: 14px; color: #8f9093; }
.t6-footer-bottom strong { color: var(--t6-primary); font-family: var(--t6-head); }
.t6-footer-bottom-links { display: flex; gap: 22px; }
.t6-footer-bottom-links a:hover { color: #fff; }

/* ─── Sticky CTA ─────────────────────────────────────────────────────── */
.t6-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500; background: var(--t6-primary); color: #fff; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 20px; transform: translateY(100%); transition: transform .4s var(--t6-ease); }
.t6-sticky-cta.visible { transform: translateY(0); }
.t6-sticky-cta-text { font-family: var(--t6-head); font-weight: 700; }
.t6-sticky-cta-btn { background: #fff; color: var(--t6-primary); border: 0; border-radius: var(--t6-pill); padding: 10px 22px; font-family: var(--t6-ui); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; cursor: pointer; }
.t6-sticky-cta-close { position: absolute; right: 16px; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; line-height: 1; }

/* ─── Motion ─────────────────────────────────────────────────────────── */
.t6-reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--t6-ease), transform 1s var(--t6-ease); }
.t6-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .t6-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { scroll-behavior: auto !important; }
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    /* Collapse to the drawer before the dark uppercase nav + right-aligned
       actions outgrow the row and slide under/over the search toggle. */
    .t6-nav {
        position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: var(--t6-header); z-index: 1200;
        transform: translateX(100%); transition: transform .3s var(--t6-ease); padding: 90px 26px 26px; margin: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,.4); overflow-y: auto;
    }
    .t6-nav.is-open { transform: translateX(0); }
    .t6-primary-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .t6-primary-list a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
    .t6-menu-toggle { display: flex; }
    .t6-header-inner { justify-content: space-between; }
    .t6-header-actions { margin-left: 0; }
}
@media (max-width: 1100px) {
    .t6-hero-col--lead .t6-ov-title { font-size: 28px; }
    .t6-banner .t6-ov-title { font-size: 32px; }
    .t6-section-title::before, .t6-section-title::after { width: 120px; }
}
@media (max-width: 992px) {
    .t6-layout { grid-template-columns: 1fr; }
    .t6-hero-grid { grid-template-columns: 1fr; }
    .t6-hero-col--lead { order: -1; }
    .t6-hero-col .t6-card-media { aspect-ratio: 16 / 9; }
    .t6-recgrid { grid-template-columns: 1fr; }
    .t6-recgrid-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
    .t6-tricol { grid-template-columns: 1fr; }
    .t6-tricol-col--mid { border: 0; padding: 0; border-top: 1px solid var(--t6-line); border-bottom: 1px solid var(--t6-line); padding: 24px 0; }
    .t6-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .t6-splitfeature { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .t6-section-title { font-size: 28px; }
    .t6-section-head--bar .t6-section-title { font-size: 24px; }
    .t6-section-title::before, .t6-section-title::after { width: 60px; }
    .t6-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .t6-brand-name { font-size: 24px; }
    .t6-post-title { font-size: 30px; }
    .t6-footer-grid { grid-template-columns: 1fr 1fr; }
    .t6-hero-col--lead .t6-ov-card { min-height: 380px; }
    .t6-banner .t6-ov-title { font-size: 26px; }
    .t6-recgrid-side .t6-ov-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
    .t6-grid-2, .t6-grid-3, .t6-grid-4 { grid-template-columns: 1fr; }
    .t6-recgrid-side { grid-template-columns: 1fr; }
    .t6-topbar-links { display: none; }
    .t6-topbar-date span { display: none; }
    .t6-footer-grid { grid-template-columns: 1fr; }
    .t6-footer-bottom { flex-direction: column; text-align: center; }
}
