/* =========================================================
   GROPAG Personalmanagement – Design System (HELL)
   Kader- & Spezialisten-Rekrutierung Bau- & Gebäudetechnik
   Heller, lichter Auftritt · Markenfarbe Bordeauxrot
   ========================================================= */

:root {
  /* Neutrale Töne */
  --navy-900: #15232f;       /* dunkler Text/Kontrast, sparsam */
  --navy-700-solid: #28435a;
  --slate-600: #4a5763;
  --slate-500: #5a6b78;
  --slate-400: #81909c;
  --line: #e6eaee;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-softer: #eef2f5;
  --ink: #1a2730;
  --ink-soft: #4d5a64;
  --logo-grey: #5f6e7d;       /* Logo-Schriftzug (wie Original, grau) */

  /* Akzent – Bordeauxrot (Markenfarbe Gropag seit 1988) */
  --accent: #c01c28;
  --accent-strong: #9d1620;
  --accent-soft: #f9ebec;     /* heller Bordeaux-Schimmer für Flächen */
  --accent-tint: #fdf5f6;
  --accent-bright: #c01c28;   /* lebendiger Bordeaux-Punkt im Logo */

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(21, 35, 47, 0.05);
  --shadow-md: 0 16px 40px rgba(21, 35, 47, 0.10);
  --shadow-lg: 0 30px 70px rgba(21, 35, 47, 0.14);

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink);
  background: var(--bg); line-height: 1.65; font-size: 17px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Helfer */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.eyebrow.light { color: var(--accent-strong); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
/* „section-dark" ist jetzt eine helle, warm getönte Akzentfläche */
.section-dark { background: var(--accent-tint); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(192,28,40,.28); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(192,28,40,.36); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-700-solid); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
/* „light"-Buttons funktionieren jetzt auf hellem Grund */
.btn-light { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(192,28,40,.28); }
.btn-light:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(192,28,40,.36); }
.btn-outline-light { background: transparent; color: var(--ink); border-color: #cfd6dc; }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===================== HEADER (hell) ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: .2em; line-height: 1; color: var(--logo-grey); display: inline-block; }
.brand .logo .dot { display: inline-block; width: .6em; height: .6em; border-radius: 50%; background: var(--accent); vertical-align: middle; margin: 0 .12em; position: relative; top: -.04em; overflow: hidden; text-indent: -999px; }
.brand .logo small { display: block; width: 100%; font-family: var(--font-body); font-weight: 600; font-size: .53rem; letter-spacing: .28em; text-transform: uppercase; color: var(--slate-500); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 8px; transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy-900); margin: 5px 0; transition: .3s; }

/* ===================== HERO (hell) ===================== */
.hero { position: relative; color: var(--ink); overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 34%, rgba(255,255,255,.70) 56%, rgba(255,255,255,.20) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 110px 0 100px; max-width: 720px; }
.hero h1 { color: var(--ink); }
.hero h1 .hl { color: var(--accent); }
.hero p { color: var(--ink-soft); font-size: 1.22rem; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--navy-900); line-height: 1; }
.hero-trust .num span { color: var(--accent); }
.hero-trust .lbl { font-size: .82rem; color: var(--slate-500); margin-top: 6px; letter-spacing: .02em; }

/* ===================== TRUST BAR ===================== */
.logobar { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.logobar .container { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.logobar .lab { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500); font-family: var(--font-head); font-weight: 600; }
.logobar .chip { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.02rem; opacity: .82; }

/* ===================== GRIDS / CARDS ===================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #dbe1e6; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 20px; font-size: 1.5rem;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: .98rem; }
.card .num-badge {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--accent);
  background: var(--accent-soft); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
}

/* Bild-Cards */
.imgcard { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; height: 100%; }
.imgcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.imgcard .ph { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-softer); }
.imgcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.imgcard:hover .ph img { transform: scale(1.05); }
.imgcard .body { padding: 24px 26px 28px; }
.imgcard .body h3 { margin-bottom: 8px; }
.imgcard .body p { font-size: .96rem; margin-bottom: 0; }
.imgcard .tag { display: inline-block; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }

