.calls-page {
  background: var(--paper);
}
.calls-health {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font: 600 12px var(--font-mono);
}
.calls-health i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.calls-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(40px, 6vw, 76px) clamp(20px, 4vw, 52px) 28px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.calls-intro h1 {
  margin-bottom: 12px;
}
.calls-intro p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--ink-2);
  font: 400 22px/1.45 var(--font-body);
}
.calls-search {
  width: min(420px, 100%);
  display: grid;
  gap: 8px;
}
.calls-search label,
.calls-toolbar span {
  color: var(--rust);
  font: 700 10px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.calls-search input,
.calls-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}
.calls-toolbar {
  display: flex;
  gap: 14px;
  padding: 18px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.calls-toolbar label {
  min-width: 220px;
  display: grid;
  gap: 7px;
}
.calls-workspace {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 0;
}
.calls-list-shell {
  border-right: 1px solid var(--rule);
  background: var(--white);
}
.attention-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 3px solid var(--rust);
  background: #ffffff;
}
.attention-strip span {
  color: var(--rust);
  font: 800 11px var(--font-mono);
  letter-spacing: .08em;
}
.attention-strip strong {
  color: var(--navy);
  font: 700 13px var(--font-sans);
}
.calls-list {
  display: grid;
}
.call-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: #fffaf0;
  text-align: left;
  padding: 16px 18px;
  display: grid;
  gap: 7px;
  color: var(--ink);
}
.call-row:hover,
.call-row.active {
  background: #ffffff;
  box-shadow: inset 4px 0 0 var(--rust);
}
.call-row strong {
  font: 700 18px/1.15 var(--font-display);
  color: var(--navy);
}
.call-row p {
  margin: 0;
  color: var(--ink-2);
  font: 14px/1.35 var(--font-sans);
}
.call-row footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-3);
  font: 600 10px var(--font-mono);
  text-transform: uppercase;
}
.call-row[data-status="open"] footer::before {
  content: "Open moves";
  color: var(--rust);
}
.load-more {
  width: calc(100% - 36px);
  margin: 18px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 14px;
  font-weight: 700;
}
.call-detail {
  background: var(--paper);
  padding: clamp(22px, 4vw, 44px);
}
.detail-empty {
  max-width: 440px;
  padding: 24px;
  border: 3px solid var(--rule);
  background: #ffffff;
}
.detail-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font: 700 26px var(--font-display);
}
.detail-top {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.detail-top h2 {
  color: var(--navy);
}
.detail-top p {
  margin: 0;
  color: var(--ink-3);
  font: 600 12px var(--font-mono);
}
.detail-top a {
  width: fit-content;
  border-radius: 3px;
  background: var(--rust);
  color: var(--white);
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 700;
}
.detail-section {
  margin-bottom: 18px;
  border: 3px solid var(--rule);
  background: #ffffff;
}
.detail-section h3 {
  margin: 0;
  padding: 12px 15px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  font: 800 12px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-section.moves h3 {
  background: var(--rust);
  color: var(--white);
  border-bottom: 0;
}
.detail-section p,
.detail-section ul {
  margin: 0;
  padding: 17px 18px;
  color: var(--ink);
  font: 17px/1.55 var(--font-body);
}
.detail-section ul {
  padding-left: 38px;
}
.detail-section li {
  margin-bottom: 10px;
}
@media (max-width: 760px) {
  .calls-intro,
  .calls-toolbar {
    display: grid;
  }
  .calls-toolbar label {
    min-width: 0;
  }
  .calls-workspace {
    grid-template-columns: 1fr;
  }
  .calls-list-shell {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .call-detail {
    padding: 20px;
  }
}
