/* === Bauerschmidt Section Heading === */
.bs-shead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  font-family: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.bs-shead--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.bs-shead__content { flex: 1 1 auto; min-width: 0; }

.bs-shead__eyebrow {
  display: block;
  font-family: "Funnel Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0077C8;
  margin-bottom: 12px;
}

.bs-shead__title {
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0D1B2E;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.bs-shead__description {
  margin: 16px 0 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0D1B2E;
  max-width: 65%;
}
.bs-shead__description > *:first-child { margin-top: 0; }
.bs-shead__description > *:last-child  { margin-bottom: 0; }
.bs-shead__description p {
  margin: 0 0 1em 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.bs-shead__description p:last-child { margin-bottom: 0; }
.bs-shead__description ul,
.bs-shead__description ol {
  margin: 0 0 1em 0;
  padding-left: 1.5em;
}
.bs-shead__description li {
  margin: 0 0 0.4em 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.bs-shead__description strong,
.bs-shead__description b { font-weight: 600; color: inherit; }
.bs-shead__description a {
  color: #0077C8;
  text-decoration: underline;
}
.bs-shead__description a:hover {
  color: #00497C;
}

@media (max-width: 767px) {
  .bs-shead__description { max-width: 100%; }
}

.bs-shead__action { flex: 0 0 auto; }

.bs-shead__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.bs-shead__btn:hover {
  transform: translateY(-1px);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Blau */
.bs-shead__btn--primary {
  background: #0077C8;
  border-color: #0077C8;
  color: #FFFFFF;
}
.bs-shead__btn--primary:hover {
  background: #00497C;
  border-color: #00497C;
  color: #FFFFFF;
}

/* Grün */
.bs-shead__btn--accent {
  background: #4DAD39;
  border-color: #4DAD39;
  color: #FFFFFF;
}
.bs-shead__btn--accent:hover {
  background: #39812A;
  border-color: #39812A;
  color: #FFFFFF;
}

.bs-shead__btn-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 767px) {
  .bs-shead {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .bs-shead__title { font-size: clamp(24px, 6vw, 32px); line-height: 1.2; }
  .bs-shead__btn {
    padding: 14px 22px;
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .bs-shead__action { width: 100%; }
}

@media (max-width: 480px) {
  .bs-shead__eyebrow { font-size: 12px; margin-bottom: 8px; }
  .bs-shead__description { font-size: 15px; line-height: 1.6; }
}
