:root {
  --hint-box-background-color: var(--color-midnight);
  --hint-box-font-size: 1.8rem;
  --hint-box-min-width: none;
  --hint-box-padding-inline: 1.25em;
  --hint-box-text-color: var(--color-white);
  --hint-box-width: auto;
  --hint-box-height: 10rem;
}

.hint-box {
  background-color: var(--hint-box-background-color);
  block-size: var(--hint-box-height);
  color: var(--hint-box-text-color);
  display: inline-flex;
  flex-direction: column;
  font-size: var(--hint-box-font-size);
  inline-size: var(--hint-box-width);
  justify-content: center;
  max-inline-size: 100%;
  min-inline-size: var(--hint-box-min-width);
  padding-inline: var(--hint-box-padding-inline);
  white-space: nowrap;
}

.hint-box__label {
  font-size: 0.8em;
  line-height: 1.2em;
  margin-block-end: 0.625em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hint-box__value {
  font-size: 1.125em;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hint-box__abbr {
  text-decoration: none;
}
