/* ═══════════════════════════════════════════════════════════════════
   RevenueLab Blog — geteiltes Stylesheet für alle /blog/-Seiten.
   Farben/Logo/Nav/Footer 1:1 aus der Haupt-Landingpage (index.html)
   übernommen; Überschriften bleiben Syne (Marke), Fließtext läuft auf
   Inter (ruhigere Lesetypografie, wie im neuen Hilfe-Center etabliert).
   CTAs bewusst als Pillen (border-radius:999px) — abweichend vom
   9px-Radius der Haupt-Nav, siehe Hinweis im Deploy-Report.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg:       #0b0d12;
  --surface:  #11141c;
  --surface2: #161a24;
  --line:     rgba(255,255,255,.07);
  --line2:    rgba(74,143,255,.22);
  --accent:   #4a8fff;
  --green:    #00d68f;
  --amber:    #f0a500;
  --gradient: linear-gradient(135deg, #4a8fff, #00d68f);
  --text:     #eceef4;
  --muted:    #8b91a1;
  --dim:      #565b68;
  --mono:     'JetBrains Mono', monospace;
  --sans:     'Syne', -apple-system, sans-serif;
  --body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:     cubic-bezier(.16, 1, .3, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); font-family: var(--body);
  line-height: 1.6; margin: 0; -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; }
img { max-width: 100%; }

/* ── Nav (1:1 aus index.html) ── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(11,13,18,.65); border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease);
}
nav#nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: .9rem 1.5rem; display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-weight: 800; font-size: 1.02rem; letter-spacing: -.03em; font-family: var(--sans); }
.logo svg { width: 26px; height: 26px; border-radius: 7px; }
.logo span {
  background: linear-gradient(135deg, #4a8fff, #00d68f, #4a8fff); background-size: 300% 300%;
  animation: gradShift 8s ease infinite; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.nav-item { position: relative; }
.nav-btn {
  display: flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  color: var(--muted); padding: .6rem .7rem; border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.nav-btn:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-item.open .nav-btn { color: var(--text); background: rgba(255,255,255,.06); }
.nav-btn .chev { width: 13px; height: 13px; stroke: currentColor; transition: transform .25s var(--ease); }
.nav-item.open .nav-btn .chev { transform: rotate(180deg); }

.nav-link {
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  color: var(--muted); text-decoration: none; padding: .6rem .7rem; border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.link-login {
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.link-login:hover { color: var(--text); }

.nav-cta {
  font-family: var(--mono); font-weight: 600; font-size: .78rem; color: #06110c; text-decoration: none;
  background: var(--gradient); padding: .55rem 1.05rem; border-radius: 9px; white-space: nowrap;
  transition: transform .55s ease, box-shadow .55s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,143,255,.35); transition-duration: .2s; }

/* ─── Mega-Menu (1:1 aus index.html) ────────────────────────────────── */
.mega {
  position: absolute; top: calc(100% + 10px); left: 0;
  transform: translateY(-6px);
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.6);
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.mega.wide {
  min-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.4rem;
  padding: 1.1rem;
}
.mega-col { display: flex; flex-direction: column; gap: .1rem; }
.nav-item.open .mega { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-col-title {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--dim);
  margin: .6rem 0 .2rem;
}
.mega-col-title:first-child { margin-top: 0; }
.mega-item {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem .6rem; border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: background .15s ease;
}
.mega-item:hover { background: rgba(255,255,255,.05); }
.mega-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--surface2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--muted); transition: color .15s ease, border-color .15s ease;
}
.mega-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mega-item:hover .mega-icon { color: var(--accent); border-color: var(--line2); }
.mega-item b { display: block; font-size: .82rem; font-weight: 700; color: var(--text); font-family: var(--sans); }
.mega-item i { display: block; font-style: normal; font-size: .72rem; color: var(--muted); margin-top: .1rem; line-height: 1.4; font-family: var(--body); }
.mega-item.highlight { background: rgba(0,214,143,.06); border: 1px solid rgba(0,214,143,.18); }
.mega-item.highlight .mega-icon { background: rgba(0,214,143,.14); border-color: rgba(0,214,143,.25); }
.mega-item.highlight:hover .mega-icon { color: var(--green); }
.mega-item.current b { color: var(--accent); }

