/* Keep labels and long values in the homepage summary visually distinct. */
.hero-content,
.section-header,
.hero-kicker {
  max-width: none;
}

.hero-meta .stacked-list__item {
  gap: var(--space-4);
}

.hero-meta .stacked-list__value {
  text-align: right;
}

/* Prevent feature markers from being squeezed into vertical pills. */
.feature-list__icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .hero-meta .stacked-list__item {
    flex-direction: column;
    gap: var(--space-1);
  }

  .hero-meta .stacked-list__value {
    text-align: left;
  }

  .form-row {
    gap: var(--space-5);
  }

  .form-field {
    flex: 0 1 auto;
    width: 100%;
  }
}
