.archive-list {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .archive-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 414px) {
  .archive-list {
    grid-template-columns: 1fr;
  }
}
.archive-list .archive-list__item {
  background-color: #f3f1eb;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  height: auto;
  padding: 24px;
  justify-content: flex-start;
  min-width: 0;
}
.archive-list .archive-list__item:hover {
  opacity: 0.8;
}
.archive-list .archive-list__item > img {
  width: 160px;
  height: 120px;
  object-fit: contain;
}
.archive-list .archive-list__item p {
  text-align: center;
  height: 2.5em;
  display: flex;
  align-items: center;
  margin: 0.5em 0;
  font-weight: 500;
}
.archive-list .archive-list__item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent white transparent transparent;
}
.archive-list .archive-list__item::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: #d4d4d4;
  line-height: 1em;
}
.archive-list .archive-list__item > * {
  width: 100%;
}
.archive-list .archive-list__item__image > img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}
body.post-type-archive-products .archive-list .archive-list__item__image > img, body.tax-products_type .archive-list .archive-list__item__image > img {
  object-fit: contain;
}
.archive-list .archive-list__item .labels {
  margin: 16px 0 0px;
}
.archive-list .archive-list__item .labels .label {
  display: inline-block;
  padding: 3px 6px;
  background: #333333;
  color: white;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}
.archive-list .archive-list__item h3 {
  margin: 0.25em 0;
  font-weight: 500;
}
.archive-list .archive-list__item .excerpt, .archive-list .archive-list__item .excerpt * {
  font-weight: 400;
}

.pagination {
  margin-top: 60px;
}
.pagination .nav-links {
  text-align: center;
}
.pagination .nav-links .page-numbers:not(.dots) {
  display: inline-flex;
  margin: 4px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f3f1eb;
  border-radius: 5px;
}
.pagination .nav-links .page-numbers:not(.dots).current {
  color: white;
  background: #19709b;
}
.pagination .nav-links .page-numbers:not(.dots).next, .pagination .nav-links .page-numbers:not(.dots).prev {
  font-size: 0;
}
.pagination .nav-links .page-numbers:not(.dots).next::before, .pagination .nav-links .page-numbers:not(.dots).prev::before {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  border: 2px solid #333333;
  border-color: transparent #333333 #333333 transparent;
  transform: rotate(-45deg);
  left: -4px;
}
.pagination .nav-links .page-numbers:not(.dots).prev::before {
  transform: rotate(135deg);
  left: 4px;
}

/*# sourceMappingURL=archive.css.map */
