.example-gallery {
  max-width: 1120px;
  margin: 0 auto 85px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 24px;
}

.example-gallery .example {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.example-gallery .example:first-child {
  grid-column: 1 / -1;
}

.example-number {
  color: var(--orange);
  font-family: 'Iowan Old Style', serif;
  font-size: 13px;
}

.example-gallery h2 {
  margin: 8px 0 14px;
  font-family: 'Iowan Old Style', 'Palatino Linotype', serif;
  font-size: 25px;
  font-weight: 500;
}

.example-gallery .example video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  border-width: 8px;
  box-shadow: 0 18px 55px rgba(45, 41, 32, .14);
}

.example-gallery .example figcaption {
  margin-top: 11px;
  text-align: left;
  font-size: 11px;
  line-height: 1.5;
}

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

  .example-gallery .example:first-child {
    grid-column: auto;
  }
}
