/*
Theme Name: Toolspect
Theme URI: https://toolspect.com
Author: Toolspect
Description: Custom affiliate review theme for Toolspect.com — AI tool reviews, comparisons and rankings.
Version: 1.0
License: Private
Text Domain: toolspect
*/

/* ================================================
   TOOLSPECT THEME — COMPLETE STYLESHEET
   Psychology applied:
   - Navy (#1e3a5f) = trust, authority (LinkedIn, PayPal)
   - White bg       = cognitive ease, professional
   - Orange (#f97316) = highest-converting CTA colour
   - Clean typography = reduces friction, increases read time
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #111827;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: 'Outfit', sans-serif; }

/* ── DESIGN TOKENS ─────────────── */
:root {
  --white:     #ffffff;
  --off:       #f8f7f4;
  --ink:       #111827;
  --ink2:      #374151;
  --ink3:      #6b7280;
  --ink4:      #9ca3af;
  --border:    #e5e7eb;
  --border2:   #d1d5db;
  --navy:      #1e3a5f;
  --navy-dk:   #142844;
  --navy-lt:   #dbeafe;
  --orange:    #f97316;
  --orange-dk: #ea6c0a;
  --orange-lt: #fff7ed;
  --green:     #16a34a;
  --green-lt:  #dcfce7;
  --gold:      #f59e0b;
  --gold-lt:   #fef3c7;
  --max:       1160px;
  --r:         8px;
  --r-lg:      14px;
  --sh:        0 1px 8px rgba(0,0,0,0.06);
  --sh-md:     0 4px 20px rgba(0,0,0,0.10);
  --sh-lg:     0 8px 40px rgba(0,0,0,0.13);
}

/* ── LAYOUT ─────────────────────── */
.ts-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ── SHARED UTILITIES ──────────── */
.ts-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.ts-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.ts-b-navy  { background: var(--navy-lt); color: var(--navy); }
.ts-b-gold  { background: var(--gold-lt); color: #78350f; }
.ts-b-green { background: var(--green-lt); color: #14532d; }
.ts-b-gray  { background: #f3f4f6; color: var(--ink3); }
.ts-b-red   { background: #fee2e2; color: #991b1b; }

.ts-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
}
.ts-sp-stars { color: var(--gold); font-size: 10px; }

/* ── BUTTONS ─────────────────────── */
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.ts-btn-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 10px rgba(249,115,22,0.28);
}
.ts-btn-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(249,115,22,0.38);
  color: #fff;
}
.ts-btn-navy { background: var(--navy); color: #fff; }
.ts-btn-navy:hover { background: var(--navy-dk); color: #fff; transform: translateY(-1px); }
.ts-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.ts-btn-ghost:hover { border-color: #fff; color: #fff; }
.ts-btn-outline {
  background: transparent;
  color: var(--ink2);
  border: 1.5px solid var(--border2);
}
.ts-btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.ts-btn-sm { font-size: 13px; padding: 8px 16px; }

/* ── HEADER ─────────────────────── */
.ts-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: var(--sh);
}
.ts-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 20px;
}
.ts-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.ts-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.ts-nav { display: flex; align-items: center; gap: 2px; }
.ts-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.ts-nav a:hover,
.ts-nav .current-menu-item a,
.ts-nav a.current { background: var(--navy-lt); color: var(--navy); }

/* Hamburger */
.ts-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.ts-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.ts-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ts-burger.open span:nth-child(2) { opacity: 0; }
.ts-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ts-mob-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 20px 16px;
}
.ts-mob-nav.open { display: block; }
.ts-mob-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink2);
  border-radius: var(--r);
  margin-bottom: 2px;
  text-decoration: none;
  transition: background 0.15s;
}
.ts-mob-nav a:hover { background: var(--off); color: var(--navy); }

