/* Pull main content up slightly; match hero green on overscroll */
html,
body {
  background-color: rgb(0 36 20);
}

#__next {
  margin-top: -10px;
  position: relative;
}

section[data-slice-type="product_deep_dive_v2"] .grid-base {
  display: grid !important;
  gap: 16px !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

section[data-slice-type="product_deep_dive_v2"] .grid-base > div {
  min-height: 436px;
}

@media (min-width: 768px) {
  section[data-slice-type="product_deep_dive_v2"] .grid-base {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  section[data-slice-type="product_deep_dive_v2"] .grid-base > div {
    grid-column: auto / span 1 !important;
    min-width: 0;
  }
}
