:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f5f3ef;
  color: #161616;
}

body {
  margin: 0;
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: #68645e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

figure {
  margin: 0;
}

img,
video {
  display: block;
  width: 100%;
  border: 1px solid #d7d0c4;
  border-radius: 8px;
  background: #fff;
}

figcaption {
  margin-top: 8px;
  color: #68645e;
  font-size: 14px;
}

.demo-list {
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
}

a {
  color: #005f73;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
