/* =========================================================
   /assets/headings.css – Section-Überschriften
   Fluid, aber klar begrenzt (keine Ausreißer)
   ========================================================= */
section h2{
  /*  min  ,           fluid wächst mit vw         ,  max  */
  font-size: clamp(20px, calc(16px + 1.2vw), 30px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 10px;
}

section h3{
  font-size: clamp(18px, calc(14px + 1vw), 24px);
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 8px;
}