.related-posts {
  background: var(--off-white-color);
}

.related-posts__title {
  color: var(--graphite-color);
  font-size: var(--title);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 40px;
}

.related-posts__row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.related-post-card {
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 12px;
  box-shadow: 0 16px 16px rgba(18, 28, 51, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.related-post-card__thumb {
  background: var(--dark-blue-color);
  height: 160px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.related-post-card__thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.related-post-card__thumb-fallback {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(20, 184, 166, 0.35));
  height: 100%;
  width: 100%;
}

.related-post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 24px;
}

.related-post-card__category {
  align-self: flex-start;
}

.related-post-card__title {
  margin: 0;
}

.related-post-card__title a {
  color: var(--graphite-color);
  font-size: var(--title-small);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
  text-decoration: none;
}

.related-post-card__title a:hover {
  color: var(--primary-color);
}

.related-post-card__excerpt {
  color: var(--support-text-color);
  flex: 1;
  font-size: var(--text-small);
  line-height: 1.5;
  margin: 0;
  overflow-wrap: break-word;
}

.related-post-card__reading-time {
  color: var(--support-text-color);
  font-size: var(--text-x-small);
}

.related-post-card__button {
  align-self: flex-start;
}

@media (max-width: 991px) {
  .related-posts__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .related-posts__row {
    grid-template-columns: 1fr;
  }
}

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