.archiveDisplay__list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.archiveContent {
  margin-top: 150px;
}

.archiveDisplay {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 200px;
}

/* Archive Category Nav */

.taxonomyLinkList {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.taxonomyLinkList a {
  align-items: center;
  border: 1px solid #e9e8e5;
  border-radius: 100px;
  color: #424242;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 4px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 0 10px;
  position: relative;
}

.taxonomyLinkList a::before {
  border: 1px solid #e9e8e5;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 16px;
  position: relative;
  width: 16px;
}

.taxonomyLinkList .activeItem a {
  border: 1px solid #424242;
  pointer-events: none;
}

.taxonomyLinkList .activeItem a::before {
  background: #424242;
  border: 1px solid #c5c2bb;
}

.taxonomyLinkList .activeItem a::after {
  background: url(../../images/common/icon-check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 8px;
  left: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}

@media screen and (max-width: 767px) {
  .taxonomyLinkList {
    gap: 10px;
    justify-content: start;
  }
}
