/* a-news
======================================= */
.a-news {
  background-color: #fff;
}
.a-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 5%;
  margin-bottom: 5em;
}
@media (max-width: 1024px) {
  .a-news__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3em;
  }
}
@media (max-width: 768px) {
  .a-news__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.a-news__more {
  display: block;
  margin: 0 auto 7.5em;
  max-width: 240px;
}
@media (max-width: 768px) {
  .a-news__more {
    margin-bottom: 5rem;
  }
}
.a-news__more span::after {
  display: none;
}
.a-news__btn {
  margin: auto;
}