/* ═══════════════════════════════════════════════════════════
   Teknomio — teknoloji dergisi teması (kapak + ızgara, sidebar yok)
   İndigo/mor accent, açık zemin. Renk/font header.php'de :root'a basılır.
   ═══════════════════════════════════════════════════════════ */
:root {
  --surface: #FFFFFF;
  --surface-2: #EFEFF6;
  --ink-2: #4B4B5C;
  --ink-3: #8888A0;
  --line: #E6E6F0;
  --line-2: #D6D6E4;
  --accent-2: #4646D8;
  --accent-soft: #E8E8FF;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(20,20,31,.04), 0 12px 40px rgba(20,20,31,.07);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --footer-bg: #171724;
  --footer-strong: #EFEFF6;
  --footer-ink: #A0A0B8;
  --footer-dim: #6C6C82;
  --footer-line: rgba(255,255,255,.08);
  --footer-chip: rgba(255,255,255,.05);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131320; --surface: #1B1B2B; --surface-2: #232336;
    --ink: #EDEDF5; --ink-2: #ABABC2; --ink-3: #77778E;
    --line: #2C2C42; --line-2: #38384F; --accent-soft: #20203A; --accent-ink: #9B9BFF;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 40px rgba(0,0,0,.5);
    --footer-bg: #0E0E18;
  }
}
:root[data-theme="dark"] {
  --bg: #131320; --surface: #1B1B2B; --surface-2: #232336;
  --ink: #EDEDF5; --ink-2: #ABABC2; --ink-3: #77778E;
  --line: #2C2C42; --line-2: #38384F; --accent-soft: #20203A; --accent-ink: #9B9BFF;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 40px rgba(0,0,0,.5);
  --footer-bg: #0E0E18;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font, 'Exo', system-ui, sans-serif);
  font-size: var(--fs, 14px);
  line-height: var(--body-lh, 1.6);
  color: var(--ink, #14141F);
  background: var(--bg, #F7F7FB);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.t-wrap { max-width: var(--maxw, 1200px); margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.t-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.t-header-in { display: flex; align-items: center; gap: 24px; height: 70px; }
.t-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.t-logo-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--accent); display: grid; place-items: center; color: #fff; font-size: 18px; font-weight: 800; transform: rotate(-4deg); flex-shrink: 0; }
.t-logo-name { font-size: 23px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.t-logo-name b { color: var(--accent); }
.t-nav { display: flex; gap: 2px; }
.t-nav a { padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); border-radius: 8px; white-space: nowrap; }
.t-nav a:hover, .t-nav a.active { color: var(--accent-ink); background: var(--accent-soft); }
.t-spacer { flex: 1; }
/* menü yoksa kayan son yazılar */
.t-ticker { flex: 1; display: flex; align-items: center; gap: 12px; min-width: 0; overflow: hidden; }
.t-ticker-label { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 6px 12px; border-radius: 7px; }
.t-ticker-view { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.t-ticker-track { display: inline-flex; align-items: center; gap: 30px; white-space: nowrap; animation: t-marquee 55s linear infinite; }
.t-ticker:hover .t-ticker-track { animation-play-state: paused; }
@keyframes t-marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.t-ticker-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.t-ticker-item:hover { color: var(--accent-ink); }
.t-ticker-item::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--accent); flex-shrink: 0; transform: rotate(45deg); }
.t-search { display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 9px; padding: 9px 13px; min-width: 210px; color: var(--ink-3); }
.t-search input { border: 0; background: transparent; outline: 0; font-family: inherit; font-size: 13px; color: var(--ink); width: 100%; }
.t-mobile-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 9px; cursor: pointer; color: var(--ink-2); }

