/*
Theme Name: KI-Radar
Theme URI: https://ki-radar.de
Author: KI-Radar
Author URI: https://ki-radar.de
Description: Unabhängige KI-Tool Vergleiche und Reviews — Custom Theme mit ACF Pro, CPT und Gutenberg Block Patterns.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
Text Domain: ki-radar
*/

/* ============================================
   DESIGN TOKENS + GLOBALS
   ============================================ */
:root {
  --bg: #ffffff;
  --bg-elev: #fafaf9;
  --bg-sunken: #f4f3f0;
  --ink: #0b0b0c;
  --ink-2: #2a2a2d;
  --ink-3: #56565a;
  --ink-4: #8a8a8f;
  --line: #e8e6e0;
  --line-2: #d8d6d0;
  --accent: #2747ff;
  --accent-ink: #1a31cc;
  --accent-soft: #eef0ff;
  --signal: #14b86a;
  --warn: #d97706;
  --gold: #b08a3e;

  --font-display: "Fraunces", "Charter", "Georgia", serif;
  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gap-xs: 4px; --gap-s: 8px; --gap-m: 16px; --gap-l: 24px;
  --gap-xl: 40px; --gap-xxl: 72px;
  --radius-s: 6px; --radius-m: 10px; --radius-l: 16px;
  --maxw: 1240px;
}

[data-theme="dark"] {
  --bg: #0a0c10; --bg-elev: #0f1218; --bg-sunken: #070910;
  --ink: #f5f4ef; --ink-2: #d4d3cd; --ink-3: #9a9994; --ink-4: #65645f;
  --line: #1c1f27; --line-2: #262932;
  --accent: #5c7aff; --accent-ink: #8aa0ff; --accent-soft: #131830;
  --signal: #2fd884; --warn: #f59e0b; --gold: #d4a857;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
  50%      { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 5%, transparent); }
}
.mono { font-family: var(--font-mono); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  background: transparent; color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-elev); }
.btn-sm { padding: 8px 13px; font-size: 12.5px; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--gap-xxl) 0; }
.section-tight { padding: var(--gap-xl) 0; }
.section-head {
  display: flex; align-items: end;
  justify-content: space-between;
  gap: var(--gap-l);
  margin-bottom: var(--gap-xl);
  padding-bottom: var(--gap-m);
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.section-head p { margin: 0; color: var(--ink-3); max-width: 36ch; font-size: 15px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: var(--gap-l);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
}
.brand__mark {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background:
    radial-gradient(circle at center, transparent 30%, var(--accent) 30.5%, transparent 31.5%),
    radial-gradient(circle at center, transparent 60%, var(--accent) 60.5%, transparent 61.5%),
    conic-gradient(from 0deg, transparent 0%, var(--accent) 25%, transparent 25.1%);
  position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; border: 1px solid var(--accent); opacity: 0.5;
}
.nav { display: flex; gap: 4px; align-items: center; }
.nav__item {
  padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2);
  position: relative; display: inline-flex; align-items: center; gap: 4px;
}
.nav__item:hover { background: var(--bg-elev); color: var(--ink); }
.nav__item.is-active { color: var(--ink); }
.nav__item.is-active::after {
  content: ""; position: absolute;
  bottom: -1px; left: 12px; right: 12px;
  height: 2px; background: var(--accent);
}
.nav__caret { width: 8px; height: 8px; opacity: .5; }
.search-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: var(--bg-elev); border: 1px solid var(--line);
  color: var(--ink-3); font-size: 13px; min-width: 200px;
}
.search-trigger:hover { border-color: var(--line-2); color: var(--ink-2); }
.search-trigger kbd {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px;
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg); border: 1px solid var(--line);
}
.nav-mobile-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; color: var(--ink);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--gap-xl) 0 var(--gap-l);
  background: var(--bg-elev);
  margin-top: var(--gap-xxl);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-xl);
  padding-bottom: var(--gap-xl);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--gap-l);
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: var(--ink-2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-4); font-family: var(--font-mono);
}

/* ============================================
   HERO + RADAR
   ============================================ */
