  .card-with-icon {
  border: 1px solid rgb(var(--color-medium-gray));
  background-color: rgb(var(--color-white));
  padding: 30px;
  display: flex;
  flex-direction: column;
  max-width: 288px;
  height: 254px;
  width: 100%;
  justify-content: space-between;
}
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 140px;
}
.card-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.card-icon {
  font-size: 34px !important;
  flex-shrink: 0;
  color: var(--icon-color);
}

.card-with-icon h3 {
  color: rgb(var(--color-near-black));
  font-family: var(--font-family-bold);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-with-icon p {
  color: rgb(var(--color-near-black));
  font-family: var(--font-family-medium);
  font-size: 15px;
  font-weight: 400;
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  min-height: 0;
}
.card-with-icon p .card-short-info-text {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
