:root {
  /* FONTS */
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --ff-display: "Inter", var(--font-system);
  --ff-heading: "Inter", var(--font-system);
  --ff-text: "Inter", var(--font-system);
  --ff-labels: "Inter", var(--font-system);
  /* WEIGHTS */
  --fw-thin: 100;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: normal;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: bold;
  --fw-extrabold: 800;
  --fw-black: 900;
  /*  STYLES */
  --fs-n: normal;
  --fs-i: italic;
  --fs-o: oblique;

  /* FONT DISPLAY */
  --f-d-h1: var(--fs-n) var(--fw-semibold) 6rem/105% var(--ff-display);
  --f-d-h2: var(--fs-n) var(--fw-semibold) 5rem/105% var(--ff-display);
  --f-d-h3: var(--fs-n) var(--fw-semibold) 4rem/105% var(--ff-display);
  --f-d-h4: var(--fs-n) var(--fw-semibold) 3rem/105% var(--ff-display);
  --f-d-h5: var(--fs-n) var(--fw-semibold) 2rem/105% var(--ff-display);
  --f-d-h6: var(--fs-n) var(--fw-semibold) 1.5rem/105% var(--ff-display);
  /* FONT HEADING */
  --f-h-h1: var(--fs-n) var(--fw-semibold) 6rem/110% var(--ff-heading);
  --f-h-h2: var(--fs-n) var(--fw-semibold) 5rem/110% var(--ff-heading);
  --f-h-h3: var(--fs-n) var(--fw-semibold) 4rem/110% var(--ff-heading);
  --f-h-h4: var(--fs-n) var(--fw-semibold) 3rem/110% var(--ff-heading);
  --f-h-h5: var(--fs-n) var(--fw-semibold) 2rem/110% var(--ff-heading);
  --f-h-h6: var(--fs-n) var(--fw-semibold) 1.5rem/110% var(--ff-heading);
  /* FONT TEXT */
  --f-t-2xl: var(--fs-n) var(--fw-regular) 1.5rem/150% var(--ff-text);
  --f-t-xl: var(--fs-n) var(--fw-regular) 1.25rem/150% var(--ff-text);
  --f-t-l: var(--fs-n) var(--fw-regular) 1.125rem/150% var(--ff-text);
  --f-t-m: var(--fs-n) var(--fw-regular) 1rem/130% var(--ff-text);
  --f-t-s: var(--fs-n) var(--fw-regular) 0.875rem/130% var(--ff-text);
  --f-t-xs: var(--fs-n) var(--fw-regular) 0.75rem/130% var(--ff-text);
  --f-t-2xs: var(--fs-n) var(--fw-regular) 0.625rem/130% var(--ff-text);
  /* FONT LABEL */
  --f-l-xl: var(--fs-n) var(--fw-medium) 1.25rem/24px var(--ff-labels);
  --f-l-l: var(--fs-n) var(--fw-medium) 1.125rem/20px var(--ff-labels);
  --f-l-m: var(--fs-n) var(--fw-medium) 1rem/20px var(--ff-labels);
  --f-l-s: var(--fs-n) var(--fw-medium) 0.875rem/16px var(--ff-labels);
  --f-l-xs: var(--fs-n) var(--fw-medium) 0.75rem/14px var(--ff-labels);
  --f-l-2xs: var(--fs-n) var(--fw-medium) 0.625rem/12px var(--ff-labels);

  /* === TRANSITIONS === */
  --cubic: cubic-bezier(0.625, 0.05, 0, 1);
  --t100: all 100ms var(--cubic);
  --t200: all 200ms var(--cubic);
  --t300: all 300ms var(--cubic);
  --t400: all 400ms var(--cubic);
  --t500: all 500ms var(--cubic);
  --t600: all 600ms var(--cubic);
  --t700: all 700ms var(--cubic);
  --t800: all 800ms var(--cubic);
  --t900: all 900ms var(--cubic);

  /* === COLORS === */
  --transparent: #ffffff00;
  --black: #000000;
  --gray: #808080;
  --white: #ffffff;
  /* === BRANDING === */
  --primary-50: #e7edff;
  --primary-100: #cbd8ff;
  --primary-200: #93aeff;
  --primary-300: #5b84ff;
  --primary-400: #235bff;
  --primary-500: #003bea;
  --primary-600: #002fbc;
  --primary-700: #00248e;
  --primary-800: #001860;
  --primary-900: #000d32;
  --primary-950: #00071b;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
  --secondary-950: #020617;

  /* === LIGHTING === */
  --light-0: #ffffff00;
  --light-10: #ffffff1a;
  --light-20: #ffffff33;
  --light-30: #ffffff4d;
  --light-40: #ffffff66;
  --light-50: #ffffff80;
  --light-60: #ffffff99;
  --light-70: #ffffffb2;
  --light-80: #ffffffcc;
  --light-90: #ffffffe5;
  --light-100: #ffffff;
  --dark-0: #00000000;
  --dark-10: #0000001a;
  --dark-20: #00000033;
  --dark-30: #0000004d;
  --dark-40: #00000066;
  --dark-50: #00000080;
  --dark-60: #00000099;
  --dark-70: #000000b2;
  --dark-80: #000000cc;
  --dark-90: #000000e5;
  --dark-100: #000000;

  /* === COLORS === */
  /* NEUTRAL */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  /* AMBER */
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  /* BLUE */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  /* CYAN */
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --cyan-950: #083344;
  /* EMERALD */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  /* FUCHSIA */
  --fuchsia-50: #fdf4ff;
  --fuchsia-100: #fae8ff;
  --fuchsia-200: #f5d0fe;
  --fuchsia-300: #f0abfc;
  --fuchsia-400: #e879f9;
  --fuchsia-500: #d946ef;
  --fuchsia-600: #c026d3;
  --fuchsia-700: #a21caf;
  --fuchsia-800: #86198f;
  --fuchsia-900: #701a75;
  --fuchsia-950: #4a044e;
  /* GREEN */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  /* INDIGO */
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  /* LIME */
  --lime-50: #f7fee7;
  --lime-100: #ecfccb;
  --lime-200: #d9f99d;
  --lime-300: #bef264;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --lime-800: #3f6212;
  --lime-900: #365314;
  --lime-950: #1a2e05;
  /* ORANGE */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;
  /* PINK */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;
  --pink-950: #500724;
  /* PURPLE */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;
  /* RED */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  /* ROSE */
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;
  --rose-950: #4c0519;
  /* SKY */
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --sky-950: #082f49;
  /* TEAL */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;
  /* VIOLET */
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;
  /* YELLOW */
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;
  --yellow-950: #422006;

  /* === VARIABLES === */
  --navbar-height: 112px;
  --section-padding-horizontal: 6rem;
  --section-padding-vertical: 6rem;
  --gradient-primary: linear-gradient(
    90deg,
    var(--primary-200) 0%,
    var(--primary-400) 100%
  );
  --card-stroke: 1px solid var(--neutral-700);
  --max-width: 1300px;
  --app-color-primary: var(--primary-500);
  --app-color-primary-hover: var(--primary-400);
}

