.latest-posts--section {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 100px;
  padding-top: 30px;
  background: var(--sand);
}
@media screen and (min-width: 1200px) {
  .latest-posts--section {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1500px) {
  .latest-posts--section {
    padding-bottom: 150px;
  }
}
@media screen and (min-width: 2200px) {
  .latest-posts--section {
    padding-bottom: 200px;
  }
}
.latest-posts--section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .latest-posts--section__container {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1500px) {
  .latest-posts--section__container {
    padding: 0 30px;
  }
}
.latest-posts--section .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: "FactorA", sans-serif;
}
.latest-posts--section .breadcrumbs .breadcrumb-item {
  color: var(--green2);
}
.latest-posts--section .breadcrumbs .breadcrumb-link {
  color: var(--green2);
  text-decoration: none;
}
.latest-posts--section .breadcrumbs .breadcrumb-link:hover {
  text-decoration: underline;
}
.latest-posts--section .breadcrumbs .breadcrumb-separator {
  color: var(--green2);
}
.latest-posts--section .breadcrumbs .breadcrumb-current {
  opacity: 1;
  font-weight: 600;
  color: var(--green1);
  text-decoration: underline;
}
.latest-posts--section .heading--container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .heading--container {
    margin-bottom: 40px;
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
}
.latest-posts--section .heading--container .heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--green1);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .heading--container .heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .latest-posts--section .heading--container .heading {
    font-size: 40px;
  }
}
.latest-posts--section .heading--container .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .heading--container .category-filters {
    justify-content: flex-end;
    gap: 12px;
  }
}
.latest-posts--section .heading--container .category-filter {
  font-size: 14px;
  font-weight: 600;
  font-family: "FactorA", sans-serif;
  color: var(--green1);
  background: transparent;
  border: 1px solid var(--green1);
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .heading--container .category-filter {
    font-size: 15px;
    padding: 10px 22px;
  }
}
.latest-posts--section .heading--container .category-filter:hover {
  background: var(--green1);
  color: #ffffff;
}
.latest-posts--section .heading--container .category-filter.active {
  background: var(--green1);
  color: #ffffff;
}
.latest-posts--section .posts--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .posts--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .latest-posts--section .posts--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .latest-posts--section .posts--grid.posts--grid-featured .post__card--featured {
    grid-column: span 2;
  }
}
.latest-posts--section .post__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.latest-posts--section .post__card:hover, .latest-posts--section .post__card:focus {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  outline: none;
}
.latest-posts--section .post__card:focus-visible {
  outline: 2px solid var(--green3);
  outline-offset: 2px;
}
.latest-posts--section .post__card .image--container {
  position: relative;
  width: 100%;
  padding: 10px 10px 0 10px;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .image--container {
    padding: 15px 15px 0 15px;
  }
}
.latest-posts--section .post__card .image--container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .image--container img {
    border-radius: 16px;
  }
}
.latest-posts--section .post__card .image--container img.regular-image {
  display: block;
}
.latest-posts--section .post__card .image--container img.wide-image {
  display: none;
}
@media screen and (min-width: 1280px) {
  .latest-posts--section .post__card .image--container img.wide-image {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .latest-posts--section .post__card .image--container img.wide-image + .regular-image {
    display: none;
  }
}
.latest-posts--section .post__card .content--container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .content--container {
    padding: 20px;
  }
}
.latest-posts--section .post__card .content--container-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.latest-posts--section .post__card .categories {
  font-size: 12px;
  font-weight: 400;
  color: var(--green1);
  letter-spacing: 0.5px;
  border: 1px solid var(--green1);
  border-radius: 999px;
  padding: 5px 10px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .categories {
    font-size: 14px;
  }
}
.latest-posts--section .post__card .post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green1);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .post-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .latest-posts--section .post__card .post-title {
    font-size: 22px;
  }
}
.latest-posts--section .post__card .post-excerpt {
  color: var(--green1);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.latest-posts--section .post__card .post-date {
  font-size: 14px;
  font-weight: 400;
  color: var(--green1);
  opacity: 0.8;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .post-date {
    font-size: 15px;
  }
}
.latest-posts--section .post__card .explore-now {
  display: flex;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--green1);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .post__card .explore-now {
    font-size: 16px;
  }
}
.latest-posts--section .post__card .explore-now svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.latest-posts--section .post__card .explore-now svg path:first-child {
  fill: var(--green1);
  transition: fill 0.3s ease;
}
.latest-posts--section .post__card .explore-now svg path:last-child {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.latest-posts--section .post__card:hover .explore-now svg {
  transform: translateX(3px);
}
.latest-posts--section .load-more--container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .latest-posts--section .load-more--container {
    margin-top: 60px;
  }
}
.latest-posts--section .load-more--button {
  border: none;
}
.latest-posts--section .load-more--button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.latest-posts--section .load-more--button .button-loader {
  display: inline;
}
.latest-posts--section.latest-posts--mrktblog-posts .post__card:hover {
  background: var(--purple3);
}
.latest-posts--section.latest-posts--mrktblog-posts .post__card:focus {
  background: var(--purple3);
}
.latest-posts--section.latest-posts--mrktblog-posts .post__card:focus-visible {
  outline: 2px solid var(--green3);
  outline-offset: 2px;
}
.latest-posts--section.latest-posts--advantage360-reports {
  background: var(--sand);
}
.latest-posts--section.latest-posts--advantage360-reports .heading {
  color: var(--green1);
}
.latest-posts--section.latest-posts--advantage360-reports .post__card .explore-now {
  display: none;
}
.latest-posts--section.latest-posts--advantage360-reports .post__card .post-title {
  text-decoration: underline;
  margin-bottom: 10px;
}
.latest-posts--section.latest-posts--advantage360-reports .post__card:hover, .latest-posts--section.latest-posts--advantage360-reports .post__card:focus {
  background: var(--green4);
}
.latest-posts--section.latest-posts--advantage360-reports .post__card:focus-visible {
  outline: 2px solid var(--green3);
  outline-offset: 2px;
}

/*# sourceMappingURL=latest-posts.css.map */
