.posts-archive-section {
  position: relative;
}
.posts-archive-section .background-badge {
  position: absolute;
  right: 0;
  top: 1.5rem;
  transform: translateX(30%);
}
.posts-archive-section .home-badge {
  width: clamp(120px, 30vw, 300px);
}
.posts-archive-section .latest {
  position: relative;
  margin-bottom: 5rem;
}
.posts-archive-section .latest h2.title {
  font-size: 2rem;
}
.posts-archive-section .latest .latest-container {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: center;
}
.posts-archive-section .latest .latest-container .image-container {
  --_border-radius: 3rem;
  position: relative;
}
.posts-archive-section .latest .latest-container .image-container img {
  height: auto;
  border-radius: var(--_border-radius) 0 0 var(--_border-radius);
}
.posts-archive-section .latest .latest-container .image-container:before {
  content: "";
  position: absolute;
  background-color: white;
  width: var(--_border-radius);
  height: 100%;
  right: -1px;
  top: -1px;
  z-index: 10;
  border-radius: 0 0 0 var(--_border-radius);
}
.posts-archive-section .latest .latest-container .image-container:after {
  content: "";
  position: absolute;
  width: var(--_border-radius);
  aspect-ratio: 1/1;
  right: calc(var(--_border-radius) - 2px);
  top: -1px;
  z-index: 10;
  background: radial-gradient(circle at 0% 100%, transparent var(--_border-radius), white var(--_border-radius));
}
.posts-archive-section .latest .latest-container .text-container {
  padding: 20px;
}
.posts-archive-section .latest .latest-container .text-container h1,
.posts-archive-section .latest .latest-container .text-container h2,
.posts-archive-section .latest .latest-container .text-container h3,
.posts-archive-section .latest .latest-container .text-container h4,
.posts-archive-section .latest .latest-container .text-container h5,
.posts-archive-section .latest .latest-container .text-container h6 {
  margin-block: 0;
}
.posts-archive-section .latest .latest-container .text-container .date {
  color: #666666;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.posts-archive-section .latest .latest-container .text-container .excerpt {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media screen and (min-width: 900px) {
  .posts-archive-section .latest .latest-container {
    flex-direction: row;
  }
  .posts-archive-section .latest .latest-container .image-container,
  .posts-archive-section .latest .latest-container .text-container {
    flex: 1;
  }
  .posts-archive-section .latest .latest-container .text-container {
    order: 2;
  }
}
.posts-archive-section .subtitle {
  text-align: center;
  max-width: 50ch;
  margin: auto;
  font-size: 1rem;
  font-weight: 300;
  color: #666666;
  margin-block: 1rem;
}
.posts-archive-section button.button-all-blog {
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-block;
  color: white;
  font-weight: 700;
  background-color: #edd173;
  display: block;
  margin: auto;
  margin-top: 1.5rem;
}
.posts-archive-section .post-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  --_gap: 1.5rem;
  gap: var(--_gap);
}
.posts-archive-section .post-grid .post-card {
  max-width: none;
}
@media screen and (min-width: 600px) {
  .posts-archive-section .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .posts-archive-section .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.posts-archive-section .post-pagination {
  display: flex;
  justify-content: space-between;
}
.posts-archive-section .post-pagination a {
  background-image: url("../../assets/img/pagination-background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1/1;
  text-align: center;
  max-width: 10ch;
  padding: 20px;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}
.posts-archive-section .page-title {
  position: relative;
  z-index: 10;
}
.posts-archive-section .filters {
  position: relative;
  z-index: 10;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  row-gap: 12px;
  flex-flow: row wrap;
  padding-right: clamp(15px, 10%, 150px);
}
.posts-archive-section .filters h3 {
  width: 100%;
}
.posts-archive-section .filters a {
  display: block;
}
.posts-archive-section .qweekle-button.button-tag {
  display: flex;
  align-items: center;
  font-weight: normal;
  gap: 0.5em;
  font-size: 14px;
}
.posts-archive-section .tag-icon {
  height: 1em;
  width: auto;
}
.posts-archive-section .qweekle-search-form {
  flex: 1;
  max-width: 25ch;
}
.posts-archive-section .search-wrapper {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 10px;
}
.posts-archive-section .search-wrapper input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
}
.posts-archive-section .search-wrapper:focus-within {
  outline: 1px solid #67bfed;
}/*# sourceMappingURL=post-archive.css.map */