/* === GLOBAL CSS === */
html {
  font-family: var(--font-system);
  /* scrollbar-gutter: stable; */
}
body {
  font-size: 1rem;
  overflow-x: hidden;
  background: var(--white);
}

/* === UTILS === */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.nodrag {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.text-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.w-100 {
  width: 100%;
}

/* === TEXTS === */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}

/* === BUTTONS === */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font: var(--f-l-m);
  color: var(--white);
  background-color: var(--app-color-primary);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  /* transition: var(--t100); */
}
.btn-primary:hover {
  background-color: var(--app-color-primary-hover);
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary.generate svg {
  width: 1rem;
  height: 1rem;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font: var(--f-l-m);
  color: var(--app-color-primary);
  background-color: var(--neutral-100);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  /* transition: var(--t100); */
}
.btn-secondary:hover {
  background-color: var(--neutral-200);
}

.btn-secondary.white {
  background-color: var(--white);
}
.btn-secondary.white:hover {
  background-color: var(--neutral-200);
}

.btn-secondary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-link.red {
  color: var(--red-500);
}

.btn-link.red:hover {
  text-decoration: underline;
  color: var(--red-400);
}

.btn-link {
  font: var(--f-t-m);
  color: var(--app-color-primary);
  background: none;
  border: none;
  cursor: pointer;
}
.btn-link:hover {
  text-decoration: underline;
  color: var(--primary-400);
}

.btn-forgotpass {
  font: var(--f-t-s);
  color: var(--neutral-600);
}
.btn-forgotpass:hover {
  color: var(--neutral-800);
  text-decoration: underline;
}

/* === INPUTS === */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.input-groupe-double {
  display: flex;
  gap: 0.5rem;
}

.input-groupe-double .input-group {
  flex: 1 0 0;
}

.input-group label,
.label {
  font: var(--f-t-s);
  color: var(--neutral-600);
}

/* Required field asterisk */
.required-asterisk {
  color: var(--red-500);
  margin-left: 0.125rem;
}

.input-group input {
  display: flex;
  font: var(--f-t-m);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-100);
  color: var(--neutral-800);
  border: none;
  outline: none;
}

