/* ==========================================================
   Wanderkarte
   ========================================================== */

  :root {
    --viewport-height: 430px;
    --duration: 20s;
    --border-color: #c9c0a2;
    --bg: #ffffff;
  }

  body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: #2b2418;
  }

  main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }

  h1 {
    font-size: 1.6rem;
    margin: 0 0 18px;
    font-weight: normal;
  }

  .kartenfenster {
    position: relative;
    width: 100%;
    height: var(--viewport-height);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #d9ddc2;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    cursor: ew-resize;
  }

  .wanderkarte {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    max-width: none;
    will-change: transform;
    transform: translateX(0);
  }

  .hinweis {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #5d523f;
  }

  @media (max-width: 700px) {
    :root {
      --viewport-height: 260px;
      --duration: 55s;
    }
  }
