

.u-line-clamp-2,
.truncate {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  background: #fff;
}

.c-meta,
.read {
  color: var(--Grey-400, #98A2B3);
  font-feature-settings: 'salt' on, 'liga' off;
  
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.c-text-secondary,
.blog-text-ai {
  color: var(--Grey-500, #667085);
  
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* Blog card heading text (deduped where identical). */
.blog-heading-ai {
  color: var(--Grey-900, #101828);
  
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Text truncation utilities (deduped). */
.truncate-last-word {
  width: auto;
  white-space: nowrap;
}

/* Feature in the news section heading. */
.feature-in-the-news .heading-text {
  text-align: center;
}

/* Quote/testimonial text styling (deduped). */
.quote-text {
  font-size: var(--font-size-16);
  line-height: 24px;
  margin-bottom: 2rem;
  color: var(--wrightblack);
}

/* Separating dot between items (deduped). */
.separating-dot {
  position: relative;
  margin-left: .5rem;
}

.separating-dot::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--light_gray);
  top: 9px;
  left: -7px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .separating-dot::after {
    top: 7px;
  }
}