.input-group input:focus {
  box-shadow: 0 0 0 2px var(--primary-100);
}
.input-group input::placeholder {
  color: var(--neutral-500);
}

.input-group textarea {
  display: flex;
  font: var(--f-t-m);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-100);
  color: var(--neutral-800);
  border: none;
  outline: none;
  resize: none;
}

.input-group textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-100);
}
.input-group textarea::placeholder {
  color: var(--neutral-500);
}

.input-group select {
  font: var(--f-t-m);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-100);
  color: var(--neutral-800);
  border: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5283 6.02827C11.7886 5.76792 12.2106 5.76792 12.471 6.02827C12.7313 6.28862 12.7313 6.71063 12.471 6.97098L8.47098 10.971C8.21063 11.2313 7.78862 11.2313 7.52827 10.971L3.52827 6.97098C3.26792 6.71063 3.26792 6.28862 3.52827 6.02827C3.78862 5.76792 4.21063 5.76792 4.47098 6.02827L7.99962 9.55692L11.5283 6.02827Z' fill='%23525252'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-group select:focus {
  box-shadow: 0 0 0 2px var(--primary-100);
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-200);
  -webkit-transition: var(--t300);
  transition: var(--t300);
  border-radius: 100vmax;
}

.slider:before {
  border-radius: 100vmax;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  -webkit-transition: var(--t300);
  transition: var(--t300);
}

