/* === module: _gossip_notebook === */
      /* ===== Gossip Notebook ===== */
      .gossip-notebook {
        border-top: 1px solid #222;
        padding: 10px 16px;
        max-height: 260px;
        overflow-y: auto;
        flex-shrink: 0;
      }
      .gossip-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        margin-bottom: 6px;
      }
      .gossip-header h4 {
        margin: 0;
        font-size: 12px;
        color: #d3b27a;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .gossip-count {
        display: inline-block;
        min-width: 18px;
        text-align: center;
        padding: 0 5px;
        font-size: 10px;
        line-height: 16px;
        border-radius: 999px;
        color: #1b1306;
        background: #e0b15b;
      }
      .gossip-notebook .toggle-arrow {
        font-size: 10px;
        color: #666;
        transition: transform 0.2s;
      }
      .gossip-notebook.collapsed .gossip-body {
        max-height: 0;
        overflow: hidden;
      }
      .gossip-notebook.collapsed .toggle-arrow {
        transform: rotate(-90deg);
      }
      .gossip-body {
        max-height: 260px;
        overflow-y: auto;
        transition: max-height 0.3s;
      }
      .gossip-empty {
        color: #666;
        font-size: 11px;
        padding: 8px 0;
      }
      .gossip-item {
        background: #18161f;
        border: 1px solid #2b2735;
        border-left: 3px solid #d39a52;
        border-radius: 8px;
        padding: 8px 10px;
        margin-bottom: 6px;
      }
      .gossip-item-meta {
        color: #d8b889;
        font-size: 10px;
        margin-bottom: 4px;
      }
      .gossip-item-quote {
        color: #ece6dd;
        font-size: 11px;
        line-height: 1.5;
      }

/* === end module: _gossip_notebook === */
