/* ── blog.css — Blog layout & components for handsfree-content.com ── */
/* Shared brand system from landing.css. Load AFTER Google Fonts (Fredoka + Nunito + Space Mono). */

/* ── Variables ── */
:root {
  --bg:           #FFF6FB;
  --surface:      #FFFFFF;
  --surface-2:    #F9FAFB;
  --pink:         #FF6B9D;
  --pink-light:   #FFD6E7;
  --pink-pale:    #FFF0F6;
  --mint:         #00C9A7;
  --mint-light:   #D0F7F2;
  --mint-pale:    #F0FDF9;
  --lavender:     #8B5CF6;
  --lav-light:    #EDE9FE;
  --peach:        #FF8B64;
  --peach-light:  #FFE8DE;
  --sky:          #38BDF8;
  --yellow:       #FBBF24;
  /* Blog accent aliases (maps to brand) */
  --accent:       var(--pink);
  --accent-light: var(--pink-pale);
  --accent-border: rgba(255,107,157,0.22);
  /* Typography */
  --text:         #1A1A2E;
  --text-2:       #6B7280;
  --text-3:       #9CA3AF;
  --border:       #F3E0EE;
  --border-2:     #E9D5F5;
  /* Fonts */
  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius:       12px;
  --radius-sm:    8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ── Body ── */
body {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,210,230,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(200,240,255,0.3) 0%, transparent 45%),
    radial-gradient(circle at 60% 40%, rgba(237,233,254,0.25) 0%, transparent 35%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.blog-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,246,251,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem,5vw,4rem);
  height: 58px;
  display: flex; align-items: center;
}
.blog-nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--pink); text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.blog-nav .nav-links {
  display: flex; gap: 20px; align-items: center;
}
.blog-nav .nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-2); text-decoration: none;
  transition: color 0.2s;
}
.blog-nav .nav-links a:hover { color: var(--pink); }
.blog-nav .nav-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%) !important;
  color: #fff !important; padding: 8px 18px;
  border-radius: 999px; font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,157,0.3);
  color: #fff !important;
}

/* ── Article Hero ── */
.article-hero {
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 55%, var(--lavender) 100%);
  padding: clamp(3rem,7vw,5rem) clamp(1.5rem,5vw,4rem);
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: attr(data-hero-emoji);
  position: absolute; right: clamp(2rem,6vw,5rem); top: 50%;
  transform: translateY(-50%);
  font-size: 10rem; opacity: 0.13; line-height: 1;
  pointer-events: none; user-select: none;
}
.hero-flags {
  position: absolute; right: clamp(2rem,6vw,5rem); top: 50%;
  transform: translateY(-50%);
  display: flex; gap: 0.75rem; opacity: 0.15;
  font-size: 7rem; line-height: 1;
  pointer-events: none;
}
/* hero-glow is a decorative div used in reels blog — just hide it */
.hero-glow { display: none; }

.hero-inner { max-width: 760px; position: relative; z-index: 1; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.article-hero .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.article-hero .breadcrumb a:hover { color: rgba(255,255,255,0.9); }

/* Breadcrumb outside hero (e.g. blog-ki-tool-vergleich) */
article .breadcrumb {
  color: var(--text-3);
  margin-bottom: 1.75rem;
}
article .breadcrumb a { color: var(--text-3); text-decoration: none; }
article .breadcrumb a:hover { color: var(--pink); }
article .breadcrumb span { color: var(--text-3); }

/* ── Post Tags & Meta ── */
.post-tags { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.18); color: white;
  border: 1px solid rgba(255,255,255,0.22);
}
/* Tag variants (all appear white-on-transparent in the hero) */
.tag.tool, .tag.dach, .tag.dsgvo, .tag.kmu, .tag.eu, .tag.tiktok, .tag.recht,
.tag.reels, .tag.ki, .tag.vergleich {
  background: rgba(255,255,255,0.18); color: white;
  border: 1px solid rgba(255,255,255,0.22);
}

.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem,4vw,2.8rem);
  line-height: 1.18;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.article-hero h1 span { color: rgba(255,255,255,0.85); }

