/* The marketing footer's column grid.
 *
 * Four columns from the md breakpoint up: the brand lockup, then SOLUTIONS,
 * COMPANY and RESOURCES. The markup asks for three (md:grid-cols-3), which was
 * right while the brand cell was hidden and there were only three columns to
 * place. With the lockup back there is a fourth cell, and at three columns
 * RESOURCES drops to a row of its own with no rule above it, because the grid
 * turns its horizontal dividers off at that breakpoint.
 *
 * This lives here rather than as md:grid-cols-4 on the element because
 * styles.css is a checked-in Tailwind build and there is no build step in the
 * repo to regenerate it, so a class that is not already compiled does nothing.
 */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
