/* Give the landing page compact, editorial topic cards without turning the
   rest of the site into a custom theme. */
.field-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.field-note-grid > p {
  margin: 0;
}

.field-note-grid a {
  display: block;
  height: 100%;
  padding: 1rem;
  color: var(--md-typeset-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.45rem;
  transition:
    border-color 120ms ease,
    transform 120ms ease;
}

.field-note-grid a:hover {
  border-color: var(--md-accent-fg-color);
  transform: translateY(-2px);
}

.field-note-grid strong {
  color: var(--md-primary-fg-color);
}

@media screen and (max-width: 44rem) {
  .field-note-grid {
    grid-template-columns: 1fr;
  }
}
