/* Portrait-phone layout for the Find Your Court pathway. */
@media (max-width: 900px) {
  .programme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .programme-grid article {
    min-height: 250px;
    padding: 26px 24px;
    border-bottom: 1px solid var(--black);
  }

  .programme-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .programme-grid {
    grid-template-columns: 1fr !important;
    margin-top: 34px;
  }

  .programme-grid article,
  .programme-grid article:first-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .programme-grid article:last-child {
    border-bottom: 0;
  }

  .programme-grid h3 {
    margin: 20px 0 10px;
    font-size: 28px;
  }

  .programme-grid p {
    max-width: 34rem;
    font-size: 15px;
  }

  .programme-grid a {
    display: inline-block;
    margin-top: 22px;
  }
}
