/* utils */
.archive-page-top {
  margin-top: 80px;
  padding-top: clamp(32px, 32 * (100vw - 375px) / 905 + 32px, 64px);
  padding-bottom: clamp(32px, 32 * (100vw - 375px) / 905 + 32px, 64px);
  background-image: linear-gradient(to bottom right, #16a34a, #166534);
}
.archive-page-top .back-to-home {
  margin-bottom: 24px;
}
.archive-page-top .back-to-home a {
  color: rgb(220, 252, 231);
  font-size: 16px;
  line-height: 100%;
  font-weight: 300;
}
.archive-page-top .back-to-home a svg {
  position: relative;
  top: 2px;
  margin-right: 8px;
  height: 16px;
  width: 16px;
}
.archive-page-top h1 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 700;
  color: white;
}
.archive-page-top .content {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgb(220, 252, 231);
  font-weight: 300;
  width: 768px;
  max-width: 100%;
}

section.blog-posts {
  padding-top: clamp(32px, 32 * (100vw - 375px) / 905 + 32px, 64px);
  padding-bottom: clamp(32px, 32 * (100vw - 375px) / 905 + 32px, 64px);
  background-color: rgb(249, 250, 251);
}
section.blog-posts .blog-posts-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  margin: 0 auto clamp(32px, 16 * (100vw - 375px) / 905 + 32px, 48px);
}
section.blog-posts .blog-posts-categories .blog-posts-categories-item {
  color: rgb(75, 85, 99);
  background-color: white;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  padding: 8px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: all var(--transition);
}
section.blog-posts .blog-posts-categories .blog-posts-categories-item:hover {
  color: rgb(22, 163, 74);
  background-color: rgb(240, 253, 244);
}
section.blog-posts .blog-posts-categories .blog-posts-categories-item.active {
  background-color: rgb(22, 163, 74);
  color: white;
}
section.blog-posts .blog-posts-wrap {
  margin-bottom: clamp(32px, 16 * (100vw - 375px) / 905 + 32px, 48px);
}
section.blog-posts .blog-posts-wrap > .row {
  --bs-gutter-y: 24px;
}
section.blog-posts .blog-posts-wrap .blog-post-item {
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: box-shadow var(--transition);
  height: 100%;
  padding-bottom: 24px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-image {
  aspect-ratio: 427/220;
  margin-bottom: 16px;
  border-radius: 12px 12px 0 0;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-image:after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-image .blog-post-item-image-meta {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 16px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-image .blog-post-item-image-meta .blog-post-item-reading {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-image .blog-post-item-image-meta .blog-post-item-reading svg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-category {
  display: inline-block;
  color: rgb(21, 128, 61);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  padding: 4px 12px;
  border-radius: 12px;
  background-color: rgb(220, 252, 231);
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-category svg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-title {
  margin-top: 16px;
  margin-bottom: 12px;
  padding-right: 24px;
  padding-left: 24px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-title a {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(17, 24, 39);
  transition: color var(--transition);
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-excerpt {
  color: rgb(75, 85, 99);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 300;
  padding-right: 24px;
  padding-left: 24px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-bottom {
  padding-right: 24px;
  padding-left: 24px;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-bottom .blog-post-item-date {
  color: rgb(107, 114, 128);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-bottom .blog-post-item-more a {
  color: rgb(22, 163, 74);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
section.blog-posts .blog-posts-wrap .blog-post-item .blog-post-item-bottom .blog-post-item-more a svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
section.blog-posts .blog-posts-wrap .blog-post-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
section.blog-posts .blog-posts-wrap .blog-post-item:hover .blog-post-item-title a:hover {
  color: rgb(22, 163, 74);
}
section.blog-posts .blog-posts-load-more {
  text-align: center;
}

@media all and (max-width: 991px) {
  .archive-page-top {
    margin-top: 60px;
  }
}
/* animation */
.archive-page-top.has-animation {
  opacity: 0;
  transform: translateY(-30px);
  position: relative;
  transition: all 1s ease-in-out;
}

.archive-page-top.has-animation.animated {
  opacity: 1;
  transform: translateY(0);
}

.blog-posts-categories.has-animation {
  opacity: 0;
  transform: translateX(30px);
  position: relative;
  transition: all 1s ease-in-out;
}

.blog-posts-categories.has-animation.animated {
  opacity: 1;
  transform: translateX(0);
}

.blog-posts-wrap.has-animation,
.blog-posts-load-more.has-animation {
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  transition: all 1s ease-in-out;
}

.blog-posts-wrap.has-animation.animated,
.blog-posts-load-more.has-animation.animated {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=blog.css.map */
