/*---------------------------------------
  SECTION NUTZEN
-----------------------------------------*/
.section-nutzen {
  background: var(--gradient-dark);
  padding: 40px 0;
  text-align: center;
}

.section-nutzen .whiteband-header {
  color: var(--white-color);
}

.section-nutzen .intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-color);
  margin-bottom: 24px;
  text-align: center;
}

.nutzen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nutzen-card {
  background: #ffffff;
  border-radius: 0px;
  padding: 16px 24px;
  border-top: none;
  box-shadow: none;
}

.nutzen-card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: #F6A313;
}

.nutzen-card-icon svg {
  width: 100%;
  height: 100%;
}

.nutzen-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--p-color);
  margin-bottom: 4px;
}

.nutzen-card-body {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 880px) {
  .nutzen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nutzen-grid {
    grid-template-columns: 1fr;
  }
}
