.panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(12,17,24,.90), rgba(10,15,21,.90));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.head{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.18);
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.body{ padding:16px; }

.tiny{ font-size:12px; color:var(--muted); font-family:var(--mono); }

.item{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(0,0,0,.18);
  font-family:var(--mono);
  font-size:13px;
  line-height:1.35;
}

.meta{ color:var(--muted); font-size:12px; margin-top:6px; }

.hr{ height:1px; background:var(--line); margin:14px 0; }
/* ==========================
   PANEL HEAD — LESS BLACK
   ========================== */

.panel .head{
  background:
    linear-gradient(
      180deg,
      rgba(28,34,44,.95),
      rgba(20,26,36,.95)
    );

  border-bottom: 1px solid rgba(140,155,175,.35);
}
.panel .head{
  box-shadow:
    inset 0 -1px 0 rgba(125,249,255,.08),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.panel .head{
  color: #d6deea;
}
