/* ══════════════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════════════ */
:root {
  --color-primary:    #E01A4F;
  --color-primary-h:  #c8163f;
  --color-gold:       #CB996D;
  --color-bg:         #FFFFFF;
  --color-bg-warm:    #FAF3E0;
  --color-bg-light:   #F5F6FA;
  --color-text:       #222222;
  --color-text-muted: #666666;
  --color-border:     #E8E2D8;
  --font:             HelveticaNeue, "Helvetica Neue", Arial, Helvetica, sans-serif;
  --max-width:        720px;
  --max-width-wide:   1400px;
}

/* ══════════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
a { color: var(--color-primary); text-decoration: underline; }
a:hover { color: var(--color-primary-h); }

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.3; color: var(--color-text); font-weight: 600; }
h1 { font-size: 2rem;   margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
h3 { font-size: 1.2rem; margin: 1.75rem 0 0.75rem; }
p  { margin-bottom: 1.25rem; }

blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-bg-warm);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
figure      { margin: 2rem 0; text-align: center; }
figcaption  { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.5rem; font-style: italic; }
table       { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
th          { background: var(--color-primary); color: white; padding: 0.75rem 1rem; text-align: left; }
td          { padding: 0.6rem 1rem; border-bottom: 1px solid var(--color-border); }
tr:nth-child(even) td { background: var(--color-bg-warm); }
ul, ol      { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li          { margin-bottom: 0.4rem; }
code        { font-size: 0.85rem; background: var(--color-bg-light); padding: 0.1em 0.4em; border-radius: 4px; }

/* ── Tags ── */
.tag {
  display: inline-block;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  text-decoration: none;
  margin: 0.2rem;
}
.tag:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ══════════════════════════════════════════════════════════
   HEADER  (identisch zu sabine-buerger-coaching.com)
══════════════════════════════════════════════════════════ */
.sh {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.sh-inner {
  width: 100%;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sh-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.sh-logo img { height: 46px; width: auto; border-radius: 0; display: block; }

.sh-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-nav a,
.sh-nav a:link,
.sh-nav a:visited {
  color: #444 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
  padding: 0 8px;
  white-space: nowrap;
  line-height: 72px;
  display: block;
}
.sh-nav a:hover { color: #E01A4F !important; }
.sh-nav a.active,
.sh-nav a.active:link,
.sh-nav a.active:visited {
  color: #E01A4F !important;
  border-bottom: 2px solid #E01A4F;
}
.sh-nav span {
  color: #bbb;
  font-size: 13px;
  user-select: none;
  flex-shrink: 0;
}
.sh-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sh-btn,
.sh-btn:link,
.sh-btn:visited {
  border: 1px solid #E01A4F;
  color: #E01A4F !important;
  background: transparent;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-family: var(--font);
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}
.sh-btn:hover { background: #E01A4F !important; color: #fff !important; }

/* ══════════════════════════════════════════════════════════
   FOOTER  (identisch zu sabine-buerger-coaching.com)
══════════════════════════════════════════════════════════ */
.sf { background: var(--color-gold); }
.sf-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 75px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sf-copy {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sf-social { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sf-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #E01A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.sf-icon:hover { opacity: 0.85; color: #E01A4F; }
.sf-icon svg { display: block; }
.sf-nav { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; flex-shrink: 0; }
.sf-nav a,
.sf-nav a:link,
.sf-nav a:visited {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px;
  padding: 0 6px;
  white-space: nowrap;
}
.sf-nav a:hover { text-decoration: underline !important; color: #fff !important; }
.sf-nav span { color: rgba(255,255,255,0.5); font-size: 12px; user-select: none; }

/* ══════════════════════════════════════════════════════════
   BLOG INDEX  (Übersichtsseite)
══════════════════════════════════════════════════════════ */
.index-wrap {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
}
.hero h1 { font-size: 2.25rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.hero p  { font-size: 1rem; color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .posts { grid-template-columns: 1fr; }
}
.post-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 4px 24px rgba(224,26,79,0.1); }
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; display: block; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-meta { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.card-body h2 { font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.4; }
.card-body h2 a { text-decoration: none; color: var(--color-text); }
.card-body h2 a:hover { color: var(--color-primary); }
.card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-tags { margin-bottom: 1rem; }
.read-more { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.read-more:hover { color: var(--color-primary-h); }

/* ══════════════════════════════════════════════════════════
   BLOG POST  (Einzelartikel)
══════════════════════════════════════════════════════════ */
.cover-wrap { width: 100%; max-height: 480px; overflow: hidden; }
.cover-img  { width: 100%; height: 480px; object-fit: cover; border-radius: 0; display: block; }

.post-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.post-header  { margin-bottom: 2rem; }
.post-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
}
.post-inner h1       { font-size: 1.9rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.post-description    { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 1rem; font-style: italic; }
.tags                { margin-top: 0.75rem; }
.post-body           { margin-top: 2rem; }
.post-body h2        { color: var(--color-primary); border-bottom: 2px solid var(--color-bg-warm); padding-bottom: 0.4rem; }
.post-body img       { margin: 1.5rem 0; }
.post-body blockquote { border-left-color: var(--color-gold); }

.post-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  text-align: center;
}
.post-cta h3 { color: var(--color-primary); margin-bottom: 0.75rem; }
.post-cta p  { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-block;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.7rem 2rem;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.cta-btn:hover { background: var(--color-primary); color: white; }
