/* =========================================================
   Honest Limitations — issue-page extras
   Loaded after css/style.css on individual issue pages.
   Kept separate so the main stylesheet doesn't need touching
   every time an issue introduces a new component.
   ========================================================= */

/* Three-figure strip inside a long-form issue */
.issue .figure-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.2em 0 2.4em;
  border-top: 3px solid #a4282b;
  border-bottom: 1px solid #e6e3dd;
  background: #fff;
}
.issue .figure-strip .fig {
  padding: 24px 16px 20px;
  text-align: center;
  border-right: 1px solid #e6e3dd;
}
.issue .figure-strip .fig:last-child { border-right: 0; }
.issue .figure-strip .fig .n {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1.05;
  color: #a4282b;
}
.issue .figure-strip .fig .l {
  display: block;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-top: 9px;
}
@media (max-width: 560px) {
  .issue .figure-strip { grid-template-columns: 1fr; }
  .issue .figure-strip .fig { border-right: 0; border-bottom: 1px solid #e6e3dd; }
  .issue .figure-strip .fig:last-child { border-bottom: 0; }
}

/* Correction of record, inside a Kill File entry */
.kill .kill-correction {
  margin: 1.4em 0 0;
  padding: 16px 20px;
  border-left: 3px solid #a4282b;
  background: #f6f2ee;
  font-size: .97rem;
  line-height: 1.6;
}
.kill .kill-correction span {
  display: block;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a4282b;
  margin-bottom: 7px;
}

/* Secondary finding line inside a Failure Autopsy block */
.issue .autopsy-second {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: .95rem;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e6e3dd;
}
.issue .autopsy-second strong { color: #1a1a1a; }

/* MEASURED · DERIVED · MODELLED */
.issue .label-trio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1.8em 0 2em;
  padding: 0;
  list-style: none;
}
.issue .label-trio li {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a4282b;
  border: 1px solid #a4282b;
  padding: 9px 18px;
}
