.record-container {
  width: 100%;
}
.record-center {
  width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--root-padding-x);
}
.record-list {
  --gap: 1.6rem;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .record-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .record-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.record-item {
  padding: 1.5rem;
  background-color: #f7f7f7;
}
.record-item .img {
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.record-item .img img {
  max-height: 100%;
  transition: all 3s;
  cursor: pointer;
}
.record-item:hover img {
  transform: scale(1.2);
}
.record-item > p {
  font-size: 0.85rem;
  font-weight: 400;
  color: #444;
  text-align: center;
  margin-top: 1rem;
  max-width: 100%;
}