.hero {
  padding: 56px 0 var(--gap-xxl);
  position: relative; overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: var(--gap-xl); align-items: center;
}
.hero__copy { max-width: 620px; position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.96; letter-spacing: -0.035em;
  margin: 24px 0; color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__title .underline-flag { position: relative; white-space: nowrap; }
.hero__title .underline-flag::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.07em;
  height: 0.06em; background: var(--accent); opacity: 0.3;
}
.hero__sub {
  font-size: 18px; color: var(--ink-3);
  max-width: 52ch; line-height: 1.55; margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__cta-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-m); margin-top: 56px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display); font-size: 42px;
  letter-spacing: -0.02em; line-height: 1; color: var(--ink);
}
.stat__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 6px;
}

/* Radar */
.radar {
  position: relative; aspect-ratio: 1/1;
  width: 100%; max-width: 520px; margin-left: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--accent) 5%, transparent) 0%, transparent 60%),
    radial-gradient(circle at center, var(--bg-elev) 0%, var(--bg) 100%);
}
.radar__grid { position: absolute; inset: 0; pointer-events: none; }
.radar__ring {
  position: absolute; border: 1px dashed color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.radar__ring--1 { width: 25%; height: 25%; }
.radar__ring--2 { width: 50%; height: 50%; }
.radar__ring--3 { width: 75%; height: 75%; }
.radar__ring--4 { width: 100%; height: 100%; border-style: solid; opacity: .8; }
.radar__cross {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    linear-gradient(to right, transparent calc(50% - .5px), color-mix(in srgb, var(--ink) 8%, transparent) calc(50% - .5px), color-mix(in srgb, var(--ink) 8%, transparent) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(to bottom, transparent calc(50% - .5px), color-mix(in srgb, var(--ink) 8%, transparent) calc(50% - .5px), color-mix(in srgb, var(--ink) 8%, transparent) calc(50% + .5px), transparent calc(50% + .5px));
}
.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, color-mix(in srgb, var(--accent) 35%, transparent) 0deg, color-mix(in srgb, var(--accent) 12%, transparent) 25deg, transparent 60deg, transparent 360deg);
  animation: radar-sweep 4s linear infinite;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .radar__sweep { mix-blend-mode: screen; }
.radar__beam {
  position: absolute; top: 50%; left: 50%;
  width: 50%; height: 1.5px;
  background: linear-gradient(to right, var(--accent), transparent);
  transform-origin: 0 50%;
  animation: radar-beam 4s linear infinite;
  box-shadow: 0 0 6px color-mix(in srgb, var(--accent) 60%, transparent);
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes radar-beam  { to { transform: rotate(360deg); } }
.radar__center {
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
.blip {
  position: absolute; top: 50%; left: 50%;
  display: flex; align-items: center; gap: 6px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.blip__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
  flex-shrink: 0;
  animation: blip-pulse 4s linear infinite;
}
.blip__label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.02em;
  background: var(--bg); border: 1px solid var(--line);
  padding: 3px 7px; border-radius: 4px; color: var(--ink-2); white-space: nowrap;
  animation: blip-fade 4s linear infinite;
}
.blip--left { flex-direction: row-reverse; }
@keyframes blip-pulse {
  0%,100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 4%, transparent); }
}
@keyframes blip-fade {
  0% { opacity: 0.4; } 20% { opacity: 1; } 60% { opacity: 0.95; } 100% { opacity: 0.4; }
}
.hero__telemetry {
  position: absolute; font-family: var(--font-mono);
  font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.02em;
}
.hero__telemetry--tr { top: 0; right: 0; text-align: right; }
.hero__telemetry--bl { bottom: 0; left: 0; }
.hero__telemetry b { color: var(--ink); font-weight: 500; }
.radar-wrap { position: relative; }
@media (prefers-reduced-motion: reduce) {
  .radar__sweep, .radar__beam, .blip__dot, .blip__label { animation: none; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap-l); padding: 18px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3);
}
.trust-strip__item { display: flex; align-items: center; gap: 8px; }
.trust-strip__item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   LEADERBOARD
   ============================================ */