@media (max-width: 900px) {
  .nav-item, .nav-link { display: none; }
}
main { padding-top: 88px; }

/* ── Footer (1:1 aus index.html) ── */
footer { border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; background: rgba(11,13,18,.85); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
.foot-brand p { color: var(--dim); font-size: .8rem; margin-top: .9rem; max-width: 230px; line-height: 1.6; }
.foot-col h5 { font-family: var(--mono); font-size: .66rem; font-weight: 600; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: .82rem; padding: .25rem 0; transition: color .5s ease; }
.foot-col a:hover { color: var(--text); transition-duration: .2s; }
.foot-bottom { padding-top: 1.6rem; font-family: var(--mono); font-size: .68rem; color: var(--dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }

/* ── Blog-Index ── */
.blog-hero { padding: 64px 0 40px; text-align: center; }
.blog-hero h1 { font-family: var(--sans); font-size: clamp(32px, 5vw, 46px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.blog-hero h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.blog-hero p { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 auto; }

.tag-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 0 0 48px; }
.tag-pill { font-family: var(--mono); font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); text-decoration: none; display: inline-block; transition: border-color .15s, color .15s; }
.tag-pill:hover, .tag-pill.active { color: var(--text); border-color: var(--line2); }
.tag-pill.active { color: var(--accent); background: rgba(74,143,255,.1); }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-bottom: 60px; }
@media (max-width: 760px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; transition: border-color .18s, transform .18s; }
.post-card:hover { border-color: var(--line2); transform: translateY(-2px); }
.post-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; padding: 34px; }
@media (max-width: 760px) { .post-card.featured { grid-template-columns: 1fr; } }
.post-tag { font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--green); }
.post-card.featured .post-tag { color: var(--accent); }
.post-card h2, .post-card h3 { font-family: var(--sans); font-weight: 700; margin: 0; line-height: 1.3; }
.post-card h3 { font-size: 18px; }
.post-card.featured h2 { font-size: 28px; letter-spacing: -.01em; }
.post-excerpt { color: var(--muted); font-size: 13.5px; line-height: 1.6; flex: 1; }
.post-card.featured .post-excerpt { font-size: 15px; }
.post-meta { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); }
.post-card.featured .post-visual { aspect-ratio: 4/3; border-radius: 12px; background: var(--surface2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; color: var(--dim); position: relative; overflow: hidden; }
.post-card.featured .post-visual::before { content: ''; position: absolute; inset: 0; background: var(--gradient); opacity: .08; z-index: 1; pointer-events: none; }
.post-card.featured .post-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Einzelner Artikel: Sidebar / Artikel / Werbe-Spalte ── */
.layout {
  max-width: 1300px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 230px minmax(0, 720px) 260px;
  grid-template-areas: "side main promo";
  gap: 36px; align-items: start;
}
@media (max-width: 1180px) {
  .layout { grid-template-columns: 210px minmax(0, 1fr); grid-template-areas: "side main" "promo promo"; gap: 28px; }
  .promo-col { position: static; flex-direction: row; flex-wrap: wrap; max-height: none; overflow: visible; }
  .promo-col .promo { flex: 1 1 220px; }
}
@media (max-width: 760px) {
  .layout { grid-template-columns: 1fr; grid-template-areas: "side" "main" "promo"; gap: 20px; }
  .side-col { position: static; max-height: none; overflow: visible; }
}

.side-col { grid-area: side; position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; scrollbar-width: thin; }
.side-col::-webkit-scrollbar { width: 4px; }
.side-col::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 2px; }
.side-details { display: flex; flex-direction: column; gap: 20px; }
.side-summary { display: none; list-style: none; }
.side-summary::-webkit-details-marker { display: none; }
.side-back { display: flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: none; margin-bottom: 2px; }
.side-back:hover { color: var(--text); }
.side-section-label { font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--dim); margin-bottom: 8px; }
.side-links { display: flex; flex-direction: column; gap: 2px; }
.side-link { display: block; padding: 7px 10px; border-radius: 8px; font-size: 13px; color: var(--muted); text-decoration: none; line-height: 1.4; }
.side-link:hover { background: var(--surface2); color: var(--text); }
.side-link.active { background: rgba(74,143,255,.12); color: var(--accent); font-weight: 600; }
.side-group { margin-bottom: 4px; }
@media (max-width: 760px) {
  .side-summary {
    display: flex; align-items: center; justify-content: space-between; cursor: pointer;
    font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 13px 16px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  }
  .side-summary::after { content: '▾'; color: var(--dim); }
  .side-details[open] .side-summary { border-radius: 14px 14px 0 0; border-bottom: none; }
  .side-details[open] .side-summary::after { transform: rotate(180deg); }
  .side-inner { border: 1px solid var(--line); border-top: none; border-radius: 0 0 14px 14px; padding: 12px 16px 16px; background: var(--surface); }
  .side-back { display: none; }
}

