/*
Theme Name: bestanden.jetzt v2
Template: twentytwentyfive
Version: 8.0
*/

@font-face {
	font-family: "Lora";
	font-weight: 400;
	font-style: normal;
	src: local('Lora Regular'), local('Lora-Regular'), url(//bestanden.jetzt/wp-content/uploads/sgf-css/0QIvMX1D_JOuMwr7I_FMl_E.woff2) format('woff2'), url(//bestanden.jetzt/wp-content/uploads/sgf-css/0QIvMX1D_JOuMwr7JQ.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Lora";
	font-weight: 400;
	font-style: normal;
	src: local('Lora Regular'), local('Lora-Regular'), url(//bestanden.jetzt/wp-content/uploads/sgf-css/0QIvMX1D_JOuMwr7I_FMl_E.woff2) format('woff2'), url(//bestanden.jetzt/wp-content/uploads/sgf-css/0QIvMX1D_JOuMwr7JQ.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --black:    #0e0d0b;
  --surface:  #141210;
  --surface2: #1c1a17;
  --border:   #2d2a25;
  --white:    #f4ede1;
  --orange:   #ff6d2e;
  --blue:     #60a5fa;
  --green:   #4ade80;
  --gray:     #a8a094;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILITIES ────────────────────────────────────────── */
.orange  { color: var(--orange); }
.blue    { color: var(--blue); }
.gray    { color: var(--gray); }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray);
}
.label-orange { color: var(--orange); }
.label-blue   { color: var(--blue); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0d0b;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.nav-logo img { height: 55px; }
.nav-links {
  display: none;
}
.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.15s;
}
.nav-links a:hover   { color: var(--white); }.nav-links .nav-cta  { color: var(--orange); }.nav-toggle {  display: block;  background: transparent;  border: none;  cursor: pointer;  color: #fff;  padding: 10px 14px;  border-radius: 6px;  font-size: 30px;  transition: background 0.15s;}.nav-toggle:hover { background: transparent; }.nav-toggle svg { width: 24px; height: 24px; stroke: #fff; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding: 100px 0 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(255,109,46,0.07), transparent 70%),
    radial-gradient(ellipse 40% 40% at 0% 0%, rgba(255,109,46,0.04), transparent 60%);
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hero-text { padding-bottom: 88px; }
.hero-eyebrow {
  margin-bottom: 24px;
  font-size: 30px;
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-ben {
  flex-shrink: 0;
  align-self: center;
}
.hero-ben img {
  width: 320px;
  display: block;
  filter: drop-shadow(0 -8px 32px rgba(255,109,46,0.12));
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }

/* ── STATS ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 11px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── SECTION ──────────────────────────────────────────── */
.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-eyebrow { margin-bottom: 12px; }
.section-title {
  font-size: 32px;
  font-weight: 800;
}
.section-more {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  padding-bottom: 4px;
}
.section-more:hover { text-decoration: underline; }

/* ── ARTICLE GRID ─────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--black);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s;
}
.card:hover { background: var(--surface2); }
.card-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.card-tag-blue { color: var(--blue); }
.card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  flex: 1;
}
.card-teaser {
  font-size: 17px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
}
.card-arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
}
.card-featured {
  grid-column: span 2;
  padding: 48px 44px;
  justify-content: flex-end;
  min-height: 280px;
  border-right: 1px solid var(--border);
}
.card-featured .card-title {
  font-size: 28px;
  line-height: 1.2;
}
.card-featured .card-teaser {
  font-size: 15px;
  max-width: 480px;
}
.card-stat { gap: 0; }
.card-stat .card-stat-number {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.card-stat .card-stat-crossed {
  font-size: 18px;
  font-weight: 900;
  color: var(--gray);
  line-height: 1;
  margin-bottom: 20px;
  text-decoration: line-through;
  text-decoration-color: var(--gray);
  text-decoration-thickness: 2px;
}
.card-stat .card-tag { margin-bottom: 8px; }
.card-stat .card-title { font-size: 16px; margin-top: 12px; }
.card-stat .card-teaser { font-size: 13px; }

/* orange accent card */
.card-accent {
  background: var(--orange);
}
.card-accent:hover { background: #ff5a1a; }
.card-accent .card-tag   { color: rgba(0,0,0,0.5); }
.card-accent .card-title { color: var(--orange); }
.card-accent .card-teaser { color: rgba(0,0,0,0.65); }
.card-accent .card-arrow  { color: var(--orange); }

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  padding: 88px 0 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-band-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-band-text { padding-bottom: 88px; }
.cta-band-eyebrow { margin-bottom: 16px; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 44px;
}
.cta-band-ben img {
  width: 260px;
  display: block;
  filter: drop-shadow(0 -4px 24px rgba(255,109,46,0.15));
}

/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.65;
}

/* ── FORMAT CARDS ─────────────────────────────────────── */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 40px 0;
}
.format-card {
  background: var(--surface2);
  padding: 36px 28px;
}
.format-icon {
  margin-bottom: 20px;
  color: #fff;
}
.format-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.format-card p {
  font-size: 17px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
}

/* ── COMPARISON TABLE ─────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 40px 0;
}
.compare-header {
  padding: 16px 28px;
  background: var(--surface2);
}
.compare-cell {
  background: var(--black);
  padding: 22px 28px;
}
.compare-cell p {
  font-size: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}
.compare-cell p.struck {
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: var(--gray);
  text-decoration-thickness: 2px;
}
.compare-cell p.new-rule { color: var(--orange); }

/* ── ARTICLE BODY ─────────────────────────────────────── */
.article-header {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta-sep { color: var(--border); font-weight: 400; }
.article-header h1 {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 24px;
}
.article-lead {
  font-size: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.65;
}
/* ── ARTICLE SECTION (weisser Vollflächen-Hintergrund) ── */
article.article-body {
  color: var(--orange) !important;
  background: #ffffff !important;
  padding: 72px 32px !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
article.article-body .container {
  max-width: 1120px;
  margin: 0 auto;
}
article.article-body p,
article.article-body .wp-block-paragraph {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 1.8 !important;
  color: #333 !important;
  margin-bottom: 22px !important;
}
article.article-body h2,
article.article-body .wp-block-heading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: 26px !important;
  color: var(--orange) !important;
  margin: 40px 0 12px !important;
  line-height: 1.2 !important;
}
article.article-body h3 {
  color: var(--orange) !important;
}
article.article-body ul li {
  font-weight: 400 !important;
  font-size: 19px !important;
  color: #333 !important;
}
article.article-body .callout {
  background: #f5f5f5 !important;
}
article.article-body .callout p {
  color: #333 !important;
}

/* ── BLOG ARCHIVE ─────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ── LORA QUOTE ───────────────────────────────────────── */
.lora-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.45;
  color: var(--white);
  margin: 48px 0 12px;
}
.lora-quote .q { color: var(--orange); }
.lora-accent {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 40px;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  padding: 56px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-logo {
  height: 40px;
  opacity: 0.8;
  margin-bottom: 12px;
}
.footer-meta {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}
.footer-addr {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px 0;
  line-height: 1.7;
}
.footer-contact {
  font-size: 15px;
  color: var(--white);
  margin: 0;
  line-height: 1.8;
}
.footer-contact a {
  color: var(--orange);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-heading {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}
.footer-copy {
  font-size: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.9;
  margin-top: 16px;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li {
  margin: 0;
  padding: 0;
}
.footer-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); }


/* ── PAGE CONTENT (Impressum, Datenschutz) ──────────────────── */
.page-content {
  background: #ffffff !important;
  padding: 72px 32px !important;
}
.page-content .container {
  max-width: 1120px;
  margin: 0 auto;
}
.page-content p {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 1.8 !important;
  color: #333 !important;
  margin-bottom: 22px !important;
}
.page-content h1 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: 32px !important;
  color: var(--black) !important;
  margin: 0 0 32px !important;
  line-height: 1.2 !important;
}
.page-content h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: 26px !important;
  color: var(--orange) !important;
  margin: 40px 0 12px !important;
  line-height: 1.2 !important;
}
.page-content h3 {
  color: var(--orange) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  margin: 32px 0 10px !important;
}
.page-content ul {
  margin: 0 0 22px 24px;
  padding: 0;
}
.page-content ul li {
  font-weight: 400 !important;
  font-size: 19px !important;
  color: #333 !important;
  line-height: 1.8 !important;
  margin-bottom: 6px;
}
.page-content a {
  color: var(--orange);
  text-decoration: underline;
}
.page-content a:hover {
  color: #e55a1e;
}
@media (max-width: 768px) {
  .page-content { padding: 48px 20px !important; }
  .page-content p { font-size: 17px !important; }
  .page-content ul li { font-size: 17px !important; }
}
/* ── WP OVERRIDES ─────────────────────────────────────── */
/* Full-width site blocks */
.wp-site-blocks {
  background: var(--black) !important;
}

/* Hide site header/footer defaults, use our own */
.wp-site-header,
.wp-site-footer {
  display: none !important;
}

/* Single post full width */
body.single .wp-block-post-content,
body.page .wp-block-post-content {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}

/* Hide comments everywhere */
body.single .wp-block-post-comments,
body.single .wp-block-comments,
body.single .wp-block-comments-query-loop,
body.single .comment-respond,
body.page .wp-block-post-comments,
body.page .wp-block-comments,
body.page .wp-block-comments-query-loop,
body.page .comment-respond {
  display: none !important;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .grid          { grid-template-columns: repeat(2, 1fr); }
  .archive-grid  { grid-template-columns: repeat(2, 1fr); }
  .formats       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .container { padding: 0 20px; }

  .nav-toggle  { display: block; }

  .hero        { padding: 56px 0 0; }
  .hero h1     { font-size: 36px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-text   { padding-bottom: 40px; }
  .hero-ben    { display: none; }
  .cta-band    { padding: 56px 0 0; }
  .cta-band-layout { grid-template-columns: 1fr; }
  .cta-band-text   { padding-bottom: 48px; }
  .cta-band-ben    { display: none; }
  .hero-sub    { font-size: 17px; }

  .stats       { grid-template-columns: 1fr; }
  .stat        { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .stat:last-child { border-bottom: none; }
  .stat-number { font-size: 56px; }

  .section     { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  .grid         { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: span 1; min-height: auto; }
  .formats      { grid-template-columns: 1fr; }
  .compare      { grid-template-columns: 1fr; }

  .cta-band h2 { font-size: 30px; }

  .page-hero   { padding: 56px 0 48px; }
  .article-header { padding: 56px 0 48px; }
  article.article-body {
  color: var(--orange) !important; padding: 48px 20px !important; }

  .footer-inner  { flex-direction: column; }
  .footer-col { margin-bottom: 32px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-nav    { text-align: left; }
}



@media (max-width: 960px) {
  article.article-body h2 { font-size: 24px !important; }
  article.article-body p { font-size: 17px !important; }
}

/* ── SECTION BACKGROUNDS ──────────────────────────────── */

.section-white {  background: #ffffff !important;}
.section-gray {
  background: #f5f5f5 !important;
}

/* ── STATS ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 11px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── TOPIC SECTIONS ───────────────────────────────────── */
.topic-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.topic-head {
  margin-bottom: 48px;
  max-width: 640px;
}
.topic-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.topic-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.topic-sub {
  font-size: 18px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-featured {
  grid-column: 1 / -1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  gap: 14px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.topic-featured-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange) !important;
}
.topic-featured h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}
.topic-featured-teaser {
  font-size: 15px;
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  max-width: 480px;
}
.topic-featured .card-arrow {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}
.topic-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.topic-card-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-start;
  margin-bottom: 10px;
}
.topic-card h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  flex: 1;
}
.topic-card-text {
  font-size: 15px;
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
}
.topic-card .card-arrow {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

/* White section */
.section-white .topic-title { color: var(--black) !important; }
.section-white .topic-sub { color: #555 !important; }
.section-white .topic-featured { background: #f5f5f5 !important; }
.section-white .topic-featured h3 { color: var(--black) !important; }
.section-white .topic-featured-teaser { color: #555 !important; }
.section-white .topic-featured .card-arrow { color: var(--orange) !important; }
.section-white .topic-featured:hover { background: #ececec !important; }
.section-white .topic-card { background: #f5f5f5 !important; }
.section-white .topic-card h4 { color: var(--black) !important; }
.section-white .topic-card-text { color: #555 !important; }
.section-white .topic-card .card-arrow { color: var(--orange) !important; }
.section-white .topic-card:hover { background: #ececec !important; }

/* Gray section */
.section-gray .topic-title { color: var(--black) !important; }
.section-gray .topic-sub { color: #555 !important; }
.section-gray .topic-featured { background: #ffffff !important; }
.section-gray .topic-featured h3 { color: var(--black) !important; }
.section-gray .topic-featured-teaser { color: #555 !important; }
.section-gray .topic-featured .card-arrow { color: var(--orange) !important; }
.section-gray .topic-featured:hover { background: #ececec !important; }
.section-gray .topic-card { background: #ffffff !important; }
.section-gray .topic-card h4 { color: var(--black) !important; }
.section-gray .topic-card-text { color: #555 !important; }
.section-gray .topic-card .card-arrow { color: var(--orange) !important; }
.section-gray .topic-card:hover { background: #ececec !important; }

/* ── COMPARE SECTION ──────────────────────────────────── */
.compare-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.compare-section .topic-title { color: var(--orange) !important; }
.compare-section .topic-sub { color: var(--gray); }
.compare-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.compare-alt, .compare-neu {
  background: transparent;
  border: 3px solid var(--orange);
  border-radius: 8px;
  padding: 40px 36px;
}
.compare-alt-header, .compare-neu-header {  font-size: 24px;  font-weight: 900;  letter-spacing: 1px;  text-transform: uppercase;  margin-bottom: 20px;}
.compare-alt-header { color: var(--gray); }
.compare-neu-header { color: var(--orange); }
.compare-alt ul, .compare-neu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-alt li, .compare-neu li {
  font-size: 17px;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-x { color: var(--gray); }
.compare-check { color: var(--orange); }
.compare-vs {
  font-size: 64px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.compare-link {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
}

/* ── STEPS SECTION ────────────────────────────────────── */
.steps-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.steps-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.step {
  background: var(--surface2);
  padding: 36px 28px;
  border-radius: 8px;
  text-align: center;
}
.step .topic-title { color: var(--white) !important; }
.step-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
}
.step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
}
.step-arrow {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  padding: 88px 0 0;
  border-bottom: 1px solid var(--border);
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 88px;
}
.cta-card {
  background: var(--surface2);
  padding: 40px 36px;
  border-radius: 8px;
}
.cta-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 17px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 28px;
}
.card-arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-featured { grid-column: 1 / -1; }
  .steps-block { grid-template-columns: 1fr; gap: 12px; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .compare-block { grid-template-columns: 1fr; gap: 20px; }
  .compare-vs { text-align: center; }
  .compare-vs span { display: inline-block; transform: rotate(90deg); }
  .cta-split { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .topic-grid { grid-template-columns: 1fr; }
  .topic-featured { grid-column: span 1; min-height: auto; padding: 24px; }
  .topic-featured-img { position: relative !important; width: 100% !important; right: auto !important; top: auto !important; bottom: auto !important; height: auto !important; margin-bottom: 16px !important; }
  .topic-featured-img img { max-height: 180px !important; width: 100% !important; object-fit: contain; }
  .topic-featured-body { display: flex; flex-direction: column; }
  .topic-featured-body .topic-card-tag { order: 10; margin-top: 12px; }
  .topic-section { padding: 56px 0; }
  .compare-section { padding: 56px 0; }
  .steps-section { padding: 56px 0; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .stat-number { font-size: 56px; }
  .stat { padding: 36px 24px; }
}
@media (max-width: 960px) {
  article.article-body h2 { font-size: 24px !important; }
  article.article-body p { font-size: 17px !important; }
}

.fact-list {  list-style: none;  padding: 0;  margin: 24px 0;}.fact-list li {  padding: 12px 0;  font-size: 17px;  font-weight: 400;  color: #333;  border-bottom: 1px solid #e0e0e0;  display: flex;  align-items: center;  gap: 12px;}.fact-list li:last-child {  border-bottom: none;}.fact-check {  display: inline-flex;  align-items: center;  justify-content: center;  width: 24px;  height: 24px;  background: var(--orange);  color: #fff;  border-radius: 50%;  font-size: 13px;  font-weight: 700;  flex-shrink: 0;}.fact-list strong {  font-weight: 700;  color: var(--black);}

/* ── BOX-IMAGE FIX v5 — Bild rechts, sauberer Flex-Row ===== */
.topic-featured {
  display: block !important;
  position: relative;
  padding: 48px 330px 48px 44px !important;
  min-height: auto !important;
}
.topic-featured-img {
  position: absolute !important;
  right: 50px;
  top: 20px;
  bottom: 20px;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}
.topic-featured-img img {
  max-height: 200px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.topic-card-has-img {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 16px;
}
.topic-card-body {
  flex: 1;
  min-width: 0;
}
.topic-card-img {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: none !important;
  position: static !important;
  margin: 0 !important;
}
.topic-card-img img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}
.topic-card-has-img h4,
.topic-card-has-img .topic-card-text,
.topic-card-has-img .card-arrow {
  padding-right: 0 !important;
}

/* ── MOBILE (≤ 640px) — am Ende, überschreibt vorherige !important Regeln ── */
@media (max-width: 960px) {
  .topic-featured {
    padding: 24px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .topic-featured-img {
    position: relative !important;
    width: 100% !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    height: auto !important;
    margin-bottom: 16px !important;
  }
  .topic-featured-img img {
    max-height: 180px !important;
    width: 100% !important;
    object-fit: contain;
  }
  .topic-featured-body {
    display: flex;
    flex-direction: column;
  }
  .topic-featured-body .topic-card-tag {
    order: 10;
    margin-top: 12px;
  }
  .topic-card {
    padding: 20px !important;
  }
}


/* ── MOBILE: Smaller fact-list text + better wrapping ── */
@media (max-width: 960px) {
  .fact-list li {
    font-size: 15px !important;
    padding: 10px 0 !important;
    gap: 6px !important;
    display: block !important;
  }
  .fact-list li strong {
    display: inline;
  }
  .fact-list {
    margin: 16px 0 !important;
  }
}


/* ── TIMELINE ─────────────────────────── */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 0 72px;
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 52px;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-dot {
  position: absolute;
  left: -72px;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--black);
}
.timeline-card {
  background: var(--surface2);
  border-radius: 10px;
  padding: 20px 28px;
  margin-left: 24px;
}
.timeline-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 6px 0;
}
.timeline-card p {
  font-size: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .timeline { padding-left: 56px; }
  .timeline-item::before { left: -38px; top: 40px; }
  .timeline-dot {
    left: -56px;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .timeline-card { padding: 16px 20px; margin-left: 16px; }
  .timeline-card h4 { font-size: 17px; }
  .timeline-card p { font-size: 14px; }
}


/* ── SCROLL TO TOP ───────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: #e55a1e;
}


/* ── RELATED POSTS ────────────────────────── */
.related-posts {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr !important; }
  .related-posts { padding: 0 20px; }
}


/* ── RELATED POSTS (article pages) ──────── */
.related-posts {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 32px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 64px;
}
.related-posts h2 {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.related-card:hover {
  background: #ececec;
}
.related-card-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-start;
  margin-bottom: 10px;
}
.related-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.related-card-text {
  font-size: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.related-card .card-arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
}
.related-card-img {
  margin-bottom: 6px;
}
.related-card-img img {
  max-height: 100px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr !important; }
  .related-posts { padding: 48px 20px 0; }
  .related-card { padding: 24px; }
}
