.factory-gallery {
  grid-template-columns: 1fr 1fr;
}

.article-references {
  padding: 72px 7%;
  background: #eef6fc;
  border-top: 1px solid #d4e0e9;
}
.article-references > p {
  font-size: 12px;
  letter-spacing: .2em;
  color: #1d5df2;
  font-weight: 800;
}
.article-references h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  margin: 16px 0 30px;
}
.article-references ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.article-references li {
  background: #fff;
  border: 1px solid #d4e0e9;
  padding: 18px;
}
.article-references a {
  color: #10202d;
  font-weight: 700;
  text-decoration: none;
}
.article-references a:hover { color: #1d5df2; }
.article-references small {
  display: block;
  max-width: 900px;
  color: #667789;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .factory-gallery {
    grid-template-columns: 1fr;
  }
  .article-references ul {
    grid-template-columns: 1fr;
  }
}