.promo-col { grid-area: promo; position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; max-height: calc(100vh - 120px); overflow-y: auto; scrollbar-width: thin; }
.promo-col::-webkit-scrollbar { width: 4px; }
.promo-col::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 2px; }
.promo { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; min-width: 0; }
.promo-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--surface2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 12px; }
.promo-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.promo h4 { font-family: var(--sans); font-size: 14.5px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em; }
.promo p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0 0 14px; }
.promo-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--accent); text-decoration: none; }
.promo.highlight { background: linear-gradient(160deg, rgba(74,143,255,.1), rgba(0,214,143,.06)); border-color: var(--line2); }
.promo.highlight .promo-icon { background: var(--gradient); color: #06110c; border: none; }
.promo.trial .btn-trial-mini { display: block; text-align: center; font-family: var(--sans); font-weight: 800; font-size: 13px; color: #06110c; background: var(--gradient); padding: 10px; border-radius: 10px; margin-top: 4px; text-decoration: none; }

.post-page { grid-area: main; min-width: 0; padding: 40px 0 90px; }
.post-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.post-back:hover { color: var(--text); }
.post-page .post-tag { display: inline-block; margin-bottom: 14px; }
.post-page h1 { font-family: var(--sans); font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin: 0 0 18px; text-wrap: balance; }
.post-byline { display: flex; align-items: center; gap: 12px; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.post-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }
.post-byline-text { font-size: 13.5px; }
.post-byline-name { font-weight: 700; }
.post-byline-meta { color: var(--dim); font-family: var(--mono); font-size: 11.5px; margin-top: 2px; }

.post-hero-img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); margin-bottom: 20px; display: block; }
.press-badge { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; margin-bottom: 36px; font-size: 13.5px; color: var(--muted); }
.press-badge .press-ico { font-size: 16px; flex-shrink: 0; }
.press-badge a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(74,143,255,.4); }

.post-body { font-size: 16.5px; line-height: 1.8; }
.post-body p { margin: 0 0 22px; }
.post-body h2 { font-family: var(--sans); font-size: 24px; font-weight: 800; margin: 40px 0 16px; letter-spacing: -.01em; }
.post-body h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; padding: 0; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: #fff; }
.post-body code { font-family: var(--mono); font-size: 14px; background: var(--surface2); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }
.post-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(74,143,255,.4); }
.pull-quote { margin: 32px 0; padding: 22px 26px; background: var(--surface); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; font-size: 17px; font-weight: 600; color: var(--text); font-family: var(--sans); }

/* ── Tool-Chaos Chips (Gründer-Story) ── */
.chaos-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.chaos-chip { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem; background: var(--surface); text-decoration: line-through; text-decoration-color: rgba(229,72,77,.5); text-decoration-thickness: 1.5px; }