.post-meta {
  display: flex; gap: 1.25rem; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.author-chip { display: flex; align-items: center; gap: 0.5rem; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.25); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}

/* Post meta outside hero */
article > .post-meta {
  color: var(--text-3);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
article > .post-meta .author-avatar {
  background: linear-gradient(135deg, var(--pink), #C084FC);
}

/* ── Article Layout ── */
.article-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 3rem clamp(1.5rem,5vw,2rem);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}
article { min-width: 0; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
article { animation: fadeUp .5s ease both; }

/* ── Typography (inside article) ── */
article h1 {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(1.75rem,4vw,2.6rem);
  line-height: 1.18; letter-spacing: -0.01em;
  margin-bottom: 1rem; color: var(--text);
}
article h2 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.45rem; line-height: 1.25;
  margin: 2.5rem 0 1rem; letter-spacing: -0.01em;
  color: var(--text);
}
article h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.1rem; line-height: 1.3;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}
article h4 {
  font-weight: 700; font-size: 0.95rem; line-height: 1.4;
  margin-bottom: 0.35rem; color: var(--text);
}
article p { margin-bottom: 1.2rem; color: var(--text-2); }
article strong { color: var(--text); font-weight: 700; }
article em { font-style: italic; }
article a { color: var(--pink); text-decoration: underline; text-decoration-thickness: 1px; }
article a:hover { color: var(--lavender); }
article ul, article ol { margin: 0.75rem 0 1.2rem 1.25rem; }
article li { margin-bottom: 0.5rem; color: var(--text-2); }
article hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ── Post Lead ── */
.post-lead {
  font-size: 1.05rem; font-weight: 400; color: var(--text-2);
  line-height: 1.78; margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--pink);
  background: var(--pink-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Callouts ── */
.callout {
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.callout.tip  { background: var(--mint-pale);  border: 1px solid rgba(0,201,167,0.25); }
.callout.warn { background: var(--peach-light); border: 1px solid rgba(255,139,100,0.25); }
.callout.info { background: var(--lav-light);   border: 1px solid rgba(139,92,246,0.2); }
.callout.good { background: var(--mint-pale);   border: 1px solid rgba(0,201,167,0.25); }
.callout.ch   { background: var(--mint-pale);   border: 1px solid rgba(0,201,167,0.25); }
/* Fallback: unspecified callout gets accent style */
.callout:not(.tip):not(.warn):not(.info):not(.good):not(.ch) {
  background: var(--pink-pale);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.callout.tip  .callout-label { color: var(--mint); }
.callout.warn .callout-label { color: var(--peach); }
.callout.info .callout-label { color: var(--lavender); }
.callout.good .callout-label { color: var(--mint); }
.callout.ch   .callout-label { color: var(--mint); }
.callout:not(.tip):not(.warn):not(.info):not(.good):not(.ch) .callout-label { color: var(--pink); }
.callout p { margin: 0; font-size: 0.92rem; color: var(--text-2); }

/* ── CTA Inline ── */
.cta-inline {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1a3e 100%);
  border-radius: var(--radius-sm);
  padding: 2rem 2.25rem; margin: 2.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid rgba(139,92,246,0.2);
}
.cta-inline h3 {
  font-family: var(--font-display);
  color: white; font-size: 1.1rem; margin: 0 0 0.3rem;
  font-weight: 700;
}
.cta-inline p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin: 0; }
.cta-btn {
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%);
  color: white; padding: 0.7rem 1.35rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 0.875rem;
  white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,157,0.3);
  color: white;
}
.cta-btn-primary {
  background: white; color: var(--pink);
  padding: 0.7rem 1.35rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 0.875rem;
  white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--pink);
}
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,157,0.2);
}

/* ── Tool CTA ── */
.tool-cta {
  background: var(--pink-pale);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 2rem; text-align: center; margin: 2rem 0;
}
.tool-cta h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  color: var(--text); margin-bottom: 0.5rem;
}
.tool-cta p { color: var(--text-2); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── Tables ── */
.platform-matrix, .fine-table-wrap, .compare-table-wrap, .tool-table-wrap {
  overflow-x: auto; margin: 1.75rem 0;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; background: var(--surface); }
thead { background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%); }
thead th {
  padding: 0.85rem 1rem; text-align: left;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.82rem;
  color: white; white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--pink-pale); transition: background 0.15s; }
td { padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--text-2); vertical-align: middle; }
td:first-child { font-weight: 600; color: var(--text); }
.freq-badge {
  font-size: 0.7rem; font-weight: 700; padding: 0.18rem 0.45rem;
  border-radius: 4px; background: var(--pink-pale); color: var(--pink);
}
.fine-high { color: var(--pink); font-weight: 700; }
.fine-mid  { color: var(--peach); font-weight: 700; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.25rem; }
.toc-card, .sidebar-tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.35rem;
}
.toc-label {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 0.9rem;
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list a {
  font-size: 0.84rem; color: var(--text-2); text-decoration: none;
  display: block; padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s; line-height: 1.4;
}
.toc-list li:last-child a { border-bottom: none; }
.toc-list a:hover { color: var(--pink); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%);
  border-radius: var(--radius-sm); padding: 1.5rem;
}
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.83rem; margin-bottom: 0.5rem; }
.sidebar-cta h4 {
  font-family: var(--font-display);
  color: white; font-size: 1rem; margin-bottom: 0.85rem; line-height: 1.3;
  font-weight: 700;
}
.sidebar-cta a {
  display: block; background: white; color: var(--pink);
  text-align: center; padding: 0.6rem 1rem;
  border-radius: 999px; font-weight: 700; font-size: 0.875rem;
  text-decoration: none; transition: transform 0.2s;
}
.sidebar-cta a:hover { transform: translateY(-1px); }
.tool-link {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text-2); font-size: 0.84rem;
  transition: color 0.2s;
}
.tool-link:last-child { border-bottom: none; }
.tool-link:hover { color: var(--pink); }

/* ── Tool Preview (content-kalender blog) ── */
.tool-preview {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  margin: 2rem 0; box-shadow: 0 4px 24px rgba(255,107,157,0.08);
}
.tp-header {
  background: var(--surface-2); padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.tp-dot { width: 10px; height: 10px; border-radius: 50%; }
.tp-dot.r { background: #ff5f57; }
.tp-dot.y { background: #febc2e; }
.tp-dot.g { background: #28c840; }
.tp-url {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--text-3); margin-left: 0.5rem;
  background: white; padding: 0.2rem 0.75rem;
  border-radius: 4px; border: 1px solid var(--border);
}
.tp-body { padding: 1.5rem; }
.tp-field { margin-bottom: 1rem; }
.tp-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700; color: var(--text-2);
  margin-bottom: 0.3rem; display: block; text-transform: uppercase; letter-spacing: 0.08em;
}
.tp-input {
  width: 100%; padding: 0.6rem 0.85rem;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.875rem; color: var(--text-2); background: var(--bg);
  font-family: var(--font-body);
}
.tp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.tp-btn {
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%);
  color: white; padding: 0.65rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 0.875rem; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
}
.tp-result {
  background: var(--pink-pale); border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm); padding: 1.25rem; margin-top: 1rem;
}
.tp-result-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem;
}
.tp-day {
  display: flex; gap: 0.75rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--accent-border); font-size: 0.85rem;
}
.tp-day:last-child { border-bottom: none; }
.tp-day-num { font-weight: 700; color: var(--pink); width: 24px; flex-shrink: 0; }
.tp-day-content { color: var(--text-2); }
.tp-platform {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700;
  background: white; color: var(--pink);
  padding: 0.1rem 0.35rem; border-radius: 3px; margin-left: auto; flex-shrink: 0;
}

