@charset "UTF-8";
:root {
  /* Couleurs de surface */
  --bg-base:#F7F6F3;
  --bg-surface:#ffffff;
  --bg-surface-inverse: #121212;
  /* Bordures */
  --border: #e5e5e5;
  /* Texte */
  --text-primary:#222222;
  --text-secondary:#565656;
  --text-primary-inverse:#ffffff;
  --text-secondary-inverse:#818181;
  --text-muted:#555555;
  /* Marque / accent */
  --brand:#2563EB;
  --brand-hover:#1F54CA;
  /* Feedback */
  --success-text:#14532D;
  --success-bg:#DCFCE7;
  --success-border:#22C55E;
  --error-text:#7F1D1D;
  --error-bg:#FEE2E2;
  --error-border:#EF4444;
  /* ════════════════════════════════════════════
  STATUS FRICTION
  ════════════════════════════════════════════ */
  /* À traiter — bleu (en attente d'action) */
  --friction-totreat-text:#1E40AF;
  --friction-totreat-bg:#DBEAFE;
  --friction-totreat-border:#3B82F6;
  /* En cours — orange (en cours de traitement) */
  --friction-inprogress-text:#92400E;
  --friction-inprogress-bg: #FEF3C7;
  --friction-inprogress-border:#F59E0B;
  /* En vote — violet (délibération collective) */
  --friction-invote-text: #5B21B6;
  --friction-invote-bg: #EDE9FE;
  --friction-invote-border: #8B5CF6;
  /* Clos — gris (archivé, passé) */
  --friction-closed-text: #374151;
  --friction-closed-bg: #F3F4F6;
  --friction-closed-border: #9CA3AF;
  /* ════════════════════════════════════════════
  STATUS TREATMENT
  ════════════════════════════════════════════ */
  /* En cours — orange (traitement actif) */
  --treatment-inprogress-text: #92400E;
  --treatment-inprogress-bg: #FEF3C7;
  --treatment-inprogress-border: #F59E0B;
  /* À valider — jaune-ambre (attention requise) */
  --treatment-toreview-text: #78350F;
  --treatment-toreview-bg: #FFF7ED;
  --treatment-toreview-border: #FB923C;
  /* Approuvé — vert (succès) */
  --treatment-approved-text: #14532D;
  --treatment-approved-bg: #DCFCE7;
  --treatment-approved-border: #22C55E;
  /* Non approuvé — rouge (rejeté) */
  --treatment-rejected-text: #7F1D1D;
  --treatment-rejected-bg: #FEE2E2;
  --treatment-rejected-border: #EF4444;
  /* ════════════════════════════════════════════
  STATUS MEMBER
  ════════════════════════════════════════════ */
  /* Member — gris-bleu (rôle de base) */
  --member-text: #1E3A5F;
  --member-bg: #EFF6FF;
  --member-member-border: #93C5FD;
  /* Pilot — cyan (rôle intermédiaire) */
  --pilot-text: #164E63;
  --pilot-bg: #ECFEFF;
  --pilot-border: #22D3EE;
  /* Moderator — indigo (rôle élevé) */
  --moderator-text: #312E81;
  --moderator-bg: #EEF2FF;
  --moderator-border: #6366F1;
  /* Font */
  --font-title: "Manrope";
  --font-text: "Inter";
  font-size: 18px;
  /*  */
}