/* Category bar */
.ts-catbar {
  background: var(--navy);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ts-catbar::-webkit-scrollbar { display: none; }
.ts-catbar-inner {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.ts-catbar a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 10px 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  text-decoration: none;
}
.ts-catbar a:hover { color: #fff; }
.ts-catbar a.ts-cur { color: #fff; border-bottom-color: var(--orange); font-weight: 600; }

/* ── HOMEPAGE ─────────────────────── */
.ts-announce {
  background: var(--orange);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.ts-announce a { color: #fff; font-weight: 700; text-decoration: underline; }

.ts-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.ts-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.ts-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.ts-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.ts-hero h1 em { font-style: italic; color: #fdba74; }
.ts-hero-sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.75;
}
.ts-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.ts-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.ts-stat-num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.ts-stat-lbl { font-size: 11px; color: #64748b; margin-top: 2px; }

.ts-hero-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.ts-hc-img {
  height: 155px;
  background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}
.ts-hc-ribbon {
  position: absolute;
  top: 14px; right: 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 3px 0 0 3px;
}
.ts-hc-body { padding: 18px 20px; }
.ts-hc-meta { display: flex; gap: 5px; margin-bottom: 8px; flex-wrap: wrap; }
.ts-hc-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.ts-hc-score { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ts-score-xl { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; }
.ts-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.ts-verdict { font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-lt); padding: 3px 9px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.ts-hc-excerpt { font-size: 12px; color: var(--ink3); line-height: 1.6; margin-bottom: 14px; }
.ts-hc-cta {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: var(--r);
  transition: background 0.15s;
  text-decoration: none;
}
.ts-hc-cta:hover { background: var(--orange-dk); color: #fff; }

.ts-trust { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
.ts-trust-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; max-width: var(--max); margin: 0 auto; padding: 0 20px; font-size: 12px; color: var(--ink3); font-weight: 500; }
.ts-ti { display: flex; align-items: center; gap: 6px; }

.ts-body { max-width: var(--max); margin: 0 auto; padding: 40px 20px; display: grid; grid-template-columns: 1fr 286px; gap: 36px; align-items: start; }

.ts-sec-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 3px solid var(--navy); margin-bottom: 20px; }
.ts-sec-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); }
.ts-sec-link { font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; }
.ts-sec-link:hover { text-decoration: underline; }

.ts-art-list { margin-bottom: 36px; }
.ts-art-card { display: grid; grid-template-columns: 108px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); transition: opacity 0.15s; }
.ts-art-card:last-child { border-bottom: none; }
.ts-art-card:hover { opacity: 0.85; }
.ts-art-thumb { width: 108px; height: 76px; border-radius: var(--r); background: linear-gradient(135deg, var(--navy-lt), #bfdbfe); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.ts-art-badges { display: flex; gap: 5px; margin-bottom: 5px; flex-wrap: wrap; align-items: center; }
.ts-art-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 5px; }
.ts-art-title:hover { color: var(--navy); }
.ts-art-excerpt { font-size: 12px; color: var(--ink3); line-height: 1.6; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ts-art-foot { display: flex; align-items: center; gap: 10px; }
.ts-art-date { font-size: 11px; color: var(--ink4); }
.ts-art-more { font-size: 12px; font-weight: 600; color: var(--orange); margin-left: auto; }
.ts-art-more:hover { text-decoration: underline; }

.ts-big-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); margin-bottom: 18px; transition: all 0.2s; }
.ts-big-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.ts-big-img { height: 180px; background: linear-gradient(135deg, #142844, #1e3a5f 60%, #1e40af); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.ts-big-body { padding: 20px 22px; }
.ts-big-meta { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.ts-big-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.3; margin-bottom: 8px; letter-spacing: -0.02em; }
.ts-big-excerpt { font-size: 13px; color: var(--ink3); line-height: 1.65; margin-bottom: 14px; }
.ts-big-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.ts-big-link { font-size: 13px; font-weight: 600; color: var(--orange); }
.ts-big-link:hover { text-decoration: underline; }

.ts-sidebar { display: flex; flex-direction: column; gap: 20px; }
.ts-sw { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.ts-sw-head { background: var(--navy); padding: 11px 15px; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-transform: uppercase; }
.ts-sw-body { padding: 13px 15px; }
.ts-qp { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.ts-qp:last-child { border-bottom: none; padding-bottom: 0; }
.ts-qp-n { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--border2); line-height: 1; flex-shrink: 0; width: 24px; text-align: center; }
.ts-qp-n.ts-top { color: var(--orange); }
.ts-qp-info { flex: 1; }
.ts-qp-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 1px; }
.ts-qp-cat { font-size: 11px; color: var(--ink4); }
.ts-qp-score { font-size: 13px; font-weight: 800; color: var(--navy); flex-shrink: 0; font-family: 'Syne', sans-serif; }
.ts-cat-links { list-style: none; }
.ts-cat-links li { border-bottom: 1px solid var(--border); }
.ts-cat-links li:last-child { border-bottom: none; }
.ts-cat-links a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 13px; color: var(--ink2); transition: color 0.15s; text-decoration: none; }
.ts-cat-links a:hover { color: var(--navy); }
.ts-cat-ct { font-size: 11px; color: var(--ink4); }
.ts-nw { background: var(--navy); border-radius: var(--r-lg); padding: 18px 15px; }
.ts-nw h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.ts-nw p { font-size: 12px; color: #94a3b8; margin-bottom: 10px; line-height: 1.5; }
.ts-nw input { width: 100%; padding: 9px 11px; border-radius: 6px; border: none; font-size: 13px; font-family: 'Outfit', sans-serif; outline: none; margin-bottom: 7px; display: block; }
.ts-nw button { width: 100%; background: var(--orange); color: #fff; font-size: 13px; font-weight: 700; padding: 10px; border-radius: 6px; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; display: block; }
.ts-nw button:hover { background: var(--orange-dk); }
.ts-nw small { font-size: 10px; color: #475569; display: block; margin-top: 6px; text-align: center; }

.ts-tools-strip { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; }
.ts-tools-inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.ts-tools-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.ts-tools-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.ts-tools-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.ts-tool-tile { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 16px 12px; text-align: center; transition: all 0.2s; }
.ts-tool-tile:hover { border-color: var(--navy); box-shadow: var(--sh-md); transform: translateY(-3px); }
.ts-tt-icon { font-size: 26px; margin-bottom: 7px; }
.ts-tt-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.ts-tt-cat { font-size: 11px; color: var(--ink4); margin-bottom: 6px; }
.ts-tt-score { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--navy); }

/* ── FOOTER ─────────────────────── */
.ts-footer { background: var(--navy-dk); color: #94a3b8; padding: 52px 0 24px; }
.ts-ftr-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; max-width: var(--max); margin: 0 auto 36px; padding: 0 20px; }
.ts-ftr-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; display: flex; align-items: center; gap: 7px; margin-bottom: 10px; text-decoration: none; }
.ts-ftr-tagline { font-size: 13px; color: #64748b; line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.ts-ftr-nw input { width: 100%; padding: 9px 12px; border-radius: 6px 6px 0 0; border: none; font-size: 13px; font-family: 'Outfit', sans-serif; outline: none; margin-bottom: 2px; display: block; }
.ts-ftr-nw button { width: 100%; background: var(--orange); color: #fff; font-size: 13px; font-weight: 600; padding: 9px; border-radius: 0 0 6px 6px; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; display: block; }
.ts-ftr-nw small { display: block; font-size: 10px; color: #475569; margin-top: 5px; }
.ts-ftr-col h4 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #64748b; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ts-ftr-col ul { list-style: none; }
.ts-ftr-col li { margin-bottom: 8px; }
.ts-ftr-col a { font-size: 13px; color: #94a3b8; transition: color 0.15s; text-decoration: none; }
.ts-ftr-col a:hover { color: #fff; }
.ts-ftr-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 20px 0; max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.ts-ftr-disc { font-size: 11px; color: #475569; line-height: 1.7; max-width: 620px; }
.ts-ftr-copy { font-size: 11px; color: #334155; white-space: nowrap; }

/* ── SINGLE POST / ARTICLE ─────── */
.ts-single-wrap { max-width: 760px; margin: 0 auto; padding: 48px 20px; }
.ts-single-wrap h1 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.ts-single-wrap h2 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin: 44px 0 14px; line-height: 1.25; letter-spacing: -0.02em; border-left: 4px solid var(--orange); padding-left: 14px; }
.ts-single-wrap h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin: 28px 0 10px; }
.ts-single-wrap p { color: var(--ink2); margin-bottom: 18px; font-size: 17px; line-height: 1.85; }
.ts-single-wrap strong { color: var(--ink); }
.ts-single-wrap a { color: var(--navy); text-decoration: underline; }
.ts-single-wrap a:hover { color: var(--orange); }
.ts-single-wrap img { border-radius: 10px; box-shadow: var(--sh-md); margin: 20px 0; }
.ts-single-wrap table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.ts-single-wrap thead tr { background: var(--navy); }
.ts-single-wrap th { padding: 13px 16px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #e5e7eb; border: none; }
.ts-single-wrap td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--ink2); vertical-align: top; }
.ts-single-wrap tr:last-child td { border-bottom: none; }
.ts-single-wrap tr:nth-child(even) td { background: var(--off); }
.ts-single-wrap td:first-child { font-weight: 600; color: var(--ink); }
.ts-single-wrap blockquote { background: var(--navy-lt); border-left: 4px solid var(--navy); padding: 18px 22px; margin: 24px 0; border-radius: 0 var(--r) var(--r) 0; }
.ts-single-wrap blockquote p { color: var(--navy-dk); font-style: italic; margin-bottom: 0; }
.ts-single-wrap ul, .ts-single-wrap ol { margin: 10px 0 18px 22px; color: var(--ink2); font-size: 17px; line-height: 1.85; }
.ts-single-wrap li { margin-bottom: 6px; }

/* Post meta */
.ts-post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.ts-post-date { font-size: 13px; color: var(--ink4); }
.ts-post-author { font-size: 13px; color: var(--ink3); font-weight: 500; }

/* Disclosure box */
.ts-disclosure { background: var(--off); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; font-size: 12px; color: var(--ink3); line-height: 1.6; margin-bottom: 32px; }

/* ── BLOG ARCHIVE ──────────────── */
.ts-archive-wrap { max-width: var(--max); margin: 0 auto; padding: 40px 20px; }
.ts-archive-header { margin-bottom: 32px; }
.ts-archive-title { font-family: 'Syne', sans-serif; font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ts-archive-desc { font-size: 15px; color: var(--ink3); max-width: 520px; }
.ts-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.ts-post-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); transition: all 0.2s; }
.ts-post-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: var(--navy); }
.ts-post-card-thumb { height: 180px; background: linear-gradient(135deg, var(--navy-lt), #bfdbfe); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.ts-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ts-post-card-body { padding: 18px 20px; }
.ts-post-card-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 8px; }
.ts-post-card-title a { color: var(--ink); text-decoration: none; }
.ts-post-card-title a:hover { color: var(--navy); }
.ts-post-card-excerpt { font-size: 13px; color: var(--ink3); line-height: 1.6; margin-bottom: 14px; }
.ts-post-card-foot { display: flex; align-items: center; justify-content: space-between; }
.ts-post-card-date { font-size: 12px; color: var(--ink4); }
.ts-post-card-more { font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; }
.ts-post-card-more:hover { text-decoration: underline; }

/* ── STATIC PAGES (About, Privacy, etc) ── */
.ts-page-hero { background: var(--off); border-bottom: 1px solid var(--border); padding: 52px 20px; text-align: center; }
.ts-page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.03em; }
.ts-page-hero p { font-size: 17px; color: var(--ink3); max-width: 560px; margin: 0 auto; font-weight: 300; }
.ts-page-body { max-width: 760px; margin: 0 auto; padding: 48px 20px; }
.ts-page-body h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin: 44px 0 12px; border-left: 4px solid var(--orange); padding-left: 14px; }
.ts-page-body h2:first-child { margin-top: 0; }
.ts-page-body p { color: var(--ink2); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.ts-page-body strong { color: var(--ink); }
.ts-page-body ul { margin: 10px 0 18px 22px; color: var(--ink2); font-size: 15px; line-height: 1.8; }
.ts-page-body li { margin-bottom: 6px; }
.ts-legal-box { background: var(--navy-lt); border-left: 4px solid var(--navy); border-radius: 0 var(--r) var(--r) 0; padding: 16px 18px; margin: 20px 0; }
.ts-legal-box p { color: var(--navy-dk); font-size: 14px; margin-bottom: 0; font-weight: 500; }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 920px) {
  .ts-hero-inner { grid-template-columns: 1fr; }
  .ts-hero-card { max-width: 420px; }
  .ts-body { grid-template-columns: 1fr; }
  .ts-sidebar { display: none; }
  .ts-tools-grid { grid-template-columns: repeat(3,1fr); }
  .ts-ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ts-posts-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
@media (max-width: 600px) {
  .ts-nav { display: none; }
  .ts-burger { display: flex; }
  .ts-hero { padding: 36px 0 28px; }
  .ts-hero h1 { font-size: 26px; }
  .ts-art-card { grid-template-columns: 76px 1fr; gap: 12px; }
  .ts-art-thumb { width: 76px; height: 58px; font-size: 22px; }
  .ts-tools-grid { grid-template-columns: repeat(2,1fr); }
  .ts-ftr-grid { grid-template-columns: 1fr; gap: 22px; }
  .ts-trust-inner { gap: 10px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .ts-stats { gap: 16px; }
  .ts-posts-grid { grid-template-columns: 1fr; }
}
