/* === Karriere-Seite Feinanpassung === */

/* Grundlayout */
body {
  line-height: 1.6;
  background-color: #ffffff;
}

/* Header & Navigation */
header {
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav a {
  color: #0b3a6f;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #2a6f97;
}

/* Hero-Bereich */
.hero {
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: left;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #5b6472;
  margin-bottom: 20px;
}

.hero .btn {
  font-size: 16px;
}

/* Grid Layout für Stellen */
.jobs .panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.jobs .panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,58,111,0.15);
}

.jobs .panel h3 {
  font-size: 18px;
  color: #0a3151;
  margin-top: 0;
}

.jobs .panel p {
  font-size: 15px;
  color: #444;
}

/* Chips */
.chip {
  background: #f4f7fb;
  border: 1px solid #d0d6e0;
  font-size: 13px;
  color: #0a3151;
}

/* CTA & Buttons */
.btn {
  padding: 12px 20px;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 10px;
  transition: background-color 0.2s, transform 0.2s;
}

.btn.primary {
  background: #0b3a6f;
  border: none;
  color: #fff;
}

.btn.primary:hover {
  background: #0f4a8a;
  transform: translateY(-1px);
}

.btn.ghost {
  background: #fff;
  color: #0b3a6f;
  border: 1px solid #dcdcdc;
}

.btn.ghost:hover {
  background: #eef3f8;
}

/* Zwischenbereiche */
section {
  margin-bottom: 60px;
}

h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #0b3a6f;
  margin-bottom: 18px;
}

/* Listen */
ul {
  padding-left: 1.4rem;
}

ul li {
  margin-bottom: 6px;
}

/* Footer */
footer {
  font-size: 14px;
  line-height: 1.5;
  background: #f8f9fb;
  color: #5b6472;
  padding: 24px 0;
}

footer a {
  color: #0b3a6f;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsivität */
@media (max-width: 900px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  header .brand b {
    font-size: 16px;
  }

  .hero {
    text-align: center;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero .panel {
    margin-top: 24px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}
