.uq-live-draft-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
}
.uq-live-draft-lead{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.uq-live-draft-avatar{
  width:30px;
  height:30px;
  border-radius:8px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--off);
  display:grid;
  place-items:center;
  font-size:10px;
  font-weight:700;
  flex:0 0 auto;
}
.uq-live-draft-lead strong{
  display:block;
  font-size:11px;
  color:var(--off);
  font-weight:600;
}
.uq-live-draft-lead span{
  display:block;
  margin-top:2px;
  font-size:9px;
  color:rgba(240,237,230,.38);
}
.uq-live-draft-status{
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(240,237,230,.52);
  display:flex;
  align-items:center;
  white-space:nowrap;
}
.uq-live-draft-body{
  padding:24px;
  height:430px;
  box-sizing:border-box;
  display:grid;
  grid-template-rows:auto auto minmax(190px,1fr) auto;
  overflow:hidden;
  transition:opacity .25s ease,transform .25s ease;
}
.uq-live-draft.is-generating .uq-live-draft-body{
  opacity:.28;
  transform:translateY(4px);
}
.uq-live-draft.is-generating .uq-live-draft-status{color:var(--off)}
.uq-draft-context{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:18px;
}
.uq-draft-context span{
  padding:5px 8px;
  border-radius:5px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  color:rgba(240,237,230,.52);
  font-size:9px;
}
.uq-draft-subject{
  color:var(--off);
  font-size:12px;
  font-weight:600;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.07);
  margin-bottom:16px;
}
.uq-draft-copy{
  color:rgba(240,237,230,.62);
  font-size:12px;
  line-height:1.7;
  min-height:190px;
  max-height:230px;
  overflow:hidden;
}
.uq-draft-copy p+p{margin-top:11px}
.uq-draft-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  align-self:end;
}
.uq-draft-replay{
  border:0;
  background:transparent;
  color:rgba(240,237,230,.42);
  font:inherit;
  font-size:10px;
  cursor:pointer;
  padding:8px 0;
}
.uq-draft-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.12);
  background:#f0ede6;
  color:#111116;
  font:inherit;
  font-size:10px;
  font-weight:700;
  cursor:pointer;
}
.uq-outreach-points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.uq-outreach-points span{
  border:1px solid rgba(255,255,255,.08);
  border-radius:6px;
  padding:7px 9px;
  color:rgba(240,237,230,.56);
  font-size:10px;
}
@media(max-width:768px){
  .uq-outreach-section{padding:0 20px 64px}
  .uq-live-draft-body{padding:20px;height:470px;grid-template-rows:auto auto minmax(230px,1fr) auto}
  .uq-draft-copy{min-height:230px;max-height:270px}
  .uq-live-draft-status{font-size:8px}
  .uq-draft-actions{align-items:stretch;flex-direction:column-reverse}
  .uq-draft-cta{width:100%}
}
@keyframes uqPulse{
  0%,100%{opacity:.35;transform:scale(.9)}
  50%{opacity:1;transform:scale(1.12)}
}
