.news-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0px 40px;
  margin: 0;
  padding: 0;

  li {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    padding: 8px 16px;
    border-top: 1px solid #999999;

    &:last-of-type {
      border-bottom: 1px solid #999999;
    }
  }

  time {
    line-height: 1.2;
  }

  div {
    margin: 0;
    line-height: 1.2;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* justify-items: center; */
  gap: 64px 0;

  > * {
    padding: 16px 24px;
    text-align: center;
  }

  > *:not(:first-of-type) {
    border-left: 1px solid #000000;
  }

  .button {
    width: 100%;
  }

  @media screen and (max-width: 48em) {
    grid-template-columns: 1fr;

    > *:not(:first-of-type) {
      border-left: 0;
    }
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px calc(1.3em + 8px);
  color: #fff;
  background-color: #0092d7;
  border: 1px solid #0092d7;
  text-align: center;
  line-height: 1.2;

  &:hover {
    color: #0092d7;
    background-color: #fff;
    text-decoration: none;
  }

  &::after {
    content: "";
    position: absolute;
    right: 10px;
    display: block;
    width: 1.3em;
    aspect-ratio: 1;
    background-color: currentColor;
    clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
  }
}