/* Shared Book Specifications component */
.bd-specs{
  display:grid;
  gap:.9rem;
  margin-top:.5rem;
  max-width:680px;
}

.bd-spec-row{
  display:grid;
  grid-template-columns:30% minmax(0,1fr);
  align-items:start;
  column-gap:.75rem;
  border-bottom:1px solid var(--bdr);
  padding-bottom:.85rem;
}

.bd-spec-label{
  color:var(--coconut);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.05em;
  line-height:1.4;
  text-transform:uppercase;
}

.bd-spec-value{
  min-width:0;
  color:var(--bark);
  font-size:.85rem;
  font-weight:700;
  line-height:1.55;
  overflow-wrap:break-word;
}