input:checked + .slider {
  background-color: var(--app-color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-300);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.input-group.locked input {
  background: var(--neutral-200);
  color: var(--neutral-600);
  cursor: not-allowed;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.333 8.66699C13.333 8.2988 13.0345 8.00033 12.6663 8.00033H3.33301C2.96482 8.00033 2.66634 8.2988 2.66634 8.66699V13.3337C2.66634 13.7018 2.96482 14.0003 3.33301 14.0003H12.6663C13.0345 14.0003 13.333 13.7018 13.333 13.3337V8.66699ZM10.6663 4.66699C10.6663 3.95975 10.3855 3.28135 9.88542 2.78125C9.38532 2.28115 8.70692 2.00033 7.99967 2.00033C7.29243 2.00033 6.61403 2.28115 6.11393 2.78125C5.61383 3.28135 5.33301 3.95975 5.33301 4.66699V6.66699H10.6663V4.66699ZM11.9997 6.66699H12.6663C13.7709 6.66699 14.6663 7.56242 14.6663 8.66699V13.3337C14.6663 14.4382 13.7709 15.3337 12.6663 15.3337H3.33301C2.22844 15.3337 1.33301 14.4382 1.33301 13.3337V8.66699C1.33301 7.56242 2.22844 6.66699 3.33301 6.66699H3.99967V4.66699C3.99967 3.60613 4.42108 2.58869 5.17122 1.83854C5.92137 1.0884 6.93881 0.666992 7.99967 0.666992C9.06054 0.666992 10.078 1.0884 10.8281 1.83854C11.5783 2.58869 11.9997 3.60613 11.9997 4.66699V6.66699Z' fill='%23525252'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* === PASSWORD TOGGLE (eye inside input) === */
.password-toggle-wrapper {
  position: relative; /* wrapper already set in JS but keep here for safety */
  display: block; /* ensure it behaves like a block element in form layouts */
  width: 100%;
}

.password-toggle-wrapper input {
  box-sizing: border-box;
  /* make room for the icon inside the input */
  padding-right: 3rem; /* fallback padding; JS may set inline padding if necessary */
  width: 100%; /* ensure input fills the wrapper */
}

.password-toggle {
  position: absolute;
  right: 0.75rem; /* aligns icon inside the input */
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  padding: 0.25rem; /* comfortable hit area */
  cursor: pointer;
  z-index: 3; /* ensure it sits above the input background */
}

.password-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  pointer-events: none; /* let the button receive the click */
  color: inherit; /* stroke using currentColor works with provided SVGs */
}

/* Ensure the button doesn't push layout on smaller inputs */
.password-toggle-wrapper .password-toggle {
  min-width: 1.5rem;
}

/* If input uses border-radius, keep the icon inside visually */
.password-toggle-wrapper input {
  position: relative;
  z-index: 1;
}

.password-toggle:focus {
  outline: none;
  border-radius: 0.375rem;
}

.password-toggle:hover {
  color: var(--app-color-primary);
}

.form-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* === MODAL  === */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.modal-heading-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-title {
  font: var(--f-d-h6);
  color: var(--neutral-800);
}

.modal-subtitle {
  color: var(--neutral-800);
  font: var(--f-t-m);
}

.modal-close {
  color: var(--neutral-600);
  font: var(--f-l-m);
  background: unset;
}
.modal-close:hover {
  color: var(--neutral-800);
}
/* === ALERT === */

.alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  list-style: none;
  font: var(--f-t-s);
}
.alert strong {
  font-weight: var(--fw-medium);
}

.alert-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.alert--error {
  background-color: var(--red-50);
  color: var(--red-500);
  border: 1px solid var(--red-300);
}
.alert--success {
  background-color: var(--emerald-50);
  color: var(--emerald-600);
  border: 1px solid var(--emerald-300);
}
.alert--warning {
  background-color: var(--amber-50);
  color: var(--amber-600);
  border: 1px solid var(--amber-300);
}

/* === POST CATEGORIES === */
.post-category {
  padding: 0.25rem 0.75rem;
  border-radius: 100vmax;
  font: var(--f-l-s);
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-category.educatif,
.post-category.éducatif {
  background-color: var(--blue-200);
  color: var(--blue-700);
}

.post-category.objection {
  background-color: var(--red-200);
  color: var(--red-700);
}

.post-category.engagement {
  background-color: var(--emerald-200);
  color: var(--emerald-700);
}

.post-category.faq {
  background-color: var(--amber-200);
  color: var(--amber-700);
}

.post-category.cas-client,
.post-category.cas_client {
  background-color: var(--pink-200);
  color: var(--pink-700);
}

.post-category.vente {
  background-color: var(--orange-200);
  color: var(--orange-700);
}

.post-category.storytelling {
  background-color: var(--purple-200);
  color: var(--purple-700);
}

/* Fallback pour catégories non reconnues en base */
.post-category.non-classe {
  background-color: var(--neutral-200, #e6e7ea);
  color: var(--neutral-700, #4b5563);
}

/* === RESPONSIVE === */
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
  .hidden-mobile {
    display: none;
    visibility: hidden;
  }
}

@media screen and (max-width: 480px) {
}