/* ── Step Guide (content-kalender blog) ── */
.step-guide {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 2rem; margin: 2rem 0;
}
.sg-step {
  display: flex; gap: 1.25rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.sg-step:last-child { border-bottom: none; padding-bottom: 0; }
.sg-step:first-child { padding-top: 0; }
.sg-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #C084FC 100%);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px;
}
.sg-body h4 { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.35rem; }
.sg-body p { font-size: 0.875rem; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ── Calendar Examples (content-kalender blog) ── */
.calendar-examples {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin: 1.75rem 0;
}
.cal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.cal-header {
  padding: 0.75rem 1rem; font-weight: 700; font-size: 0.82rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
}
.cal-header.jan { background: var(--lav-light);   color: var(--lavender); }
.cal-header.apr { background: var(--pink-pale);    color: var(--pink); }
.cal-header.nov { background: var(--peach-light);  color: var(--peach); }
.cal-item {
  padding: 0.65rem 1rem; border-bottom: 1px solid var(--border);
  font-size: 0.82rem; display: flex; gap: 0.5rem;
}
.cal-item:last-child { border-bottom: none; }
.cal-date { color: var(--text-3); font-weight: 700; flex-shrink: 0; width: 26px; }
.cal-text { color: var(--text-2); line-height: 1.4; }

/* ── Country Cards (DACH blog) ── */
.country-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.country-card { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.country-header { padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.country-flag { font-size: 1.75rem; line-height: 1; }
.country-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.country-card.at .country-header { background: var(--pink-pale); }
.country-card.ch .country-header { background: var(--mint-pale); }
.country-body { padding: 1.25rem; background: var(--surface); }
.country-body p { font-size: 0.88rem; color: var(--text-2); margin-bottom: 0.75rem; }
.country-body p:last-child { margin-bottom: 0; }
.country-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem;
}
.country-stat:last-child { border-bottom: none; }
.stat-label { color: var(--text-2); }
.stat-value { font-weight: 600; color: var(--text); }

/* ── Comparison Grid (DACH blog) ── */
.comparison-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; margin: 1.75rem 0;
  background: var(--surface);
}
.comp-header {
  background: var(--pink-pale); padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-2);
  border-bottom: 1px solid var(--border); text-align: center;
}
.comp-header.de { border-right: 1px solid var(--border); }
.comp-header.at { border-right: 1px solid var(--border); }
.comp-cell {
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text-2); vertical-align: top;
}
.comp-cell.de { border-right: 1px solid var(--border); background: rgba(255,107,157,0.03); }
.comp-cell.at { border-right: 1px solid var(--border); background: rgba(0,201,167,0.03); }
.comp-label {
  grid-column: 1/-1; background: var(--surface-2);
  padding: 0.5rem 1rem; font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-3);
  border-bottom: 1px solid var(--border);
}

/* ── Post Examples (DACH blog) ── */
.post-examples { margin: 1.75rem 0; }
.post-example {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 1rem; background: var(--surface);
}
.pe-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.pe-flag { font-size: 1.2rem; }
.pe-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-2);
}
.pe-verdict {
  margin-left: auto; font-size: 0.72rem; font-weight: 700;
  padding: 0.18rem 0.5rem; border-radius: 4px;
}
.verdict-good { background: var(--mint-pale); color: var(--mint); }
.verdict-bad  { background: var(--pink-pale); color: var(--pink); }
.pe-body {
  padding: 1.1rem 1.25rem; font-size: 0.9rem;
  color: var(--text-2); font-style: italic; line-height: 1.65;
}
.pe-note {
  font-style: normal; font-size: 0.8rem; color: var(--text-3);
  margin-top: 0.65rem; display: block;
}

/* ── Violation Cards (DSGVO blog) ── */
.violation {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin: 2rem 0; overflow: hidden;
}
.violation-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--pink-pale); border-bottom: 1px solid var(--accent-border);
}
.v-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2rem; color: var(--pink); line-height: 1;
}
.v-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.v-severity {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.5rem;
  border-radius: 4px; margin-left: auto; flex-shrink: 0;
}
.sev-high { background: var(--pink);     color: white; }
.sev-mid  { background: var(--peach);    color: white; }
.sev-low  { background: var(--lavender); color: white; }
.violation-body { padding: 1.5rem; }
.violation-body p { font-size: 0.93rem; color: var(--text-2); margin-bottom: 1rem; }
.violation-body p:last-child { margin-bottom: 0; }
.v-fix {
  background: var(--mint-pale); border: 1px solid rgba(0,201,167,0.25);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-top: 0.75rem;
}
.v-fix-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 0.4rem;
}
.v-fix p { color: var(--text); font-size: 0.88rem; margin: 0; }

