.child-select {
  min-height: 48px;
  color: var(--brand-navy);
  border-color: #dfe3e8;
  font-size: 0.9rem;
  font-weight: 600;
}

.child-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.child-result {
  grid-template-columns: 110px 170px 1fr;
}

.child-percentile {
  padding-left: 1.5rem;
  border-left: 1px solid #d8e2ee;
}

.child-percentile strong {
  display: block;
  color: var(--brand-navy);
  font-size: 2rem;
  line-height: 1;
}

.child-percentile sup {
  margin-left: 0.1rem;
  font-size: 0.72rem;
}

html.theme-dark .child-select {
  color: #e8edf5;
  background-color: #1a222e;
  border-color: #2a3341;
}

html.theme-dark .child-percentile {
  border-color: #2d3f61;
}

html.theme-dark .child-percentile strong {
  color: #e8edf5;
}

@media (max-width: 767.98px) {
  .child-result {
    grid-template-columns: 1fr 1fr;
  }

  .child-result .result-summary {
    grid-column: 1 / -1;
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid #d8e2ee;
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .child-result {
    grid-template-columns: 1fr;
  }

  .child-percentile {
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid #d8e2ee;
    border-left: 0;
  }
}
