/* ============================================================
   be curious. — Stellenportal der SBI-Group
   Gemeinsames Stylesheet für alle Seiten
   (rev. 2026-06)
   Akzentfarbe (Lavendel) und Typografie nach Vorlage be-curious.contact
   ============================================================ */

:root {
  --violett: #a59dd3;          /* Links, Buttons, Icons, Footer */
  --violett-dunkel: #837ab8;   /* Hover */
  --text: #404040;
  --heading: #222222;
  --linie: #cfcfcf;
  --seitenbreite: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--seitenbreite);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */

.site-header { padding-top: 28px; }

.site-header .header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo img {
  width: 280px;
  height: auto;
  display: block;
}

.site-nav {
  padding-top: 14px;
}

.site-nav a {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav a:hover { color: var(--violett-dunkel); }

/* kurze zentrierte Trennlinie unter dem Header */
.header-divider {
  width: 70px;
  border: 0;
  border-top: 1px solid var(--linie);
  margin: 34px auto 0 auto;
}

/* ---------- Allgemeine Typografie ---------- */

main { display: block; padding: 60px 0 80px 0; }

h1, h2, h3, h4 { color: var(--heading); font-weight: normal; }

h2.section-title {
  font-size: 32px;
  line-height: 1.25;
  margin: 80px 0 28px 0;
}

h2.section-title:first-child { margin-top: 0; }

h3.lede {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 28px 0;
}

p { margin: 0 0 22px 0; }

a { color: var(--violett); text-decoration: none; }
a:hover { color: var(--violett-dunkel); text-decoration: underline; }

/* Entlinkter Text: behält die Akzentfarbe, ist aber nicht klickbar */
.link-text { color: var(--violett); }

/* Button-Optik ohne Link-Funktion */
span.btn { cursor: default; }
span.btn:hover { background: var(--violett); }

strong { color: #2e2e2e; }

ul { margin: 0 0 22px 0; padding-left: 22px; }
li { margin: 4px 0; }

/* ---------- Stellenliste (Startseite) ---------- */

ul.stellen-liste {
  list-style: none;
  padding-left: 24px;
  margin: 0 0 22px 0;
}

ul.stellen-liste li { margin: 8px 0; }

ul.stellen-liste a { font-size: 15px; }

/* ---------- Werte (4 Spalten) ---------- */

.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

.wert .wert-icon { height: 112px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.wert .wert-icon svg { height: 100%; width: auto; fill: var(--violett); }
.wert .wert-icon img { height: 112px; width: auto; display: block; }

.wert h4 {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0 0 12px 0;
}

.wert p { font-size: 13px; line-height: 1.7; margin: 0; }

/* ---------- Spontan-Sektion ---------- */

.spontan {
  display: block;
  margin-top: 40px;
}

.spontan .spontan-text { text-align: left; }

.bis-nachher {
  text-align: left;
  font-weight: bold;
  font-size: 17px;
  color: var(--heading);
  margin-top: 36px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--violett);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: var(--violett-dunkel);
  color: #ffffff;
  text-decoration: none;
}

/* ---------- Stellenanzeige (Detailseite) ---------- */

.stelle h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.stelle .trenner {
  width: 70px;
  border: 0;
  border-top: 1px solid var(--linie);
  margin: 38px auto;
}

.stelle .abschnitt-titel {
  font-weight: bold;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.stelle ul li { margin: 8px 0; }

.stelle .bewerben { margin-top: 28px; }

.stelle .disclaimer {
  font-style: italic;
  font-size: 12px;
  color: #6f6f6f;
  margin-top: 48px;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 30px 0 40px 0;
}

.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 12px;
  color: var(--violett);
}

.site-footer nav {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.site-footer nav .sep { color: var(--violett); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
  .spontan { grid-template-columns: 1fr; justify-items: center; }
  .stelle h1 { font-size: 34px; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .site-header .header-row { flex-direction: column; }
  .werte-grid { grid-template-columns: 1fr; }
  .site-footer .footer-row { flex-direction: column; align-items: center; text-align: center; }
}
