/* Hairline rows: label | value, a rule between each. */

.hairlines {
  list-style: none;
  padding: 0;
  margin-top: var(--lg);
  border-top: var(--hair);
}

.hairlines li {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  column-gap: var(--md);   /* no row gap: the optional .below cell sets its own air */
  padding: 1.1rem 0;
  margin: 0;
  border-bottom: var(--hair);
  line-height: 1.55;
}

.hairlines li span:first-child { font-weight: var(--regular); }
.hairlines li span:nth-child(2) { color: var(--text-2); font-weight: var(--light); }
.hairlines li .below { grid-column: 1 / -1; margin-top: var(--sm); }   /* the optional third cell, the whole row */

.hairlines small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hairlines b { display: block; font-weight: var(--regular); color: var(--text); margin-bottom: 0.2rem; }

.hairlines.itin li { grid-template-columns: 1fr 2fr; }

@media (max-width: 420px) {   /* two columns down to phone width (Costa, 2026-09-14) */
  .hairlines li { grid-template-columns: 1fr; gap: 0.3rem; }
}