/* ======================== RESET ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100dvh;
}

button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ======================== ÉLÉMENTS DE BASE ======================== */
img,
video {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

/* ======================== ACCESSIBILITÉ ======================== */
:focus-visible {
  outline: 2px solid var(#1F54CA);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======================== TITRES ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1;
  color: var(--text-primary);
}

.title-xl {
  font-size: clamp(32px, 4.8vw, 50px);
  font-weight: 800;
  line-height: 1;
}

.title-lg {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.title-md {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.title-sm {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-label, .page__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand);
}

/* ======================== TEXTES ======================== */
p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-primary);
}

.text--xs {
  font-size: 0.9rem;
  font-weight: 300;
}

.text--sm {
  font-size: 1rem;
}

.text--muted {
  color: var(--text-secondary);
}

.text--strong {
  font-weight: 600;
}

.text--highlight {
  color: var(--brand);
}

.text--error {
  color: var(--error-text);
}

.text--success {
  color: var(--success-text);
}

/* ======================== LIENS ======================== */
.link {
  color: var(--color-primary);
}

/* ======================== IMPORT POLICES ======================== */
/* manrope-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/manrope-v20-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/manrope-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/manrope-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/manrope-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/manrope-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/manrope-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/manrope-v20-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/inter-v20-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-100italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  src: url("../fonts/inter-v20-latin-100italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/inter-v20-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  src: url("../fonts/inter-v20-latin-200italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inter-v20-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/inter-v20-latin-800italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin-900italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

header, main, footer {
  width: 100%;
}

.container {
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
  max-width: 1200px;
  box-sizing: border-box;
}

.pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
}

.navbar {
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}
.navbar__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar__brand {
  width: 50px;
  height: 50px;
}
.navbar__menu {
  background-color: var(--bg-base);
  display: none;
  gap: 16px;
}
@media screen and (min-width: 850px) {
  .navbar__menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.navbar__menu--open {
  position: absolute;
  right: 0px;
  top: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  width: 100%;
  padding: 32px 24px;
}
.navbar__link {
  font-size: 1rem;
}
.navbar__link:hover, .navbar__link--active {
  color: var(--brand-hover);
}
.navbar .burger {
  font-size: 32px;
}
@media screen and (min-width: 850px) {
  .navbar .burger {
    display: none;
  }
}
.navbar__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.navbar__logo img {
  height: 40px;
  width: auto;
  display: inline-block;
}

.subnav {
  box-shadow: 0 2px 0px hsla(0, 0%, 0%, 0.15);
  padding-bottom: 16px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 32px;
}
@media screen and (min-width: 850px) {
  .subnav {
    width: fit-content;
    box-shadow: none;
  }
}
.subnav__item {
  display: block;
}
.subnav__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 850px) {
  .subnav__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
}

.main__nav {
  position: sticky;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  top: var(--header-height);
  background-color: var(--bg-base);
  padding-top: 8px;
}
@media screen and (min-width: 850px) {
  .main__nav {
    width: fit-content;
  }
}

:root {
  --header-height: 76px;
}

.header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 100;
  background-color: var(--bg-base);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.footer {
  background-color: var(--bg-surface-inverse);
  color: var(--text-primary-inverse);
  border: 1px solid white;
  width: 100%;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 570px) {
  .footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
}
.footer__brand {
  width: fit-content;
  color: var(--text-secondary-inverse);
}
.footer__nav {
  width: fit-content;
  color: var(--text-secondary-inverse);
}
.footer__copyright {
  width: fit-content;
  color: var(--text-secondary-inverse);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 99px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  width: fit-content;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge--totreat {
  color: var(--friction-totreat-text);
  background: var(--friction-totreat-bg);
  border-color: var(--friction-totreat-border);
}
.badge--inprogress {
  color: var(--friction-inprogress-text);
  background: var(--friction-inprogress-bg);
  border-color: var(--friction-inprogress-border);
}
.badge--invote {
  color: var(--friction-invote-text);
  background: var(--friction-invote-bg);
  border-color: var(--friction-invote-border);
}
.badge--closed {
  color: var(--friction-closed-text);
  background: var(--friction-closed-bg);
  border-color: var(--friction-closed-border);
}
.badge--rejected {
  color: var(--treatment-rejected-text);
  background: var(--treatment-rejected-bg);
  border-color: var(--treatment-rejected-border);
}
.badge--approved {
  color: var(--treatment-approved-text);
  background: var(--treatment-approved-bg);
  border-color: var(--treatment-approved-border);
}
.badge--moderator {
  color: var(--moderator-text);
  background: var(--moderator-bg);
  border-color: var(--moderator-border);
}
.badge--member {
  color: var(--member-text);
  background: var(--member-bg);
  border-color: var(--member-border);
}

.btn, .btn-danger--sm, .btn-secondary, .btn-secondary--sm, .btn-primary, .btn-primary--sm {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  padding: 16px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  width: max-content;
}

.btn-primary, .btn-primary--sm {
  background: var(--brand);
  color: var(--text-primary-inverse);
}
.btn-primary:hover, .btn-primary--sm:hover {
  background: var(--brand-hover);
}

.btn-primary--sm {
  padding: 0px 8px;
}

.btn-secondary, .btn-secondary--sm {
  background: transparent;
  color: var(--brand-hover);
  border-color: var(--brand);
}
.btn-secondary:hover, .btn-secondary--sm:hover {
  border-color: var(--brand);
}

.btn-secondary--sm {
  padding: 0px 8px;
}

.btn-danger--sm {
  background: var(--error-bg);
  color: var(--error-text);
  border-color: var(--error-border);
  padding: 0px 8px;
}
.btn-danger--sm:hover {
  border-color: var(--error-border);
}

.btn-tab {
  background-color: blue;
  padding: 0px 8px;
  border-radius: 8px;
  background-color: #F0F5FF;
  color: #616161;
  border: 1px solid #dddddd;
  width: max-content;
}
.btn-tab--active, .btn-tab:hover {
  background-color: #F0F5FF;
  color: #2563EB;
  border: 1px solid #2563EB;
  cursor: pointer;
}

.btn--inactive {
  display: none;
}

.btn--inactive:hover {
  color: transparent;
  border-color: var(--border);
  cursor: default;
}

.txt-center {
  text-align: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* ======================== MARGIN & GAP ======================== */
/* ==== MARGIN TOP ======
--mt-8 : margin-top: 8px
--mt-16 : margin-top: 16px
--etc...
*/
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

/* ==== MARGIN BOTTOM ======
--mb-8 : margin-bottom: 8px
--mb-16 : margin-bottom: 16px
--etc...
*/
.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-56 {
  margin-bottom: 56px;
}

/* ==== GAP ======
--g-8: gap: 8px
--g-16 : gap: 16px
--etc...
*/
.g-8 {
  gap: 8px;
}

.g-16 {
  gap: 16px;
}

.g-24 {
  gap: 24px;
}

.g-32 {
  gap: 32px;
}

.g-40 {
  gap: 40px;
}

.g-48 {
  gap: 48px;
}

.g-56 {
  gap: 56px;
}

/* ==== WIDTH ======
--w-5: width: 5%
--w-10: width: 10%
--etc...
*/
.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.abs, .abs--center {
  position: absolute;
}

.abs--center {
  left: 50%;
  transform: translateX(-50%);
}

.dn {
  display: none !important;
}

.w-fc {
  white-space: nowrap;
  width: 1%;
}

.truncate-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.card {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.teamCard {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
}

.memberCard {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.frictionCard {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.frictionCard__top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.frictionCard__bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.frictionCard .upVote {
  display: inline-block;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
.frictionCard .upVote__count {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  font-weight: 600;
}
.frictionCard .upVote__label {
  color: var(--text-secondary);
}
.frictionCard--totreat {
  border-top: 2px solid var(--friction-totreat-border);
}
.frictionCard--inprogress {
  border-top: 2px solid var(--friction-inprogress-border);
}
.frictionCard--invote {
  border-top: 2px solid var(--friction-invote-border);
}
.frictionCard--closed {
  border-top: 2px solid var(--friction-closed-border);
}

.card--success {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  color: var(--success-text);
  background-color: var(--success-bg);
  border-color: var(--success-border);
}

.card--friction-details {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
}
.card--friction-details__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.card--cycle {
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  background-color: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.userCard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.userCard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.userCard__username {
  font-weight: bold;
}
.userCard__id {
  font-size: 0.75rem;
  color: #999;
}
.userCard__email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.userCard__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.userCard__date {
  font-size: 0.75rem;
  color: #999;
}

.teamCard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.teamCard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.teamCard__name {
  font-weight: bold;
}
.teamCard__id {
  font-size: 0.75rem;
  color: #999;
}
.teamCard__footer {
  display: flex;
  justify-content: flex-end;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 500px;
}
.form__input {
  background-color: var(--bg-surface);
  font-size: 1rem;
  padding: 16px 16px;
  border-radius: 8px;
  width: 100%;
}
.form__row {
  width: 100%;
}

.notice, .notice--warning, .notice--info, .notice--error, .notice--success {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.5;
}

.notice--success {
  background: var(--success-bg);
  color: var(--success-text);
  border-color: var(--success-border);
}

.notice--error {
  background: var(--error-bg);
  color: var(--error-text);
  border-color: var(--error-border);
}

.notice--info {
  background: var(--friction-totreat-bg);
  color: var(--friction-totreat-text);
  border-color: var(--friction-totreat-border);
}

.notice--warning {
  background: var(--treatment-toreview-bg);
  color: var(--treatment-toreview-text);
  border-color: var(--treatment-toreview-border);
}

.page {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page--static {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}
.page--static .page__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.page--static .page__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.page--static .page__title {
  margin-bottom: 16px;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.page--panel .page__header {
  width: 100%;
}
.page--panel .page__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 850px) {
  .page--panel .page__panel {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 5%;
  }
}

.panelContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.panelContent__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.panelContent__sections {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 48px;
}
.panelContent__section {
  width: 100%;
}

.home {
  padding-bottom: 0;
}
.home .wrapper {
  width: 100%;
}
.home .wrapper--alt {
  background: var(--bg-surface);
}
.home .section {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
.home .section__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}
.home .section__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
@media (min-width: 850px) {
  .home .section__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.home .section__bottom {
  width: 100%;
}
.home #heroSection .right {
  display: none;
}
.home #heroSection__video {
  width: 100%;
  height: auto;
}
@media (min-width: 850px) {
  .home #heroSection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .home #heroSection .left, .home #heroSection .right {
    width: 50%;
  }
  .home #heroSection .right {
    display: block;
    background-color: white;
  }
}
.home #pret-a-commencer {
  margin: auto;
}
.home #pret-a-commencer .section__bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.legal .section {
  width: 100%;
}

.privacy .section {
  width: 100%;
}

.admin .userList,
.admin .teamList {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 850px) {
  .admin .userList,
  .admin .teamList {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.teamPanel .section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
.teamPanel .section__content {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 850px) {
  .teamPanel .section__content {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

.teamDashboard .section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

/*# sourceMappingURL=main.css.map */
