.traits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media(min-width:1280px) {
  .desktop--display-col .traits {
    display: flex;
    flex-direction: column;
  }
}

.traits_item:last-child {
  grid-column: auto / span 2;
}

.traits_item {
  display: flex;
  flex-direction: column;
}

.traits_item-heading {
  font: 400 16px/18px Barlow;
  color: #A1A1A1;
  text-transform: uppercase;
}

.traits_item-content {
  font: 700 18px/20px Barlow;
}