@charset "UTF-8";
/* base */
.archive__button {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 1em;
  color: #fff;
  border: none;
  background: #524748;
  font-weight: bold;
  margin-top: 1em;
  border-radius: 4px;
  text-align: center;
}

.archive__button > i{
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
}
.archive__button-wrap {
  display: grid;
  place-items: center;
  padding: 3em 0;
}

.thumbnail img {
  aspect-ratio: 1200/630;
  object-fit: cover;
}
.box h5{
  margin: 8px 0;
}
article a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 821px) {
  .row-3:has(article) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
  }
}