.client-notes-item {
    background-color: white;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.note__content {
    display: flex;
    flex-direction: column;
}

.note__content > * {
    padding: 0;
    margin: 0;
}
.note__content > .client__name {
    color: var(--color-primary--1);
    font-family: var(--font--lexend);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 29.4px */
}
.note__content > .note__comment {
    color: var(--color-neutral);
    font-family: var(--font--lexend);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 25.2px */
}

