* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    line-height: 1.35;
    color: #000;
    background: #fff;
    padding: 20px 24px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  
  /* Der klickbare Name, immer oben links */
  #name {
    cursor: pointer;
    display: inline-block;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Layout: Name in der linken Spalte, Info in der zweiten Spalte */
  .wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: start;
    column-gap: 0;
  }
  
  #info {
    display: none;
  }
  
  /* Wenn aktiv, wird die Info-Spalte sichtbar */
  body.open #info {
    display: block;
  }
  
  .block {
    margin-bottom: 1.35em;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Auf schmalen Bildschirmen rutscht die Info unter den Namen */
  @media (max-width: 640px) {
    .wrapper {
      grid-template-columns: 1fr;
      row-gap: 1.35em;
    }
  }