/*
 * Above-the-fold composition.
 *
 * The baseline hero intentionally bottom-aligns its right column. At common
 * desktop viewport sizes that creates an empty upper-right quadrant. This
 * layer turns the same column into a top-to-bottom editorial sequence:
 * promise, event memory, and product facts.
 *
 * Remove this stylesheet link from index.html to restore the previous
 * composition. The event ledger is hidden by default in the markup, so no
 * additional HTML reversion is necessary.
 */

@media (min-width: 981px) {
  .hero-grid {
    align-items: stretch;
  }

  .hero-aside {
    display: flex;
    flex-direction: column;
    padding-top: 0.15rem;
  }

  .hero-aside > p {
    margin-bottom: 2rem;
  }

  .event-ledger[hidden] {
    display: block;
    margin: auto 0 2.25rem;
    border-top: 1px solid rgba(23, 23, 19, 0.18);
  }

  .ledger-heading,
  .ledger-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem;
    align-items: center;
    min-height: 2.25rem;
    border-bottom: 1px solid rgba(23, 23, 19, 0.13);
    font-family: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.625rem;
  }

  .ledger-heading {
    grid-template-columns: 1fr auto;
    color: #6b6b61;
    font-size: 0.5625rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .ledger-row {
    color: #34342f;
  }

  .ledger-index {
    color: #ff5c35;
  }
}
