/* Lay out the Helm chart "values" definition lists as two columns: the
   inline-code parameter label in a fixed ~35-character column, and the default
   value plus description in the second column.  This makes the default value and
   every (wrapped) line of the description begin at the same position across all
   entries.  Each entry is its own <dl> (the `---` rules between entries split
   them apart), so the fixed first column is what keeps them aligned. */
#values dl {
  display: grid;
  grid-template-columns: 35ch 1fr;
  column-gap: 0;
  align-items: baseline;
}

#values dl > dt {
  grid-column: 1;
  font-weight: normal;
  overflow-wrap: anywhere;
}

#values dl > dd {
  grid-column: 2;
  margin-left: 0;
}
