.mobile-quick-nav {
  display: none;
}
html {
  scroll-padding-top: 84px;
}
.device-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.device-grid--three article,
.device-grid--three article:nth-child(2n),
.device-grid--three article:nth-last-child(-n + 2) {
  border-right: 1px solid var(--rule);
  border-bottom: 0;
}
.device-grid--three article:last-child {
  border-right: 0;
}
@media (max-width: 1040px) {
  html {
    scroll-padding-top: 128px;
  }
  .mobile-quick-nav {
    position: sticky;
    top: 72px;
    z-index: 19;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid var(--rule);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(14px);
  }
  .mobile-quick-nav a {
    display: grid;
    place-items: center;
    min-height: 44px;
    min-width: 0;
    padding: 0 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .device-grid--three {
    grid-template-columns: 1fr;
  }
  .device-grid--three article,
  .device-grid--three article:nth-child(2n),
  .device-grid--three article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .device-grid--three article:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 118px;
  }
  .mobile-quick-nav {
    top: 62px;
  }
}