/* Split (Text + Bild) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--bg-softer); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 18px; }

/* Liste mit Häkchen */
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); font-size: 1.02rem; }
.checklist li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: .85rem;
  display: grid; place-items: center; margin-top: 2px;
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem,4vw,3rem); color: var(--navy-900); line-height: 1; }
.stat .n span { color: var(--accent); }
.stat .l { margin-top: 10px; font-size: .92rem; color: var(--slate-500); }

/* Prozess */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step .s-num { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff; background: var(--accent); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; }
.step p { font-size: .95rem; margin-bottom: 0; }

/* Fachbereiche */
.fields { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.field {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.field:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.field .ab { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 1.15rem; }
.field .nm { font-weight: 600; color: var(--navy-900); }
.field .ds { font-size: .86rem; color: var(--slate-500); }

/* Team */
.team-card { text-align: center; }
.team-card .ph { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-softer); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }

/* Zitat (hell, mit Bordeaux-Akzent) */
.quote { max-width: 850px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem,2.8vw,2rem); line-height: 1.35; color: var(--ink); margin: 0 0 24px; letter-spacing: -.02em; }
.quote .who { color: var(--accent); font-weight: 600; }
.quote .who small { display: block; color: var(--slate-500); font-weight: 400; margin-top: 2px; }

/* CTA Band (hell, warm getönt) */
.cta-band { background: linear-gradient(120deg, var(--accent-soft), #ffffff 80%); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 58px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--accent); }
.cta-band h2 { color: var(--ink); position: relative; }
.cta-band p { color: var(--ink-soft); position: relative; max-width: 54ch; }
.cta-band .hero-actions { margin-top: 26px; position: relative; }

/* Blog */
.post { display: block; height: 100%; }
.post .meta { font-size: .82rem; color: var(--slate-400); margin-bottom: 8px; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .row .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 1.2rem; }
.contact-info .row h4 { font-family: var(--font-head); margin: 0 0 2px; font-size: 1rem; }
.contact-info .row a, .contact-info .row p { color: var(--ink-soft); margin: 0; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field-row { display: grid; gap: 18px; margin-bottom: 18px; }
.field-row.two { grid-template-columns: 1fr 1fr; }
label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--navy-900); display: block; margin-bottom: 7px; }
input, textarea, select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: var(--bg); transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,28,40,.14); }
textarea { resize: vertical; min-height: 130px; }

