/* Original manuscript category labels, using the site's outlined speech motif. */
.speech-label {
  display:table;
  position:relative;
  margin-left:auto;
  margin-right:auto;
  padding:5px 16px;
  border:2px solid #000;
  border-radius:22px;
  background:var(--brand-orange);
  color:#000;
}
.speech-label::after {
  content:'';
  position:absolute;
  width:9px;
  height:9px;
  bottom:-6px;
  left:calc(50% - 5px);
  transform:rotate(45deg);
  border-right:2px solid #000;
  border-bottom:2px solid #000;
  background:var(--brand-orange);
}
@media(max-height:700px) {
  .speech-label { padding:3px 12px; }
  #work .card-body { padding-top:8px; padding-bottom:8px; }
}