/* ═══ KAPAK (lider) ═══ */
.t-cover { padding: 40px 0 8px; }
.t-cover-in { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: end; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); cursor: pointer; transition: .2s var(--ease); }
.t-cover-in:hover { transform: translateY(-3px); }
.t-cover-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); padding: 6px 12px; border-radius: 100px; margin-bottom: 20px; }
.t-cover h2 { font-size: clamp(26px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -.03em; font-weight: 800; text-wrap: balance; color: var(--ink); }
.t-cover-in:hover h2 { color: var(--accent-ink); }
.t-cover p { margin-top: 16px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.t-cover-side { border-left: 2px solid var(--accent); padding-left: 22px; }
.t-cover-meta { display: flex; flex-direction: column; gap: 14px; }
.t-cover-meta .row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); }
.t-cover-meta .row .ic { width: 32px; height: 32px; border-radius: 9px; background: var(--surface-2); display: grid; place-items: center; color: var(--accent); flex-shrink: 0; }
.t-cover-meta .row b { color: var(--ink); font-weight: 700; }
.t-mini-av { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* ═══ KICKER ═══ */
.t-kicker { display: flex; align-items: baseline; justify-content: space-between; margin: 40px 0 22px; gap: 12px; }
.t-kicker h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; display: flex; align-items: center; gap: 11px; color: var(--ink); }
.t-kicker h3::before { content: ""; width: 5px; height: 20px; background: var(--accent); border-radius: 3px; }
.t-kicker .cnt { font-size: 12px; color: var(--ink-3); white-space: nowrap; }

/* ═══ IZGARA (tam genişlik, sidebar YOK) ═══ */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); cursor: pointer; transition: .2s var(--ease); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.t-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.t-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.t-card:hover::before { transform: scaleX(1); }
.t-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.t-card-cat { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); }
.t-card-num { font-size: 13px; font-weight: 800; color: var(--line-2); font-variant-numeric: tabular-nums; }
.t-card:hover .t-card-num { color: var(--accent); }
.t-card h4 { font-size: 17px; line-height: 1.3; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.t-card:hover h4 { color: var(--accent-ink); }
.t-card p { font-size: 13px; color: var(--ink-2); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.t-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-3); }
.t-card-foot .a { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-2); }
.t-av { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.t-card-read { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }

.t-empty { text-align: center; padding: 56px 20px; color: var(--ink-3); background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.t-empty i { font-size: 38px; margin-bottom: 14px; display: block; opacity: .5; }

/* ═══ PAGINATION ═══ */
.t-pag { display: flex; justify-content: center; gap: 8px; margin: 36px 0 60px; flex-wrap: wrap; }
.t-pag a { min-width: 40px; height: 40px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--ink-2); background: var(--surface); font-variant-numeric: tabular-nums; transition: .15s; }
.t-pag a:hover { border-color: var(--accent); color: var(--accent); }
.t-pag a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.t-pag .dots { border: 0; background: transparent; min-width: 20px; }

/* ═══ SINGLE (sağ sidebar var) ═══ */
.t-single-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding: 44px 0 32px; }
.t-crumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); margin-bottom: 18px; flex-wrap: wrap; max-width: 100%; }
.t-crumb a { color: var(--accent-ink); font-weight: 600; flex-shrink: 0; }
.t-crumb .s { color: var(--line-2); flex-shrink: 0; }
.t-crumb > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.t-single-hero h1 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.14; letter-spacing: -.02em; font-weight: 800; margin-bottom: 18px; text-wrap: pretty; color: var(--ink); }
.t-single-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-size: 13px; }
.t-single-meta > span { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 9px; padding: 7px 13px; color: var(--ink-2); }
.t-single-meta .au { font-weight: 700; padding-left: 6px; }
.t-single-meta .t-av { width: 22px; height: 22px; }
.t-progress { height: 3px; background: var(--line); position: sticky; top: 70px; z-index: 40; }
.t-progress span { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--accent); }
.t-single-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 38px; max-width: var(--maxw, 1200px); margin: 0 auto; padding: 36px 24px 40px; align-items: start; }
.t-single-wrap--full { grid-template-columns: 1fr; max-width: 840px; }
.t-article { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 36px 42px; box-shadow: var(--shadow); color: var(--ink); }
.t-article > *:first-child { margin-top: 0; }
.t-article p { margin-bottom: 16px; color: var(--ink-2); line-height: 1.8; font-size: 15px;  text-align: justify; }
.t-article p:last-child { margin-bottom: 0; }
.t-article h2 { font-size: 22px; margin: 28px 0 12px; font-weight: 800; display: flex; align-items: center; gap: 11px; color: var(--ink); }
.t-article h2::before { content: ""; width: 4px; height: 22px; background: var(--accent); border-radius: 2px; }
.t-article h3 { font-size: 18px; margin: 22px 0 10px; color: var(--ink); }
.t-article ul, .t-article ol { margin: 0 0 16px 22px; color: var(--ink-2); }
.t-article li { margin-bottom: 8px; line-height: 1.7; }
.t-article a { color: var(--accent-ink); font-weight: 600; }
.t-article img { border-radius: 12px; margin: 16px 0; }
.t-article blockquote { border-left: 4px solid var(--accent); background: var(--surface-2); padding: 14px 20px; border-radius: 0 12px 12px 0; margin: 20px 0; color: var(--ink); }
.t-article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.t-article th, .t-article td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.t-article th { background: var(--surface-2); font-weight: 700; }
.t-lead-p { font-size: 17px !important; color: var(--ink) !important; font-weight: 500; line-height: 1.6 !important; }

