/* Key Features */
.features-list-wrap .features-list { list-style:none; padding:0; margin:0; }
.features-list-wrap .features-list li { padding: var(--spacing-sm) 0; border-bottom:1px solid var(--color-border); }

/* Chips/Tags presentation */
.features-list-wrap .features-tags {
  /* Two columns by default (desktop/tablet) */
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-xs);
  margin: var(--spacing-xs) 0;
}
.features-list-wrap .feature-tag {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: var(--spacing-sm) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  /* Make each tag fill its grid cell and center the label */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0; /* avoid overflow in grid */
  white-space: nowrap; /* keep chip text on one line */
}

/* Very narrow phones: single column */
@media (max-width: 480px) {
  .features-list-wrap .features-tags { grid-template-columns: repeat(1, 1fr) !important; }
}

/* Touch devices that are very narrow */
@media (pointer: coarse) and (max-width: 480px) {
  .features-list-wrap .features-tags { grid-template-columns: repeat(1, 1fr) !important; }
}
