/* === Bauerschmidt Industry List === */
.bs-ind {
  font-family: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bs-ind__item {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 3em 0;
  border-bottom: 1px solid #E5E5E5;
}
.bs-ind__item:first-child { padding-top: 0; }
.bs-ind__item:last-child  { border-bottom: 0; }

.bs-ind__num {
  flex: 0 0 18%;
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #0077C8;
  padding-right: 1em;
  font-variant-numeric: tabular-nums;
}

.bs-ind__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bs-ind__title {
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #0D1B2E;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.bs-ind__subtitle {
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0D1B2E;
  overflow-wrap: break-word;
}

.bs-ind__image {
  width: 100%;
  height: 342px;
  margin: 0;
  display: block;
  overflow: hidden;
}
.bs-ind__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.bs-ind__description {
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0D1B2E;
}
.bs-ind__description > *:first-child { margin-top: 0; }
.bs-ind__description > *:last-child  { margin-bottom: 0; }
.bs-ind__description p { margin: 0 0 1em 0; }
.bs-ind__description p:last-child { margin-bottom: 0; }
.bs-ind__description strong, .bs-ind__description b { font-weight: 600; }

/* Trennlinie zwischen Description, Feature-Rows */
.bs-ind__divider {
  display: block;
  width: 100%;
  height: 1px;
  min-height: 1px;
  background-color: #E5E5E5;
  background-image: none;
  border: 0;
  outline: 0;
  margin: 1em 0;
  padding: 0;
  opacity: 1;
}

/* Feature-Row (Heading links 40% | Content rechts 60%) */
.bs-ind__feature {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: baseline;
}

.bs-ind__feature-heading {
  flex: 0 0 40%;
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #0D1B2E;
}

.bs-ind__feature-content {
  flex: 1 1 60%;
  min-width: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0D1B2E;
}
.bs-ind__feature-content > *:first-child { margin-top: 0; }
.bs-ind__feature-content > *:last-child  { margin-bottom: 0; }
.bs-ind__feature-content p { margin: 0 0 0.8em 0; }
.bs-ind__feature-content p:last-child { margin-bottom: 0; }
.bs-ind__feature-content ul,
.bs-ind__feature-content ol {
  margin: 0;
  padding-left: 1.5em;
}
.bs-ind__feature-content li {
  margin: 0 0 0.4em 0;
  color: #0D1B2E;
}
.bs-ind__feature-content li::marker {
  color: #0077C8;
}
.bs-ind__feature-content strong,
.bs-ind__feature-content b { font-weight: 600; }

/* Mobile */
@media (max-width: 900px) {
  .bs-ind__item {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 !important;
  }
  .bs-ind__num {
    flex: 0 0 auto !important;
    padding-right: 0;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .bs-ind__body { gap: 10px !important; }
  /* Bild auf Mobile: aspect-ratio 16/9, kompakter, ohne Border-Radius */
  .bs-ind__image {
    height: auto !important;
    aspect-ratio: 16 / 9;
    max-height: 220px;
    border-radius: 0;
  }
  .bs-ind__divider { margin: 12px 0 !important; }
  .bs-ind__feature {
    flex-direction: column;
    gap: 8px;
  }
  .bs-ind__feature-heading {
    flex: 0 0 auto !important;
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .bs-ind__item { padding: 28px 0 !important; gap: 10px; }
  .bs-ind__title    { font-size: 22px; line-height: 1.25; }
  .bs-ind__image    {
    aspect-ratio: 16 / 9;
    max-height: 200px;
  }
  .bs-ind__feature-heading { font-size: 18px; line-height: 1.3; }
  .bs-ind__feature-content { font-size: 15px; line-height: 1.6; }
  .bs-ind__feature-content ul,
  .bs-ind__feature-content ol { padding-left: 1.25em; }
}

@media (max-width: 400px) {
  .bs-ind__image { max-height: 180px; }
}
