.latest-blogs {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.latest-blogs .see-more-button {
  background: none;
  border: none;
  padding: 0;
  font-weight: 400;
  color: #2279CE;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
}
.latest-blogs .see-more-button:hover {
  text-decoration: none;
}
.latest-blogs .latest-blogs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 335px;
  border-radius: 12px;
  box-shadow: 0 0 0 transparent;
}
.latest-blogs .latest-blogs-title {
  font-size: var(--fs-300);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: clamp(12px, 3.2vw, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  /* Reserve space for 2 lines so flex doesn't squash to 1 line (avoids cut-off with no ellipsis) */
  min-height: 2.8em;
}
.latest-blogs .latest-blogs-text {
  text-align: left;
}
.latest-blogs .latest-blogs-meta {
  font-family: Roboto, sans-serif;
  color: #71717a;
  font-size: var(--fs-100);
  text-align: left;
  margin-top: 10px;
  line-height: 1.4;
  text-transform: capitalize;
}
.latest-blogs .latest-blogs-meta .latest-blogs-category {
  font-weight: 600;
}
.latest-blogs .latest-blogs-picture-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
}
.latest-blogs .latest-blogs-picture-wrapper .latest-blogs-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-blogs .latest-blogs-picture-wrapper .latest-blogs-badge {
  position: absolute;
  top: 25px;
  left: 15px;
}
.latest-blogs .latest-blogs-picture-wrapper .latest-blogs-cta-button {
  position: absolute;
  bottom: 23px;
  right: 12px;
}
.latest-blogs .none-mobile {
  display: none;
}
@media screen and (width >= 768px) {
  .latest-blogs {
    /* Desktop title: keep -webkit-box so 2-line clamp + ellipsis works (display: block would break it) */
  }
  .latest-blogs .mobile-only {
    display: none;
  }
  .latest-blogs .none-mobile {
    display: block;
  }
  .latest-blogs .latest-blogs-title.none-mobile {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
  }
}
@media screen and (width >= 1024px) {
  .latest-blogs .latest-blogs-picture-wrapper {
    width: 100%;
    max-width: 366px;
    height: 100%;
    position: static;
  }
  .latest-blogs .latest-blogs-title {
    margin-top: 1.333vw;
  }
  .latest-blogs .latest-blogs-text {
    display: block;
  }
}

/*# sourceMappingURL=blog-preview-item.css.map */
