/* ============================================================
   LIPSTICK — Ghost Theme
   Palette: #050505 BG · #ca2317 red · #f4f4f4 off-white · #c8c8c8 body · #888 muted
   Fonts: Georgia (serif headlines) · Helvetica/Arial (UI)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #c8c8c8;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ca2317; text-decoration: none; }
a:hover { text-decoration: underline; }

/* LAYOUT */
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid #222;
  padding: 28px 0;
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.site-header .logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #f4f4f4;
}
.site-header .logo .red { color: #ca2317; }
.site-header nav a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  margin-left: 22px;
}
.site-header nav a:hover { color: #ca2317; text-decoration: none; }

/* HERO INTRO (Frontpage) */
.intro {
  padding: 64px 0 24px 0;
  border-bottom: 1px solid #181818;
}
.intro .eyebrow {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ca2317;
  margin-bottom: 14px;
}
.intro h1 {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: #f4f4f4;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.intro h1 .red { color: #ca2317; }
.intro h1 .italic { font-style: italic; }
.intro p {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #b8b8b8;
  max-width: 580px;
}

/* POST FEED (Frontpage list of issues) */
.feed { padding: 40px 0; }
.feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-card {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid #181818;
  text-decoration: none;
  transition: background 0.2s ease;
}
.post-card:hover {
  background: #0a0a0a;
  text-decoration: none;
}
.post-card .meta {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ca2317;
  margin-bottom: 10px;
}
.post-card h2 {
  margin: 0 0 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 32px;
  line-height: 1.15;
  color: #f4f4f4;
}
.post-card .excerpt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  color: #b8b8b8;
}

/* POST/PAGE — single article view */
.post-header {
  padding: 64px 0 32px 0;
  border-bottom: 1px solid #181818;
}
.post-header .eyebrow {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ca2317;
  margin-bottom: 14px;
}
.post-header h1 {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: #f4f4f4;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.post-header .standfirst {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #b8b8b8;
  margin: 0;
  max-width: 620px;
}

.post-content {
  padding: 40px 0 64px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
  color: #c8c8c8;
}
.post-content > * { max-width: 620px; }
.post-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 1.1;
  color: #f4f4f4;
  margin: 56px 0 18px 0;
  letter-spacing: -0.01em;
}
.post-content h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ca2317;
  margin: 40px 0 12px 0;
  font-weight: bold;
}
.post-content p { margin: 0 0 18px 0; }
.post-content em { color: #d8d8d8; }
.post-content strong { color: #f4f4f4; font-weight: bold; }
.post-content a { color: #ca2317; text-decoration: underline; }
.post-content a:hover { text-decoration: none; background: #ca2317; color: #fff; }
.post-content blockquote {
  border-left: 3px solid #ca2317;
  margin: 32px 0;
  padding: 4px 0 4px 22px;
  font-style: italic;
  font-size: 22px;
  line-height: 1.32;
  color: #f4f4f4;
}
.post-content img {
  max-width: 100%;
  margin: 32px 0;
}
.post-content video {
  width: 100%;
  margin: 32px 0;
  background: #000;
}
.post-content hr {
  border: 0;
  border-top: 1px solid #ca2317;
  width: 48px;
  margin: 48px 0;
}
.post-content ul, .post-content ol {
  margin: 0 0 18px 22px;
  padding: 0;
}
.post-content li { margin-bottom: 8px; }
.post-content code {
  background: #1a1a1a;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 14px;
  color: #f4f4f4;
}

/* CTAs */
.cta {
  display: inline-block;
  padding: 14px 24px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: bold;
  color: #f4f4f4;
  background: transparent;
  border: 1px solid #ca2317;
  text-decoration: none;
  margin: 0 8px 8px 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.cta:hover { background: #ca2317; color: #fff; text-decoration: none; }
.cta.ghost { border-color: #444; color: #b8b8b8; }
.cta.ghost:hover { background: #1a1a1a; color: #f4f4f4; border-color: #888; }

/* SUBSCRIBE FORM (Ghost native) */
.subscribe {
  padding: 64px 0;
  border-top: 1px solid #181818;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  text-align: center;
}
.subscribe h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 40px;
  line-height: 1.1;
  color: #f4f4f4;
  margin: 0 0 14px 0;
}
.subscribe h2 .red { color: #ca2317; font-style: italic; }
.subscribe p {
  font-family: Georgia, serif;
  font-style: italic;
  color: #b8b8b8;
  margin: 0 0 28px 0;
}

/* FOOTER */
.site-footer {
  padding: 56px 0 80px 0;
  border-top: 1px solid #222;
  margin-top: 56px;
}
.site-footer .wrap {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
  line-height: 1.8;
}
.site-footer .corp { color: #c8c8c8; }
.site-footer a { color: #888; }
.site-footer a:hover { color: #ca2317; }

/* KOENIG EDITOR CARD WIDTHS (Pflicht für Ghost) */
.kg-width-wide,
.kg-width-wide img {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.kg-width-full,
.kg-width-full img {
  max-width: 100vw;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-image { max-width: 100%; height: auto; display: block; }
figure.kg-card { margin: 32px 0; }
figcaption { color: #888; font-size: 13px; text-align: center; margin-top: 8px; font-family: Helvetica, Arial, sans-serif; }
.kg-bookmark-card { border: 1px solid #222; padding: 16px; display: block; color: #f4f4f4; text-decoration: none; }
.kg-bookmark-card:hover { border-color: #ca2317; }
.kg-bookmark-title { font-weight: bold; }
.kg-bookmark-description, .kg-bookmark-metadata { color: #888; font-size: 13px; margin-top: 4px; }
.kg-gallery-container { display: flex; flex-wrap: wrap; gap: 8px; }
.kg-gallery-image img { display: block; width: 100%; height: auto; }
.kg-callout-card { border-left: 3px solid #ca2317; padding: 16px 20px; background: #0d0d0d; margin: 24px 0; }
blockquote { border-left: 3px solid #ca2317; padding-left: 20px; color: #c8c8c8; font-family: Georgia, serif; font-style: italic; margin: 24px 0; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .wrap { padding: 0 20px; }
  .intro h1 { font-size: 42px; }
  .post-header h1 { font-size: 36px; }
  .post-card h2 { font-size: 24px; }
  .subscribe h2 { font-size: 28px; }
  .post-content { font-size: 16px; }
  .post-content h2 { font-size: 26px; }
}
