body { display: flex; flex-direction: column; min-height: 100vh; }
    main { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; }

    /* ── Autocomplete dropdown ───────────────────────────────────────────── */
    #entity-suggestions {
      position: absolute;
      top: 100%;
      left: -1px;
      right: -1px;
      z-index: 50;
      background: #fbf8ef;
      border: 1px solid #1a2b4a;
      border-top: none;
      max-height: 300px;
      overflow-y: auto;
    }
    .entity-suggestion {
      padding: 11px 22px;
      cursor: pointer;
      border-bottom: 1px solid rgba(201,184,140,0.35);
      text-align: left;
      transition: background 0.08s;
    }
    .entity-suggestion:last-child { border-bottom: none; }
    .entity-suggestion:hover,
    .entity-suggestion[aria-selected="true"] { background: #f5f1e8; }
    .entity-suggestion .sugg-name {
      font-family: "EB Garamond", Garamond, serif;
      font-size: 17px;
      font-weight: 450;
      color: #1a2b4a;
      line-height: 1.3;
    }
    .entity-suggestion .sugg-meta {
      font-size: 12px;
      color: #3d4c6a;
      margin-top: 3px;
      letter-spacing: 0.04em;
    }