.leaderboard {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-m);
}
.lb-card {
  position: relative; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color .2s ease, transform .2s ease; overflow: hidden;
}
.lb-card:hover { border-color: var(--ink-2); transform: translateY(-2px); }
.lb-card__rank {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-display); font-size: 60px;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--line-2); pointer-events: none;
}
.lb-card--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.lb-card--featured .lb-card__rank { color: color-mix(in srgb, var(--bg) 20%, transparent); }
.lb-card--featured .lb-card__name { color: var(--bg); }
.lb-card--featured .lb-card__tag { color: color-mix(in srgb, var(--bg) 70%, transparent); }
.lb-card--featured .lb-card__check { color: var(--accent-soft); }
.lb-card--featured .lb-card__price { color: color-mix(in srgb, var(--bg) 60%, transparent); border-color: color-mix(in srgb, var(--bg) 20%, transparent); }
.lb-card--featured .btn-primary { background: var(--accent); color: #fff; }
.lb-card__top { display: flex; align-items: flex-start; gap: 12px; position: relative; z-index: 1; }
.tool-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  flex-shrink: 0; color: #fff;
}
.tool-logo--chatgpt   { background: linear-gradient(135deg, #10a37f, #0d8268); }
.tool-logo--claude    { background: linear-gradient(135deg, #d97757, #c25d3a); }
.tool-logo--neuroflash{ background: linear-gradient(135deg, #ff4d6d, #c92a4a); }
.tool-logo--jasper    { background: linear-gradient(135deg, #6b5fff, #4a3eff); }
.tool-logo--perplexity{ background: linear-gradient(135deg, #20808d, #156270); }
.tool-logo--gemini    { background: linear-gradient(135deg, #4285f4, #1a56db); }
.tool-logo--midjourney{ background: linear-gradient(135deg, #1c1c1c, #444); }
.tool-logo--default   { background: linear-gradient(135deg, #56565a, #2a2a2d); }
.lb-card__name {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); margin: 0;
}
.lb-card__tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 4px;
}
.score { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--font-display); letter-spacing: -0.02em; }
.score__num { font-size: 32px; line-height: 1; }
.score__total { font-size: 14px; color: var(--ink-3); }
.score-bar { display: flex; gap: 3px; margin-top: 6px; }
.score-bar span { width: 12px; height: 4px; background: var(--line-2); border-radius: 2px; }
.score-bar span.on { background: var(--accent); }
.lb-card--featured .score-bar span     { background: color-mix(in srgb, var(--bg) 20%, transparent); }
.lb-card--featured .score-bar span.on  { background: var(--accent); }
.lb-card__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.lb-card--featured .lb-card__bullets { color: color-mix(in srgb, var(--bg) 85%, transparent); }
.lb-card__bullets li { display: flex; gap: 8px; align-items: baseline; }
.lb-card__check { font-family: var(--font-mono); font-size: 11px; color: var(--accent); flex-shrink: 0; }
.lb-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto;
}
.lb-card--featured .lb-card__foot { border-color: color-mix(in srgb, var(--bg) 14%, transparent); }
.lb-card__price {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px;
}
.pick-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); padding: 4px 8px;
  background: var(--accent-soft); border-radius: 4px; width: fit-content;
}
.lb-card--featured .pick-tag { background: color-mix(in srgb, var(--accent) 25%, transparent); color: #fff; }

/* ============================================
   CATEGORIES
   ============================================ */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-m); }
.cat {
  position: relative; padding: 28px 24px 24px;
  border: 1px solid var(--line); border-radius: var(--radius-l);
  background: var(--bg); display: flex; flex-direction: column;
  min-height: 220px; overflow: hidden; transition: all .2s;
}
.cat:hover { border-color: var(--ink-2); }
.cat:hover .cat__arrow { transform: translateX(4px) rotate(-45deg); }
.cat__num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.cat__name {
  font-family: var(--font-display); font-size: 30px;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); margin: 0 0 8px;
}
.cat__count { font-size: 13px; color: var(--ink-3); margin-bottom: auto; }
.cat__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line); margin-top: 24px;
}
.cat__list { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; }
.cat__arrow { font-size: 18px; transform: rotate(-45deg); transition: transform .25s ease; }

/* ============================================
   ARTICLE FEED
   ============================================ */
.feed { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--gap-l); }
.article-card { display: flex; flex-direction: column; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); }
.article-card--lead { grid-row: span 2; padding-top: 0; border-top: 0; }
.article-card__cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
}
.article-card__title {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); margin: 0;
}
.article-card--lead .article-card__title { font-size: 44px; }
.article-card__title:hover { color: var(--accent); }
.article-card__meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; }
.article-card__excerpt { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; margin: 0; max-width: 60ch; }
.article-card__hero {
  background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent) 10%, transparent) 0px, color-mix(in srgb, var(--accent) 10%, transparent) 8px, var(--bg-elev) 8px, var(--bg-elev) 16px);
  height: 240px; border-radius: var(--radius-m);
  display: flex; align-items: flex-end; padding: 16px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
}

