/* Issue strip: right = issue number, center = topic, left = date */
.issue-strip {
  border: 2px solid #17130f;
  box-shadow: inset 0 0 0 3px rgba(246, 235, 204, .35);
  display: grid;
  grid-template-areas: "date ornament-left topic ornament-right number";
  grid-template-columns: minmax(150px, 1fr) 30px minmax(0, 2.9fr) 30px minmax(150px, 1fr);
  align-items: center;
  text-align: center;
  gap: 4px;
  font-size: 21px;
  font-weight: 900;
  background: rgba(246, 235, 204, .18);
  padding: 8px 14px;
}
.issue-item { min-width: 0; }
.issue-item-number { grid-area: number; white-space: nowrap; }
.issue-item-topic {
  grid-area: topic;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.28;
  padding-inline: 8px;
}
.issue-item-date { grid-area: date; white-space: nowrap; }
.strip-ornament {
  font-size: 23px;
  line-height: 1;
  align-self: center;
  justify-self: center;
}
.strip-ornament-right { grid-area: ornament-right; }
.strip-ornament-left { grid-area: ornament-left; }
