/* USP strip: icon + label items with hairline separators. */

.feature-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: var(--space-4) 0;
}

.feature-strip li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-5);
  font-size: 1rem;
  color: var(--color-text);
}

.feature-strip li + li {
  border-left: 1px solid var(--color-border-input);
}

.feature-strip i {
  font-size: 1.3rem;
  color: #25465f; /* live --primary (petrol navy) */
}

@media (max-width: 1024px) {
  .feature-strip {
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .feature-strip li + li {
    border-left: 0;
  }
}

/* Standard page header (PageHeader): the USP strip under the hero band on
   non-custom pages, with a hairline dividing the header region from the page
   content below. */
.page-header__strip {
  border-bottom: 1px solid var(--color-border);
}
