.wrapper {
  max-width: 65rem;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.lab-demos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 2rem 1rem;
}

header {
  margin-bottom: 2rem;
  background-color: #cee5f8;
  padding-block: 2rem;
}
header h1 {
  font-size: clamp(1.5rem, 4vw + 8px, 2.5rem);
  font-weight: 600;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
}
.card img {
  aspect-ratio: 4/3;
  width: 100%;
  min-width: 0;
  border-radius: 8px;
}
.card h3 {
  min-width: 0;
  overflow-wrap: break-word;
  font-weight: 400;
  color: #222;
}

.prose {
  max-width: 75ch;
}
.prose p {
  font-size: 1.05rem;
}
.prose a {
  text-decoration: underline;
}
.prose img {
  border-radius: var(--radius-2);
  border: 1px solid #e6e6e6;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
.prose pre[class*=language-] {
  border-radius: var(--radius-2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 1rem;
  margin-top: 2rem;
}
.prose code[class*=language-],
.prose pre[class*=language-] {
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
}
.prose > ul,
.prose > ol {
  list-style: initial;
  margin-left: var(--size-3);
}
.prose p code,
.prose li code {
  background-color: #e4ebf1;
  color: #374048;
  padding: 0.15em 0.35em;
  border-radius: 5px;
}
.prose h2 + p,
.prose h3 + p {
  margin-top: 0.5rem;
}
.prose blockquote {
  border-left: 3px solid;
  padding-left: 1rem;
}

.prose > * + * {
  margin-top: 2rem;
}

img {
  max-width: 100%;
}

body {
  font-family: "Inter";
  line-height: 1.45;
}
