/* SalutApp public home — trust/scope note visual treatment
   Purpose: make the non-medical-advice scope message clear without using alert/danger colors. */

.sp-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 920px;
  margin: 1.55rem 0 0;
  padding: 1.05rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
  border: 1px solid rgba(79, 110, 168, 0.22);
  border-left: 5px solid #5d78b3;
  color: #1e2a44;
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.07);
  text-align: left;
}

.sp-trust-note__icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5edff;
  color: #4f6ea8;
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.05rem;
}

.sp-trust-note__text {
  margin: 0;
  color: inherit;
  font-size: clamp(0.98rem, 0.95rem + 0.12vw, 1.06rem);
  line-height: 1.65;
  font-weight: 650;
  letter-spacing: 0.005em;
}

@media (max-width: 575.98px) {
  .sp-trust-note {
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 1rem;
    border-left-width: 0;
    border-top: 4px solid #5d78b3;
  }

  .sp-trust-note__icon {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.95rem;
  }
}
