/* The transcript.
   ------------------------------------------------------------------
   Two tracks, so two sides. Anything on the microphone is the account
   holder and anything from the speakers is whoever they were talking
   to, and that is a fact rather than a guess, so the layout is allowed
   to state it plainly rather than hedging with colour alone. */

.transcript { margin-top: 6px; }

.tline {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--line, #E2E2DC);
  align-items: flex-start;
}
.tline:first-child { border-top: 0; }

.twho {
  flex: 0 0 8.5rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2, #4B5457);
  line-height: 1.5;
}
.tline.tme .twho { color: var(--brand, #125A50); }

.tat {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-3, #7A8385);
  font-variant-numeric: tabular-nums;
}

.ttext {
  flex: 1 1 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink, #14181A);
}
.ttext .det { font-size: 11.5px; }

/* A picture sits in the flow of the conversation at the moment it was
   taken, not in a gallery somewhere else. A screenshot filed away from
   the sentence that explains it is worth very little. */
.tshot {
  margin: 14px 0;
  border: 1px solid var(--line, #E2E2DC);
  border-radius: 12px;
  overflow: hidden;
  background: var(--sunken, #EFEFEB);
}
.tshot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  background: var(--sunken, #EFEFEB);
}
.tshotfoot {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--ink-2, #4B5457);
  background: var(--surface, #fff);
  border-top: 1px solid var(--line, #E2E2DC);
}
.tshotfoot form { display: inline; }

@media (max-width: 640px) {
  .tline { flex-direction: column; gap: 2px; }
  .twho { flex: none; }
  .tat { display: inline; margin-left: 8px; }
}
