@media (min-width: 1024px) {
  /* Chapter Five: make the facts column genuinely share the top row with the chapter heading. */
  section[aria-labelledby="current-chapter-heading"] > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
    column-gap: 5rem;
    align-items: start;
  }

  section[aria-labelledby="current-chapter-heading"] > div > :first-child {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 3rem;
  }

  section[aria-labelledby="current-chapter-heading"] > div > div.grid {
    display: contents;
  }

  section[aria-labelledby="current-chapter-heading"] > div > div.grid > :first-child {
    grid-column: 1;
    grid-row: 2;
  }

  section[aria-labelledby="current-chapter-heading"] > div > div.grid > :last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 0 !important;
    transform: none !important;
  }
}

/* The No-Gi asset is present in the build; keep its image element from inheriting a hidden state. */
section[aria-labelledby="disciplines-heading"] li:nth-child(2) img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
