.latest-articles__content {
  display: flex;
  width: 100%;
  flex-flow: column;
  gap: 60px;
}
.latest-articles__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.latest-articles__button {
  text-decoration: none;
}
.latest-articles__button.mobile {
  display: none;
}
.latest-articles__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 992px) {
  .latest-articles__content {
    gap: 30px;
  }
  .latest-articles__button {
    margin-top: 10px;
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
  .latest-articles__button.mobile {
    display: flex;
  }
  .latest-articles__button.pc {
    display: none;
  }
  .latest-articles__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}/*# sourceMappingURL=style.css.map */