/* ============ PRAXISERGEBNIS SECTION ============ */
.praxis-section {
  padding: 8rem 0;
}

.praxis-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.praxis-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e5e7eb;
}

.praxis-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #166534;
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(22, 101, 52, 0.35);
  flex-shrink: 0;
}

.praxis-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.praxis-stat-value {
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: #166534;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.praxis-stat-label {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}

.praxis-testimonials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.praxis-testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.praxis-tag {
  display: inline-block;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid #bbf7d0;
  width: fit-content;
}

.praxis-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1f2937;
  flex: 1;
}

.praxis-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.praxis-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #d1fae5;
  color: #166534;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--sans);
}

.praxis-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
  line-height: 1.3;
}

.praxis-author-role {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .praxis-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .praxis-testimonials-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .praxis-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .praxis-stat-card{
    padding: 13px;
    min-width: 49%;
  }
  .praxis-stat-card > *{
    word-break: break-all;
  }
}