/* ── Timeline (DSA TikTok blog) ── */
.timeline { position: relative; margin: 2rem 0; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--pink), rgba(255,107,157,0.1));
}
.timeline-item { position: relative; margin-bottom: 1.75rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -2.5rem; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--pink-light);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.35rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--text); margin-bottom: 0.4rem;
}
.timeline-body { font-size: 0.88rem; color: var(--text-2); }

/* ── Status Grid / Rule Block (DSA TikTok blog) ── */
.status-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.75rem 0; }
.status-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.status-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255,107,157,0.1);
}
.status-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.status-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.35rem; }
.status-card p { font-size: 0.84rem; color: var(--text-2); margin: 0; }
.status-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 4px;
  display: inline-block; margin-top: 0.5rem;
}
.status-active   { background: var(--mint-pale);  color: var(--mint); }
.status-pending  { background: var(--peach-light); color: var(--peach); }
.status-planned  { background: var(--lav-light);   color: var(--lavender); }

.rule-block {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin: 1.25rem 0;
}
.rule-block h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.35rem; }
.rule-block p { font-size: 0.88rem; color: var(--text-2); margin: 0; }

/* ── Format Grid / Cards (Reels blog) ── */
.format-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 1.75rem 0; }
.format-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.format-card:hover { border-color: var(--pink-light); transform: translateY(-2px); }
.format-emoji { font-size: 1.75rem; margin-bottom: 0.6rem; display: block; }
.format-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.35rem; }
.format-card p { font-size: 0.84rem; color: var(--text-2); margin: 0; line-height: 1.55; }
.format-diff {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; display: inline-block;
  margin-top: 0.5rem; padding: 0.18rem 0.45rem; border-radius: 4px;
}
.diff-easy { background: var(--mint-pale);  color: var(--mint); }
.diff-mid  { background: var(--peach-light); color: var(--peach); }

/* ── Step Cards (Reels blog) ── */
.step { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.step-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.5rem; color: var(--pink-light);
  line-height: 1; flex-shrink: 0; width: 3rem;
}
.step-body h3 { margin-top: 0; font-size: 1.05rem; }
.step-body p  { font-size: 0.9rem; }

/* ── Hook List (Reels blog) ── */
.hook-list {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; margin: 1.75rem 0;
}
.hook-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.hook-item:last-child { border-bottom: none; }
.hook-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.hook-text { font-size: 0.9rem; color: var(--text); font-style: italic; }
.hook-why  { font-size: 0.78rem; color: var(--text-3); margin-top: 0.3rem; font-style: normal; }

/* ── Badges (Reels blog) ── */
.badge {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; padding: 0.18rem 0.45rem;
  border-radius: 4px; white-space: nowrap;
}
.badge-free { background: var(--mint-pale);  color: var(--mint); }
.badge-paid { background: var(--pink-pale);  color: var(--pink); }

/* ── AdSense containers ── */
.blog-ad {
  margin: 1.75rem 0; text-align: center;
  min-height: 90px; /* prevent layout shift */
}
.blog-ad-rect { min-height: 250px; }

/* ── Footer ── */
.about-footer {
  padding: 32px clamp(1.5rem,5vw,4rem);
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.about-footer-links {
  display: flex; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-bottom: 16px;
}
.about-footer-links a {
  font-size: 0.82rem; color: var(--text-3); text-decoration: none;
  transition: color 0.2s;
}
.about-footer-links a:hover { color: var(--pink); }
.about-footer p { font-size: 0.78rem; color: var(--text-3); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar { position: static; }
  .calendar-examples { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: 1fr; }
  .country-section { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .blog-nav .nav-links a:not(.nav-cta) { display: none; }
  .article-hero { padding: 2.5rem 1.5rem; }
  .article-hero::before { font-size: 6rem; right: 1rem; }
  .hero-flags { font-size: 4rem; right: 1rem; }
  .cta-inline { flex-direction: column; }
}