/* ── Kennzahlen-Streifen ── */
.stat-strip { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; margin: 26px 0 6px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 560px) { .stat-strip { grid-template-columns: 1fr 1fr; } }
.stat-strip .stat b { display: block; font-family: var(--mono); font-size: 24px; font-weight: 600; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-strip .stat span { font-family: var(--mono); font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: .07em; display: block; margin-top: 4px; line-height: 1.4; }
.stat-note { font-family: var(--mono); font-size: 10.5px; color: var(--dim); text-align: center; margin: 0 0 26px; }

/* ── Setup-Hinweis & Flow-Schritte ── */
.setup-note { display: flex; align-items: flex-start; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 22px 0 26px; }
.setup-note .ico { width: 30px; height: 30px; border-radius: 8px; background: rgba(74,143,255,.1); border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.setup-note p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.setup-note strong, .setup-note b { color: var(--text); }

.flow-steps { position: relative; margin: 0 0 26px; }
.flow-step { display: flex; gap: 16px; position: relative; padding-bottom: 24px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before { content: ''; position: absolute; left: 15px; top: 34px; bottom: -2px; width: 1.5px; background: var(--line); }
.flow-step:last-child::before { display: none; }
.flow-num { width: 32px; height: 32px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--accent); flex-shrink: 0; z-index: 1; }
.flow-step.optional .flow-num { border-color: rgba(0,214,143,.4); color: var(--green); background: rgba(0,214,143,.08); }
.flow-body { padding-top: 3px; }
.flow-body b { display: block; font-family: var(--sans); font-size: 15.5px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.flow-body .desc { display: block; font-size: 14px; color: var(--muted); line-height: 1.65; }
.opt-tag { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--green); background: rgba(0,214,143,.1); border: 1px solid rgba(0,214,143,.25); border-radius: 999px; padding: .15rem .55rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em; }

.result-badge { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, rgba(74,143,255,.12), rgba(0,214,143,.09)); border: 1px solid var(--line2); border-radius: 14px; padding: 18px 20px; font-family: var(--sans); font-weight: 700; font-size: 15px; margin: 0 0 26px; }
.result-badge .bolt { font-size: 20px; }

/* ── Einrichtungs-Service vs. Awe Enterprise ── */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 26px; }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.service-card.highlight { border-color: var(--line2); background: linear-gradient(160deg, rgba(74,143,255,.08), rgba(0,214,143,.05)); }
.service-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.service-card.highlight .service-tag { color: var(--accent); }
.service-card h3 { font-family: var(--sans); font-size: 16.5px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.service-card .cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--accent); text-decoration: none; }
.service-card.highlight .cta { color: #06110c; background: var(--gradient); padding: .65rem 1.1rem; border-radius: 10px; }

.post-cta { margin: 52px 0; padding: 34px; border-radius: 18px; text-align: center; background: var(--surface); border: 1px solid var(--line2); }
.post-cta h3 { font-family: var(--sans); font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.post-cta p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
.post-cta a { display: inline-block; font-weight: 700; font-size: 14px; color: #fff; text-decoration: none; background: var(--gradient); padding: 12px 26px; border-radius: 999px; }
.post-cta-note { margin-top: 14px; font-family: var(--mono); font-size: 11.5px; color: var(--dim); }

.post-hints { margin: 40px 0; padding: 18px 22px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.post-hints a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(74,143,255,.4); }
.post-faq { margin: 44px 0; }
.post-faq h2 { font-family: var(--sans); font-size: 22px; font-weight: 800; margin: 0 0 18px; }
.post-faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.post-faq summary { cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 700; font-size: 15px; }
.post-faq summary::-webkit-details-marker { display: none; }
.post-faq .faq-a { padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

.related-title { font-family: var(--sans); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); margin: 0 0 16px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
.related-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; text-decoration: none; color: inherit; display: block; transition: border-color .15s; }
.related-item:hover { border-color: var(--line2); }
.related-item .post-tag { font-size: 9.5px; margin-bottom: 6px; }
.related-item h4 { margin: 0; font-family: var(--sans); font-size: 14px; font-weight: 700; }