.t-share { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 18px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); flex-wrap: wrap; }
.t-share-label { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.t-share-btns { display: flex; gap: 8px; }
.t-share-btns a { width: 38px; height: 38px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: .15s; }
.t-share-btns a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Single sidebar */
.t-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; align-self: start; }
.t-box { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); }
.t-box-t { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; color: var(--ink); }
.t-box-t::before { content: ""; width: 16px; height: 2px; background: var(--accent); }
.t-rec { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.t-rec:last-child { border-bottom: 0; padding-bottom: 0; }
.t-rec .tm { font-size: 11px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.t-rec .tt { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.t-rec:hover .tt { color: var(--accent-ink); }
.t-pop { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: start; }
.t-pop:last-child { border-bottom: 0; padding-bottom: 0; }
.t-pop-n { font-size: 20px; font-weight: 800; color: var(--accent); opacity: .35; font-variant-numeric: tabular-nums; line-height: 1; }
.t-pop:hover .t-pop-n { opacity: 1; }
.t-pop-t { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.t-pop:hover .t-pop-t { color: var(--accent-ink); }
.t-cat-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-2); }
.t-cat-row:last-child { border-bottom: 0; }
.t-cat-row:hover { color: var(--accent-ink); }
.t-cat-n { font-size: 11px; font-weight: 700; color: var(--ink-3); background: var(--surface-2); padding: 2px 9px; border-radius: 100px; }
.t-social-row { display: flex; gap: 9px; }
.t-social-row a { width: 38px; height: 38px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: .15s; }
.t-social-row a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Profile */
.t-profile-head { display: flex; align-items: center; gap: 18px; }
.t-profile-avatar { width: 64px; height: 64px; border-radius: 16px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 26px; font-weight: 800; flex-shrink: 0; transform: rotate(-4deg); }
.t-profile-head h1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.t-profile-web { display: inline-flex; color: var(--accent); }
.t-profile-info { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 22px 26px; display: flex; flex-direction: column; gap: 12px; }
.t-info-row { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.t-info-row i { color: var(--accent); width: 16px; }
.t-info-row strong { color: var(--ink); font-weight: 700; }
.t-map-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.t-map-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.t-map-btn:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ═══ KATEGORİ ═══ */
.t-cat-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding: 40px 0 28px; }
.t-cat-hero h1 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.14; letter-spacing: -.02em; font-weight: 800; margin: 6px 0 12px; color: var(--ink); }
.t-cat-desc { font-size: 15px; color: var(--ink-2); max-width: 62ch; line-height: 1.6; margin-bottom: 14px; }
.t-cat-count { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 7px 14px; border-radius: 100px; }

/* ═══ ARAMA ═══ */
.t-search-head { padding: 34px 0 6px; }
.t-search-head h1 { font-size: clamp(24px, 3.2vw, 32px); letter-spacing: -.02em; margin-bottom: 18px; color: var(--ink); }
.t-search-form { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 6px 6px 6px 16px; box-shadow: var(--shadow); max-width: 560px; color: var(--ink-3); }
.t-search-form input { flex: 1; border: 0; background: transparent; outline: 0; font-family: inherit; font-size: 15px; color: var(--ink); }
.t-search-form button { padding: 10px 22px; background: var(--accent); color: #fff; border: 0; border-radius: 9px; font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer; }
.t-search-info { margin-top: 14px; font-size: 14px; color: var(--ink-2); }
.t-search-info strong { color: var(--accent-ink); }

/* ═══ 404 ═══ */
.t-404 { padding: 70px 0; }
.t-404-inner { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.t-404-code { font-size: clamp(90px, 16vw, 150px); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--accent); }
.t-404-title { font-size: 28px; font-weight: 800; margin: 8px 0 14px; color: var(--ink); }
.t-404-text { font-size: 16px; color: var(--ink-2); margin-bottom: 26px; line-height: 1.6; }
.t-404-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.t-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 28px; background: var(--accent); color: #fff; border-radius: 10px; font-weight: 700; font-size: 14px; transition: .15s; }
.t-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.t-404-search { display: flex; gap: 8px; width: 100%; max-width: 400px; }
.t-404-search input { flex: 1; padding: 12px 18px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; background: var(--surface); color: var(--ink); font-family: inherit; outline: 0; }
.t-404-search button { padding: 12px 20px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); cursor: pointer; }
.t-404-sug { max-width: 1000px; margin: 0 auto; }
.t-404-sug-t { text-align: center; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--ink-3); margin-bottom: 22px; }
.t-404-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.t-404-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; transition: .18s; }
.t-404-item:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); }
.t-404-item h4 { font-size: 15.5px; line-height: 1.35; font-weight: 700; color: var(--ink); }
.t-404-item:hover h4 { color: var(--accent); }
.t-404-item .dt { font-size: 12px; color: var(--ink-3); font-weight: 600; }
@media (max-width: 800px) { .t-404-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .t-404-grid { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */
.t-footer { background: var(--footer-bg); color: var(--footer-ink); padding: 56px 0 0; margin-top: 20px; }
.t-footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr 1fr; gap: 34px; padding-bottom: 44px; }
.t-flogo { display: flex; align-items: center; gap: 11px; }
.t-flogo-m { width: 38px; height: 38px; border-radius: 11px; background: var(--accent); display: grid; place-items: center; color: #fff; font-size: 17px; font-weight: 800; transform: rotate(-4deg); }
.t-flogo-n { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--footer-strong); }
.t-fabout p { font-size: 13px; color: var(--footer-ink); margin: 15px 0 16px; line-height: 1.65; max-width: 32ch; }
.t-fstatus { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--footer-strong); margin-bottom: 16px; }
.t-fstatus .led { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(91,91,240,.25); }
.t-fsoc { display: flex; gap: 9px; }
.t-fsoc a { width: 38px; height: 38px; border-radius: 9px; background: var(--footer-chip); display: grid; place-items: center; color: var(--footer-ink); transition: .15s; }
.t-fsoc a:hover { background: var(--accent); color: #fff; }
.t-fcol-t { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--footer-strong); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.t-fcol-t .d { width: 6px; height: 6px; background: var(--accent); border-radius: 2px; }
.t-flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.t-flinks a { font-size: 13px; color: var(--footer-ink); line-height: 1.4; }
.t-flinks a:hover { color: var(--footer-strong); }
.t-ftopics { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--footer-line); }
.t-ftopics .l { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--footer-dim); }
.t-ftopics a { font-size: 12px; color: var(--footer-ink); background: var(--footer-chip); border: 1px solid var(--footer-line); padding: 7px 14px; border-radius: 100px; }
.t-ftopics a:hover { border-color: var(--accent); color: var(--footer-strong); }
.t-fbottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 26px; border-top: 1px solid var(--footer-line); font-size: 12px; color: var(--footer-dim); flex-wrap: wrap; gap: 14px; }
.t-flegal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.t-flegal a { color: var(--footer-ink); }
.t-flegal a:hover { color: var(--footer-strong); }
.t-flocale { display: flex; align-items: center; gap: 14px; }
.t-flang { display: inline-flex; align-items: center; gap: 7px; background: var(--footer-chip); border: 1px solid var(--footer-line); padding: 7px 14px; border-radius: 100px; color: var(--footer-strong); font-weight: 600; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 940px) {
  .t-cover-in { grid-template-columns: 1fr; gap: 26px; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .t-single-wrap { grid-template-columns: 1fr; }
  .t-side { position: static; }
  .t-footer-main { grid-template-columns: 1fr 1fr; gap: 26px; }
  .t-nav, .t-ticker { display: none; }
  .t-header-in::after { content: ""; flex: 1; }
  .t-search { min-width: 0; }
}
@media (max-width: 620px) {
  .t-wrap { padding: 0 16px; }
  .t-search { display: none; }
  .t-mobile-toggle { display: grid; place-items: center; }
  .t-grid { grid-template-columns: 1fr; }
  .t-footer-main { grid-template-columns: 1fr; }
  .t-article { padding: 24px 18px; }
  .t-single-wrap { padding: 28px 16px; }
  .t-cover { padding: 26px 0 6px; }
  .t-cover-in { padding: 26px 22px; }
  .t-fbottom, .t-single-meta { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
