@media (max-width: 1024px) {

  /* Inhaltsangabe ein/ausblenden */
  .inhaltsangabe[aria-hidden="true"] {
    display: none !important;
  }

  .inhaltsangabe.is-open {
    display: block !important;
  }

  /* Container Styling */
  .inhaltsangabe.is-open .e-con-inner {
    background: #f3f3f3;
    border-radius: 14px;
    padding: 22px 20px 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  /* Titel */
  .inhaltsangabe .elementor-heading-title {
    text-align: center;
    margin-bottom: 18px;
  }

  /* Wrapper */
  .mobile-simple-toc {
    margin-top: 6px;
  }

  /* Liste – RESPONSIVE GRID */
  .mobile-simple-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;

    /* DAS ist der wichtige Teil */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 18px 22px;
    justify-items: center;
    align-items: start;
  }

  /* Items */
  .mobile-simple-toc li {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  /* Links */
  .mobile-simple-toc a {
    display: inline-block;
    color: #2c2c2c;

    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;

    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;

    text-transform: uppercase;
    letter-spacing: 0.01em;

    max-width: 260px;

    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;

    transition: opacity 0.2s ease;
  }

  /* Hover / Focus */
  .mobile-simple-toc a:hover,
  .mobile-simple-toc a:focus {
    opacity: 0.75;
  }

  .mobile-simple-toc a:focus-visible {
    outline: 2px solid #c98a00;
    outline-offset: 3px;
    border-radius: 2px;
  }
}