/**
* COLORS
*/
.archive-posts {
  padding: 0 0 4rem;
}
.archive-posts__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.archive-posts__description {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
}
.archive-posts__description p {
  margin: 0 0 0.75rem;
}
.archive-posts__description p:last-child {
  margin-bottom: 0;
}
.archive-posts__description a {
  color: #a34a9c;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.archive-posts__description a:hover {
  text-decoration-color: #a34a9c;
}
.archive-posts__filter {
  margin-bottom: 2.5rem;
}
.archive-posts__tabs {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .archive-posts__tabs {
    display: flex;
  }
}
.archive-posts__tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 2em;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: #f3f3f3;
  color: #000000;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.archive-posts__tab-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}
.archive-posts__tab-btn.is-active {
  background: #a34a9c;
  color: #ffffff;
  border-color: #a34a9c;
  pointer-events: none;
}
.archive-posts__select {
  display: block;
  width: 100%;
  max-width: 360px;
  padding: 10px 36px 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27%3E%3Cpath d=%27M1 1l5 5 5-5%27 stroke=%27%23a34a9c%27 stroke-width=%272%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid rgb(217.5, 217.5, 217.5);
  border-radius: 6px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
  outline: none;
}
.archive-posts__select:focus {
  border-color: #a34a9c;
}
@media screen and (min-width: 768px) {
  .archive-posts__select {
    display: none;
  }
}
.archive-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media screen and (min-width: 576px) {
  .archive-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .archive-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive-posts__pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3rem;
}
.archive-posts__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  background: #f3f3f3;
  transition: background 0.2s, color 0.2s;
  border: 2px solid transparent;
  gap: 5px;
}
.archive-posts__pagination .page-numbers:hover {
  background: #000000;
  color: #ffffff;
}
.archive-posts__pagination .page-numbers.current {
  background: #a34a9c;
  color: #ffffff;
  border-color: #a34a9c;
  pointer-events: none;
}
.archive-posts__pagination .page-numbers.dots {
  background: transparent;
  pointer-events: none;
}
.archive-posts__pagination .page-numbers i {
  font-size: 0.7rem;
}
.archive-posts__empty {
  text-align: center;
  padding: 5rem 1rem;
}
.archive-posts__empty i {
  font-size: 3rem;
  color: rgb(204.75, 204.75, 204.75);
  display: block;
  margin-bottom: 1rem;
}
.archive-posts__empty p {
  color: #888;
  font-size: 1.0625rem;
}
