/**
 * @file
 * Styles for views.
 */

/*
 * Media query breakpoints.
 * Processed by postcss/postcss-custom-media.
 */

/* Navigation related breakpoints */

/* Grid related breakpoints */

/* Grid shifts from 6 to 14 columns. */

/* Width of the entire grid maxes out. */

.view,
.view-content {
  display: grid;
  gap: var(--sp2);
  grid-template-rows: max-content;
}

@media (min-width: 768px) {

.view,
.view-content {
    gap: var(--sp3);
}
  }
