.m-post-card {
  position: relative;
  flex: 1;
  min-width: 0;
}
.m-post-card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
}
.m-post-card__badge {
  font-size: var(--body-fs-xs);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.m-post-card__media {
  position: relative;
  width: 100%;
  max-width: 16.7rem;
  margin-bottom: 0.4rem;
  overflow: hidden;
}
.m-post-card__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--default-transition-timing) var(--default-transition-easing);
}
.m-post-card__image:hover {
  transform: scale(1.05);
}
.m-post-card__content {
  display: flex;
  flex-direction: column;
}
.m-post-card__title {
  font-size: var(--body-fs-md);
  line-height: 1.1;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0.4rem 0 0.6rem 0;
}
.m-post-card__description {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--color-primary-body);
}
.m-post-card__description.rte p:last-child {
  margin-bottom: 0;
}
.m-post-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  color: var(--color-primary);
  font-weight: 400;
  text-decoration: underline;
  margin-top: 1em;
}
