/* Help Center screenshot framing — works on the dark help site. */

.screenshot {
  margin: var(--space-lg) 0;
  text-align: center;
}

.screenshot img {
  max-width: min(360px, 100%);
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 10px 40px -10px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .06);
  background: #fff;
}

.screenshot figcaption {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.screenshot-strip figure {
  margin: 0;
}

.screenshot-strip img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 6px 20px -6px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(255, 255, 255, .06);
  background: #fff;
}
