/* Semtrix Akkordeon */



  .accordion{
    max-width:100%;
    margin-top:15px;
    display:grid;
    gap:12px;
  }


  .accordion details{
    background:transparent;
    color:#1f2937; 
    overflow:visible; 
  }


  .accordion summary{
    background-color:#2798ac;
    color:#ffffff;
    list-style:none;
    cursor:pointer;
    padding:18px 56px 18px 20px;
    position:relative;
    font-weight:600;
    outline:none;
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:7px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
  }

  .accordion summary:hover{

    background-image:linear-gradient(rgba(255,255,255,.06), rgba(255,255,255,.06));
  }


  .accordion summary:focus,
  .accordion summary:focus-visible{
    box-shadow:0 0 0 3px rgba(79,70,229,.35), 0 6px 20px rgba(0,0,0,.06);
  }


  .accordion summary::-webkit-details-marker{ display:none; }


  .accordion summary::after{
    content:"";
    position:absolute;
    right:18px;
    top:50%;
    width:10px; height:10px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform .25s ease;
    opacity:.9;
  }
  .accordion details[open] summary::after{
    transform: translateY(-50%) rotate(135deg);
  }


  .accordion .content{
    margin:8px 0 0 0;
    padding:0;
    background:transparent;
  }


  .accordion .content-inner{
    max-height:0;
    overflow:hidden; /* breite Unterstützung */
    transition:max-height .35s ease;
  }
  .accordion details[open] .content-inner{
    max-height:600px; /* ggf. erhöhen bei viel Inhalt */
  }

  /* reduzierte Bewegung */
  @media (prefers-reduced-motion: reduce){
    .accordion .content-inner{ transition:none; }
    .accordion summary::after{ transition:none; }
  }