/* a-report
======================================= */
.a-report__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4em 2em;
  margin-bottom: 5em;
}
@media (max-width: 1024px) {
  .a-report__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3em;
  }
}
@media (max-width: 768px) {
  .a-report__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.a-report__more {
  display: block;
  margin: 0 auto 7.5em;
  max-width: 240px;
}
@media (max-width: 768px) {
  .a-report__more {
    margin-bottom: 5rem;
  }
}
.a-report__more span::after {
  display: none;
}
.a-report__btn {
  margin: auto;
}