/* =========================================
   File: page_styles/reg-notes.css
   Date: 2026-04-27 11:30
   Version: 1.0
   Description: Shared regulatory micro-note classes.
   Imported by any page that needs compliance disclaimers.
   Three flavors: --general (FTC), --ai (FDA), --hipaa (HIPAA/privacy/CCPA)
   ========================================= */

.reg-note {
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  max-width: 680px;
  margin: 0.4rem auto 0.8rem;
  padding: 0.45rem 1rem 0.45rem 1.1rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
  cursor: default;
}

.reg-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.13);
}

/* FTC / general results-vary notices — soft blue-grey */
.reg-note--general {
  background: #f0f4f8;
  border-left-color: #7aa8c8;
}

/* FDA / AI warnings — pale amber */
.reg-note--ai {
  background: #fffbf0;
  border-left-color: #c8a84b;
}

/* HIPAA / privacy / access-control / CCPA — pale sage */
.reg-note--hipaa {
  background: #f0f7f3;
  border-left-color: #5a9e78;
}

.reg-note--general:hover { border-left-color: #4a88b8; }
.reg-note--ai:hover      { border-left-color: #b8882b; }
.reg-note--hipaa:hover   { border-left-color: #3a7e58; }
