.mobile-scroll-hint {
  display: none;
}

@media (max-width: 600px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 23px;
  }

  .hero-actions a {
    width: 100%;
    min-height: 46px;
    padding: 0 10px;
  }

  .hero-actions a:first-child {
    grid-column: 1 / -1;
  }

  .principles {
    margin-bottom: 54px;
    padding: 16px 18px;
  }

  #results {
    overflow: hidden;
  }

  #results .section-head {
    margin-bottom: 18px;
  }

  .mobile-scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-scroll-hint::before {
    content: "↔";
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 999px;
    background: #e5f1ec;
    color: var(--green);
    font-size: 14px;
  }

  .result-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -18px;
    padding: 0 18px 9px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .result-grid::-webkit-scrollbar {
    display: none;
  }

  .result-grid article {
    flex: 0 0 min(82vw, 315px);
    min-height: 224px;
    scroll-snap-align: start;
  }
}