/* ============================================
   FINDER CTA
   ============================================ */
.finder-cta {
  position: relative; background: var(--ink); color: var(--bg);
  border-radius: var(--radius-l); padding: 56px 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap-xl);
  align-items: center; overflow: hidden;
}
.finder-cta::before {
  content: ""; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.finder-cta h3 {
  font-family: var(--font-display); font-size: 48px; font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.03; margin: 0 0 16px;
}
.finder-cta p { font-size: 16px; color: color-mix(in srgb, var(--bg) 70%, transparent); max-width: 44ch; margin: 0 0 24px; line-height: 1.55; }
.finder-cta__visual { position: relative; z-index: 1; }
.finder-step {
  background: color-mix(in srgb, var(--bg) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  padding: 12px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.finder-step b { color: var(--bg); font-weight: 500; }
.finder-step span { color: color-mix(in srgb, var(--bg) 50%, transparent); }
.finder-step__pill { font-size: 10px; padding: 3px 7px; background: var(--accent); color: #fff; border-radius: 4px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl);
  align-items: center; padding: 56px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.newsletter h3 {
  font-family: var(--font-display); font-size: 44px;
  letter-spacing: -0.025em; margin: 0 0 12px; font-weight: 400;
}
.newsletter p { font-size: 15px; color: var(--ink-3); margin: 0; max-width: 44ch; line-height: 1.5; }
.newsletter__form {
  display: flex; gap: 8px; padding: 6px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--bg); max-width: 460px;
}
.newsletter__form input {
  flex: 1; border: 0; background: transparent;
  padding: 10px 16px; font-family: inherit;
  font-size: 14.5px; color: var(--ink); outline: none;
}
.newsletter__hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 0; letter-spacing: 0.02em; }

/* ============================================
   PAGE HEADER (shared: category, article)
   ============================================ */
.page-head { padding: 48px 0 40px; border-bottom: 1px solid var(--line); }
.crumbs {
  display: flex; gap: 8px; font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--line-2); }
.page-head h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.03em; line-height: 1; margin: 0 0 24px; max-width: 18ch;
}
.page-head__lead { font-size: 18px; color: var(--ink-3); max-width: 60ch; line-height: 1.55; margin: 0; }

/* ============================================
   FILTER BAR (category page)
   ============================================ */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap-l); padding: 18px 0; border-bottom: 1px solid var(--line);
  position: sticky; top: 64px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 30;
}
.filter-group { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.filter-label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; margin-right: 4px; }
.filter-chip {
  padding: 6px 12px; border-radius: 999px; background: transparent;
  border: 1px solid var(--line-2); font-size: 12.5px; color: var(--ink-2);
  font-family: inherit; transition: all .15s;
}
.filter-chip:hover { border-color: var(--ink-2); }
.filter-chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-result { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.02em; }

/* ============================================
   TOOL GRID + CARD
   ============================================ */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-m); padding: var(--gap-xl) 0; }
