.card {
  background-color: var(--color-primary-x-light);
  border-radius: 20px;

  padding: 16px;

  display: flex;
  height: 100%;
  align-self: stretch;
}

.card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.card__image img {
  border-radius: 50px;
}

.card__inner {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  justify-content: space-between;
  gap: 8px;
}

.card__texts {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card__title h3 {
  font-family: var(--font--barlow);
  color: var(--color-primary--2);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */

  margin: 0;
}

.card__text p {
  margin: 0;
}

@media all and (min-width:1300px) {
  .card {
    padding: 32px;
  }
}
