/* Keep the hero learning cards separate and readable on mobile screens. */
@media (max-width: 760px) {
  .hero-art {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    height: auto;
    min-height: 0;
    margin: 2rem 0 0;
    max-width: 420px;
    transform: none;
  }

  .hero-ring {
    display: none;
  }

  .hero-paper,
  .hero-stat,
  .hero-chip {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }

  .hero-paper {
    min-height: 0;
    padding: 1.35rem;
    width: 100%;
  }

  .hero-paper strong {
    margin-top: 1.45rem;
  }

  .hero-paper > span {
    display: block;
    margin-top: 1.25rem;
    position: static;
  }

  .hero-stat {
    padding: 1rem;
    width: 100%;
  }

  .hero-chip {
    justify-self: start;
  }
}

@media (max-width: 440px) {
  .student-card-head strong small {
    margin-left: 0.13em;
  }
}