.tool-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .2s; position: relative;
}
.tool-card:hover { border-color: var(--ink-2); transform: translateY(-2px); }
.tool-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.tool-card__id { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.tool-card__top { display: flex; align-items: center; gap: 12px; }
.tool-card__name { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.02em; margin: 0; }
.tool-card__role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.tool-card__desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0; }
.tool-card__metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.metric-num { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; }
.metric-label { font-size: 10px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.tool-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tool-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  padding: 3px 8px; background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 4px; color: var(--ink-2); letter-spacing: 0.02em;
}
.tool-tag--de   { background: color-mix(in srgb, var(--signal) 12%, transparent); border-color: color-mix(in srgb, var(--signal) 30%, transparent); color: var(--signal); }
.tool-tag--free { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 25%, transparent); color: var(--accent); }
.tool-card__foot { display: flex; gap: 8px; margin-top: auto; }
.tool-card__compare {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--bg);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-3);
}
.tool-card__compare.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   COMPARE DRAWER
   ============================================ */
.compare-drawer {
  position: fixed; bottom: 16px; right: 16px; z-index: 35;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius-l); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  font-family: var(--font-mono); font-size: 12px;
  transition: transform .25s ease, opacity .25s ease;
}
.compare-drawer.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.compare-drawer__count { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.compare-drawer__label { color: color-mix(in srgb, var(--bg) 65%, transparent); letter-spacing: 0.04em; }
.compare-drawer__items { display: flex; gap: 6px; }
.compare-drawer__chip { padding: 4px 10px; background: color-mix(in srgb, var(--bg) 12%, transparent); border-radius: 999px; font-size: 11px; }
.compare-drawer button {
  background: var(--accent); color: #fff; border: 0;
  border-radius: 999px; padding: 8px 14px;
  font-family: inherit; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============================================
   ARTICLE / REVIEW PAGE
   ============================================ */
.article-grid { display: grid; grid-template-columns: 200px 1fr 240px; gap: 56px; padding: 48px 0 0; }
.toc { position: sticky; top: 96px; align-self: start; font-family: var(--font-mono); font-size: 12px; }
.toc__title { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.toc a { color: var(--ink-3); display: block; padding: 4px 0; }
.toc a:hover { color: var(--ink); }
.toc a.is-active { color: var(--accent); }
.toc a.is-active::before { content: "▸ "; }
.article { max-width: 680px; }
.article__lead {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  line-height: 1.25; letter-spacing: -0.015em; color: var(--ink);
  margin: 0 0 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.article h2 { font-family: var(--font-display); font-weight: 400; font-size: 36px; letter-spacing: -0.02em; line-height: 1.1; margin: 56px 0 16px; }
.article h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: -0.015em; margin: 32px 0 12px; }
.article p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 0 0 18px; }
.article p strong { color: var(--ink); font-weight: 500; }
.article__byline { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-bottom: 32px; }
.article__byline-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-ink));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-size: 14px;
}
.article__byline b { color: var(--ink); font-weight: 500; }
.article__rail { position: sticky; top: 96px; align-self: start; display: flex; flex-direction: column; gap: 20px; }
.rail-card { border: 1px solid var(--line); border-radius: var(--radius-m); padding: 16px; font-size: 13px; }
.rail-card__title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px; }
.rail-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.rail-card a { color: var(--ink-2); }
.rail-card a:hover { color: var(--accent); }
.disclosure {
  background: var(--bg-elev); border-left: 3px solid var(--accent);
  padding: 14px 16px; font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-3); margin: 24px 0;
  border-radius: 0 var(--radius-s) var(--radius-s) 0; line-height: 1.5;
}
.compare-table { border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; margin: 32px 0; background: var(--bg); }
.compare-table__head {
  display: grid; grid-template-columns: 180px repeat(3, 1fr);
  background: var(--bg-elev); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 1px solid var(--line);
}
.compare-table__head > div { padding: 14px 16px; }
.compare-table__head .winner { background: var(--accent); color: #fff; }
.compare-table__head .winner::before { content: "★ Sieger"; display: block; font-size: 10px; margin-bottom: 2px; opacity: 0.8; }
.compare-row { display: grid; grid-template-columns: 180px repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 14px 16px; font-size: 13.5px; }
.compare-row > div:first-child { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.02em; text-transform: uppercase; background: var(--bg-elev); display: flex; align-items: center; }
.compare-row .winner { background: color-mix(in srgb, var(--accent) 5%, transparent); font-weight: 500; }
.compare-row .check { color: var(--signal); font-weight: 600; }
.pullquote {
  font-family: var(--font-display); font-size: 32px; letter-spacing: -0.02em; line-height: 1.2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 0; margin: 32px 0; color: var(--ink);
}
.pullquote::before { content: "\201C"; color: var(--accent); font-size: 1.2em; line-height: 0; vertical-align: -0.2em; }
.pullquote::after  { content: "\201D"; color: var(--accent); font-size: 1.2em; line-height: 0; vertical-align: -0.2em; }
.cta-bar {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: var(--ink); color: var(--bg);
  border-radius: var(--radius-m); margin: 24px 0;
}
.cta-bar__title { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.015em; }
.cta-bar__price { font-family: var(--font-mono); font-size: 11px; color: color-mix(in srgb, var(--bg) 65%, transparent); margin-top: 2px; }

/* ============================================
   FINDER MODAL
   ============================================ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center;
  background: color-mix(in srgb, #000 50%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 24px;
}
.modal.is-open { display: grid; }
.modal__panel {
  width: 100%; max-width: 580px; background: var(--bg);
  border-radius: var(--radius-l); padding: 36px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--bg-elev); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-3);
}
.modal__step-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal__progress { height: 2px; background: var(--line); border-radius: 1px; margin-bottom: 24px; overflow: hidden; }
.modal__progress span { display: block; height: 100%; background: var(--accent); transition: width .3s ease; }
.modal h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; letter-spacing: -0.02em; margin: 0 0 24px; line-height: 1.1; }
.choices { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.choice {
  text-align: left; padding: 16px 20px; border: 1px solid var(--line);
  border-radius: var(--radius-m); background: var(--bg); font-family: inherit;
  font-size: 15px; display: flex; align-items: center;
  justify-content: space-between; transition: all .15s;
}
.choice:hover { border-color: var(--ink-2); background: var(--bg-elev); }
.choice__label { color: var(--ink); }
.choice__hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.modal__actions { display: flex; justify-content: space-between; align-items: center; }
.result-tool {
  background: var(--bg-elev); padding: 24px; border-radius: var(--radius-m);
  margin: 16px 0 24px; display: flex; align-items: center; gap: 16px;
}
.result-tool__name { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.02em; }
.result-tool__why { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .leaderboard { grid-template-columns: 1fr 1fr; }
  .lb-card--featured { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .toc, .article__rail { position: static; }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .radar { max-width: 360px; margin: 0 auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .feed { grid-template-columns: 1fr 1fr; }
  .article-card--lead { grid-row: auto; grid-column: span 2; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-cta { grid-template-columns: 1fr; padding: 40px 28px; }
  .finder-cta h3 { font-size: 36px; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 0; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 24px; }
  .nav-mobile-toggle { display: flex; }
  .search-trigger { min-width: auto; }
  .search-trigger span { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 640px) {
  .leaderboard { grid-template-columns: 1fr; }
  .lb-card--featured { grid-column: auto; }
  .cats { grid-template-columns: 1fr; }
  .feed { grid-template-columns: 1fr; }
  .article-card--lead { grid-column: auto; }
  .tool-grid { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .compare-table__head, .compare-row { grid-template-columns: 100px repeat(3, 1fr); font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   KI-RADAR ARTIKEL-KOMPONENTEN CSS
   Für: ki-winner-box, ki-product-card, ki-tool-cta, ki-toc etc.
   ============================================================ */

/* --- Allgemeine Buttons --- */
.ki-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
  text-align: center;
}
.ki-btn:hover { opacity: .88; transform: translateY(-1px); }
.ki-btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0088cc 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,136,204,.35);
}
.ki-btn-blue {
  background: #1a6ef5;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26,110,245,.3);
}

