.route-proof .proof-library {
  background-color: var(--obsidian);
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.42) 1px, transparent 1px);
  background-size: 64px 64px;
}

.route-proof .content-section-heading {
  max-width: 980px;
}

.route-proof .proof-wall {
  display: grid;
  max-width: 1680px;
  margin: clamp(64px, 7vw, 104px) auto 0;
  grid-auto-flow: dense;
  grid-auto-rows: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 18px;
}

.route-proof .proof-tile {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #111719;
}

.route-proof .proof-tile-video {
  display: grid;
  grid-template-rows: auto auto;
}

.route-proof .proof-tile-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #06090b;
}

.route-proof .proof-tile-video-portrait video {
  aspect-ratio: 9 / 16;
}

.route-proof .proof-tile-copy {
  min-height: 126px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111719;
}

.route-proof .proof-tile-copy span,
.route-proof .proof-tile figcaption,
.route-proof .proof-tile-quote cite,
.route-proof .proof-tile-stat > span {
  color: var(--rust-bright);
}

.route-proof .proof-tile-copy h3 {
  margin: 14px 0 0;
}

.route-proof .proof-tile-message {
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  background: #080c0e;
}

.route-proof .proof-tile-message img {
  display: block;
  width: 100%;
  height: auto;
  padding: 14px;
  object-fit: contain;
}

.route-proof .proof-tile-message figcaption {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111719;
}

.route-proof .proof-tile-stat {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-color: rgba(188, 37, 31, 0.75);
  background:
    linear-gradient(145deg, rgba(188, 37, 31, 0.23), transparent 64%),
    #15191a;
}

.route-proof .proof-tile-stat strong {
  margin-top: 16px;
  color: var(--bone);
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.9;
}

.route-proof .proof-tile-stat p {
  max-width: 24ch;
  margin: 16px 0 0;
  color: var(--muted);
}

.route-proof .proof-tile-quote {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: #181817;
}

.route-proof .proof-tile-quote::before {
  content: "“";
  color: var(--rust);
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 0.55;
}

.route-proof .proof-tile-quote blockquote {
  margin: 22px 0 30px;
  color: var(--bone);
}

.route-proof .proof-tile-quote cite {
  font-style: normal;
}

.route-proof .proof-wall-note {
  max-width: 1680px;
  margin: 28px auto 0;
  color: var(--slate);
  text-align: center;
}

@media (max-width: 1100px) {
  .route-proof .proof-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }
}

@media (max-width: 620px) {
  .route-proof .proof-wall {
    grid-template-columns: 1fr;
  }

  .route-proof .proof-tile-message img {
    height: auto;
    padding: 10px;
  }

  .route-proof .proof-tile-stat,
  .route-proof .proof-tile-quote {
    min-height: 280px;
  }
}