/* Page-Header (hell, warm getönt) */
.page-head { background: linear-gradient(180deg, var(--accent-soft), var(--bg)); padding: 70px 0 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-head h1 { color: var(--ink); max-width: 18ch; position: relative; }
.page-head p { color: var(--ink-soft); max-width: 60ch; font-size: 1.15rem; position: relative; }
.breadcrumb { font-size: .85rem; color: var(--slate-500); margin-bottom: 16px; position: relative; }
.breadcrumb a:hover { color: var(--accent); }

/* Bild-Hinweis */
.img-note { font-size: .72rem; color: var(--slate-400); text-align: center; margin-top: 6px; font-style: italic; }

/* ===================== FOOTER (hell) ===================== */
.site-footer { background: var(--bg-soft); color: var(--ink-soft); padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: var(--navy-900); font-size: .95rem; font-family: var(--font-head); letter-spacing: .04em; margin-bottom: 18px; }
.site-footer a { color: var(--ink-soft); transition: color .15s; }
.site-footer a:hover { color: var(--accent); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--slate-600); font-size: .95rem; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); font-weight: 700; transition: background .2s, color .2s, transform .2s; }
.social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: var(--slate-500); }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .grid-3, .grid-4, .stats, .steps, .fields { grid-template-columns: repeat(2,1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { padding: 80px 0 70px; max-width: none; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 60%, rgba(255,255,255,.80) 100%); }
}
@media (max-width: 760px) {
  section { padding: 52px 0; }
  .nav-links { position: fixed; inset: 80px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 26px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Bild-Logo */
.brand .logo-img { height: 46px; width: auto; display: block; }

/* Referenzen / Testimonials */
.testimonial { display: flex; flex-direction: column; }
.testimonial .t-quote { font-family: var(--font-head); font-weight: 500; font-size: 1.06rem; line-height: 1.5; color: var(--ink); margin: 0 0 18px; position: relative; padding-top: 18px; }
.testimonial .t-quote::before { content: "\201C"; position: absolute; top: 2px; left: -2px; font-family: Georgia, serif; font-size: 2.6rem; line-height: 1; color: var(--accent); }
.testimonial .t-author { margin-top: auto; }
.testimonial .t-author strong { display: block; font-family: var(--font-head); color: var(--navy-900); }
.testimonial .t-author span { font-size: .9rem; color: var(--slate-500); }

/* Eigene Stellenliste */
.joblist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.job-card .j-tag { align-self: flex-start; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.job-card h3 { margin-bottom: 6px; }
.job-card .j-meta { font-size: .9rem; color: var(--slate-500); margin-bottom: 12px; }
.job-card p { font-size: .97rem; margin-bottom: 0; }
.job-card .j-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.job-card .j-actions .btn { padding: 11px 20px; font-size: .9rem; }
@media (max-width: 760px) { .joblist { grid-template-columns: 1fr; } }

/* Testimonial Detailsatz */
.testimonial .t-detail { font-size: .95rem; color: var(--ink-soft); margin: 0 0 16px; }


/* ===================== STELLEN-INSERATE ===================== */
.stellen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stelle-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit; }
.stelle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stelle-eye { position: relative; aspect-ratio: 16/10; background: var(--accent) center/cover no-repeat; }
.stelle-eye::after { content: ""; position: absolute; inset: 0; background: rgba(192,28,40,.20); }
.stelle-eye .badge { position: absolute; z-index: 2; top: 10px; right: 10px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .04em; padding: 3px 10px; border-radius: 999px; }
.stelle-card .body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.stelle-card .body h3 { font-size: 1.08rem; margin: 0; line-height: 1.3; }
.stelle-card .body .meta { font-size: .85rem; color: var(--slate-500); }
.stelle-card .body .more { margin-top: auto; color: var(--accent); font-weight: 600; font-size: .9rem; }
.stelle-hero { position: relative; min-height: 300px; background: var(--accent) center/cover no-repeat; display: flex; align-items: flex-end; }
.stelle-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,35,47,.12) 30%, rgba(21,35,47,.62) 100%); }
.stelle-hero .inner { position: relative; z-index: 2; color: #fff; padding: 32px 0; width: 100%; }
.stelle-hero .badge { display: inline-block; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.stelle-hero h1 { color: #fff; margin: 0 0 6px; }
.stelle-hero .meta { color: rgba(255,255,255,.92); font-size: 1.02rem; }
.eckbox { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 20px; margin: 24px 0; font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 980px) { .stellen-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .stellen-grid { grid-template-columns: 1fr; } }

/* === Artikel / Blog-Beitrag === */
.prose { max-width: 760px; margin: 0 auto; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--font-head); font-size: 1.5rem; line-height: 1.3; margin-top: 1.8em; color: var(--ink); letter-spacing: -.01em; }
.prose h3 { font-family: var(--font-head); font-size: 1.16rem; margin-top: 1.4em; color: var(--ink); }
.prose p { color: var(--ink-soft); }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.25em; }
.prose li + li { margin-top: .4em; }
.prose strong { color: var(--ink); }
.prose .lead-in { font-size: 1.18rem; color: var(--ink); }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.6em 0; padding: .25em 0 .25em 1.1em; font-family: var(--font-head); font-size: 1.14rem; line-height: 1.4; color: var(--ink); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--slate-500); font-size: .92rem; margin-top: 16px; position: relative; }
.article-video { margin: 2.2em 0; padding: 22px 24px; background: var(--accent-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.article-video h4 { margin: 0 0 6px; font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.article-video p { margin: 0 0 14px; color: var(--ink-soft); }
.article-end { margin-top: 2.6em; padding-top: 1.6em; border-top: 1px solid var(--line); }