/* --- Affiliate-Disclaimer --- */
.ki-affiliate-disclaimer {
  background: #fffbeb;
  border: 1px solid #f5c842;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #6b5900;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* --- Inhaltsverzeichnis --- */
.ki-toc {
  background: #f0f8ff;
  border: 1px solid #c7e3f8;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.ki-toc-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #0b2540;
}
.ki-toc-list {
  margin: 0;
  padding-left: 20px;
}
.ki-toc-list li {
  margin: 6px 0;
}
.ki-toc-list a {
  color: #0070c0;
  text-decoration: none;
  font-size: 14.5px;
}
.ki-toc-list a:hover { text-decoration: underline; }

/* --- Winner-Box (Testsieger) --- */
.ki-winner-box {
  background: linear-gradient(135deg, #001a33 0%, #002d55 100%);
  border: 2px solid #00aaff;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,170,255,.18);
}
.ki-winner-badge {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a0a00;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.ki-winner-name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0;
}
.ki-winner-stars {
  color: #ffd700;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.ki-winner-sub {
  color: #a0c8f0;
  font-size: 14px;
  margin-bottom: 20px;
}
.ki-no-cc {
  color: #6dcf8a;
  font-size: 13px;
  margin-top: 10px;
  opacity: .85;
}

/* --- Produkt-Karte --- */
.ki-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin: 24px 0;
  overflow: hidden;
}
.ki-pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.ki-pc-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ki-pc-emoji { font-size: 24px; }
.ki-pc-name {
  font-weight: 700;
  font-size: 18px;
  color: #0b2540;
  display: block;
}
.ki-pc-tagline {
  font-size: 13px;
  color: #64748b;
  display: block;
}
.ki-pc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ki-pc-stars { color: #f59e0b; font-size: 16px; }
.ki-pc-score { font-weight: 700; font-size: 16px; color: #0b2540; }
.ki-pc-scoremax { color: #94a3b8; font-size: 13px; }
.ki-pc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ki-pc-pros, .ki-pc-cons {
  padding: 16px 22px;
}
.ki-pc-pros { border-right: 1px solid #e2e8f0; }
.ki-pc-pros strong { color: #16a34a; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.ki-pc-cons strong { color: #dc2626; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.ki-pc-pros ul, .ki-pc-cons ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.ki-pc-pros li, .ki-pc-cons li { font-size: 14px; margin: 4px 0; color: #334155; }
.ki-pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.ki-pc-price { font-size: 14px; color: #475569; }

/* --- Tool-CTA Banner --- */
.ki-tool-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f2942 0%, #1a4a7a 100%);
  border: 1px solid #2a6aaa;
  border-radius: 0;
  padding: 20px 28px;
  margin: 28px 0;
  gap: 20px;
}
.ki-tool-cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7dd3fc;
  margin-bottom: 4px;
}
.ki-tool-cta-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.ki-tool-cta-meta {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .ki-tool-cta { flex-direction: column; align-items: flex-start; }
  .ki-pc-body { grid-template-columns: 1fr; }
  .ki-pc-pros { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .ki-winner-box { padding: 20px 16px; }
  .ki-winner-name { font-size: 20px; }
}

/* --- Single-Post Layout --- */
.ki-single-wrap { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.ki-post-header { margin-bottom: 32px; }
.ki-post-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  color: #0b2540;
  margin-bottom: 12px;
}
.ki-post-meta { font-size: 14px; color: #64748b; margin-bottom: 8px; }
.ki-post-content { line-height: 1.8; color: #334155; font-size: 16px; }
.ki-post-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2540;
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid #00aaff;
}
.ki-post-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 28px 0 12px;
}
.ki-post-content p { margin: 0 0 18px; }
.ki-post-content ul, .ki-post-content ol { padding-left: 24px; margin-bottom: 18px; }
.ki-post-content li { margin: 6px 0; }
.ki-post-content a { color: #0070c0; }
.ki-post-content strong { color: #0b2540; font-weight: 700; }