.text-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--color-neutral--5);
  border-radius: 10px;
}
.text-card__description {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}
.text-card__title {
  font-size: 16px;
  font-weight: 800;
}
.text-card--green {
  border: none;
  padding: 32px;
  border-radius: 5px;
  background-color: var(--color-primary--xclear);
}
