.pcf-card-features {
  box-sizing: border-box;
  display: grid;
  grid-auto-rows: 22px;
  width: 100%;
  margin: 12px 0 14px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.pcf-card-feature {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(10px, 1fr) minmax(0, auto);
  align-items: baseline;
  column-gap: 5px;
  min-width: 0;
  height: 22px;
  overflow: hidden;
}

.pcf-card-feature__name,
.pcf-card-feature__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcf-card-feature__name {
  max-width: 145px;
  color: #929292;
}

.pcf-card-feature__value {
  max-width: 125px;
  color: #171717;
  text-align: right;
}

.pcf-card-feature__leader {
  min-width: 10px;
  border-bottom: 1px dotted #b8b8b8;
  transform: translateY(-4px);
}

.pcf-card-feature--placeholder {
  visibility: hidden;
}

@media (max-width: 575.98px) {
  .pcf-card-features {
    font-size: 12px;
  }

  .pcf-card-feature__name {
    max-width: 125px;
  }

  .pcf-card-feature__value {
    max-width: 105px;
  }
}

