.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.screenshot-grid figure {
  margin: 0;
  text-align: center;
}

.screenshot-grid img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.md-typeset img {
  max-width: 600px;
  max-height: 800px;
  height: auto;
  object-fit: contain;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

.animate-progress {
  animation: progress 2s ease-in-out infinite;
}

.screenshot-grid figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--md-default-fg-color--light);
}

.md-typeset table:not([class]) {
  font-size: 0.8rem;
}

.md-typeset .admonition,
.md-typeset details {
  font-size: 0.85rem;
}
