/* Payment strip - icon + text styling */
.paymentStrip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem;
  padding: 0.5rem 0.2rem;
  background: #fff;
  border: 0px solid #e0e0e0;
  border-radius: 4px;
}

.paymentStrip__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary, #2196F3);
}

.paymentStrip__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

@media only screen and (max-width: 47.938rem) {
  .paymentStrip__item {
    margin: 0.5rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .paymentStrip__icon {
    width: 20px;
    height: 20px;
  }

  .paymentStrip__text {
    font-size: 0.75rem;
  }
}
