/* Branche / Dienstleistungen — strikt unter .native-branche */

.native-branche {
  --nb-max: 1140px;
  --nb-primary: #2a82c9;
  --nb-text: #6c6c6c;
  --nb-heading: #000;
  font-family: "PT Sans", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--nb-text);
  box-sizing: border-box;
}

.native-branche *,
.native-branche *::before,
.native-branche *::after {
  box-sizing: inherit;
}

.native-branche-section {
  margin-top: 150px;
  padding: 50px 0;
}

.native-branche-section__inner {
  max-width: var(--nb-max);
  margin: 0 auto;
  padding: 0 16px;
}

.native-branche-section__title {
  font-family: "PT Sans Narrow", "PT Sans", system-ui, sans-serif;
  font-size: 35px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--nb-primary);
  margin: 0 0 28px;
}

.native-branche-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.native-branche-card {
  margin: 0;
  min-height: 100%;
}

.native-branche-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 100%;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.native-branche-card__link:hover,
.native-branche-card__link:focus-visible {
  text-decoration: none;
}

.native-branche-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  margin: 0 0 12px;
}

.native-branche-card__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.native-branche-card__content {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.native-branche-card__title {
  font-family: "PT Sans Narrow", "PT Sans", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--nb-primary);
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .native-branche-section__title {
    font-size: 29px;
  }

  .native-branche-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .native-branche-section {
    margin-top: 120px;
    padding: 40px 0;
  }

  .native-branche-section__title {
    font-size: 30px;
  }

  .native-branche-grid {
    grid-template-columns: 1fr;
  }
}
