/* Recent activity drawer. */

.R{
  position:fixed;
  top:96px;
  right:20px;
  bottom:20px;
  width:min(360px,calc(100vw - 32px));
  z-index:40;
  transform:translateX(calc(100% + 28px));
  transition:transform .26s ease;
  border-color:rgba(61,48,33,.08);
  background:rgba(255,252,248,.86);
  box-shadow:0 28px 60px rgba(55,39,18,.1);
}

.R.open{
  transform:translateX(0);
}

.fh{
  padding:18px 18px 14px;
}

.fh-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.feed-close{
  width:32px;
  height:32px;
  border:none;
  border-radius:12px;
  background:var(--surface-strong);
  color:var(--ink-soft);
  cursor:pointer;
  font-size:16px;
}
