.c-card-values {
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  padding: 24px;
  height: 184px;
  display: grid;
  align-content: space-between;
  background: white;
}

@media screen and (min-width: 1026px) {
  .c-card-values {
    height: 208px;
    width: 230px;
  }
}

.c-card-values__icon {
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.10);
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.c-card-values__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

@media screen and (min-width: 1026px) {
  .c-card-values__title {
    font-size: 16px;
  }
}