/**
 * Page A propos — profil particulier.
 *
 * Tous les selecteurs sont bornes a la route presentation afin de ne pas
 * modifier le shell historique des autres vues de profil.
 */

.profile-about-page-column {
  min-width: 0;
  padding: 0 0 48px;
}

#particulier-presentation {
  --profile-about-accent: var(--fl-profile-entity-action, var(--fl-profile-entity, var(--fl-color-entity-particulier-clair, #00a2b7)));
  --profile-about-accent-soft: color-mix(in srgb, var(--profile-about-accent) 10%, #fff);
  --profile-about-accent-softer: color-mix(in srgb, var(--profile-about-accent) 5%, #fff);
  --profile-about-ink: #17212b;
  --profile-about-muted: #667789;
  --profile-about-border: #dce8ec;
  --profile-about-surface: var(--fl-color-surface, #fff);
  --profile-about-canvas: #f7fafb;
  --profile-about-shadow: 0 12px 35px rgba(25, 61, 72, 0.08);
  color: var(--profile-about-ink);
  font-family: var(--fl-font-family-body, Poppins, Helvetica, sans-serif);
  margin: 0 auto;
  max-width: 1480px;
  min-width: 0;
  width: 100%;
}

#particulier-presentation *,
#particulier-presentation *::before,
#particulier-presentation *::after {
  box-sizing: border-box;
}

.profile-about-hero {
  align-items: flex-end;
  background:
    radial-gradient(circle at 93% 5%, rgba(255,255,255,0.7) 0 6%, transparent 6.5%),
    linear-gradient(135deg, #effcfd 0%, #fff 58%, #f7fbfc 100%);
  border: 1px solid var(--profile-about-border);
  border-radius: 24px;
  box-shadow: var(--profile-about-shadow);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 28px 30px;
  position: relative;
}

.profile-about-hero::before {
  background: var(--profile-about-accent);
  border-radius: 0 0 999px 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0;
  width: 128px;
}

.profile-about-eyebrow {
  color: var(--profile-about-accent);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.profile-about-hero h1 {
  color: var(--profile-about-ink);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.14;
  margin: 0;
  max-width: 760px;
}

.profile-about-hero p {
  color: var(--profile-about-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 700px;
}

.profile-about-hero__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-about-owner-nav {
  align-items: center;
  background: var(--profile-about-surface);
  border: 1px solid var(--profile-about-border);
  border-radius: 16px;
  display: inline-flex;
  gap: 4px;
  margin: 0 0 18px;
  padding: 4px;
}

.profile-about-owner-nav .profile-about-tab {
  align-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--profile-about-muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  text-decoration: none;
}

.profile-about-owner-nav .profile-about-tab.active,
.profile-about-owner-nav .profile-about-tab[aria-selected="true"] {
  background: var(--profile-about-accent-soft);
  color: color-mix(in srgb, var(--profile-about-accent) 80%, #00343c);
}

.profile-about-owner-nav .profile-about-tab:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--profile-about-accent) 28%, transparent);
  outline-offset: 2px;
}

.profile-about-workspace {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-areas: "guide story preview";
  grid-template-columns: minmax(210px, 240px) minmax(420px, 1fr) minmax(230px, 285px);
}

.profile-about-workspace--visitor {
  grid-template-areas: "story preview";
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
}

.profile-about-guide {
  grid-area: guide;
  position: sticky;
  top: 88px;
}

.profile-about-story {
  grid-area: story;
  min-width: 0;
}

.profile-about-preview-column {
  grid-area: preview;
  position: sticky;
  top: 88px;
}

.profile-about-panel,
.profile-about-section-card,
.profile-about-public-card,
.profile-about-configuration-card {
  background: var(--profile-about-surface);
  border: 1px solid var(--profile-about-border);
  border-radius: 20px;
  box-shadow: 0 7px 25px rgba(32, 65, 76, 0.055);
}

.profile-about-panel {
  padding: 18px;
}

.profile-about-guide__title,
.profile-about-public-card__eyebrow {
  color: var(--profile-about-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.profile-about-progress__value {
  align-items: baseline;
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.profile-about-progress__value strong {
  color: var(--profile-about-ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.profile-about-progress__value span {
  color: var(--profile-about-muted);
  font-size: 12px;
}

.profile-about-progress__track {
  background: #e8f0f2;
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
  width: 100%;
}

.profile-about-progress__bar {
  background: linear-gradient(90deg, var(--profile-about-accent), #36c5d5);
  border-radius: inherit;
  height: 100%;
  min-width: 0;
  transition: width .25s ease;
}

.profile-about-progress__copy {
  color: var(--profile-about-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.profile-about-guide__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 16px 0;
}

.profile-about-guide__item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--profile-about-ink);
  display: grid;
  font-family: inherit;
  gap: 9px;
  grid-template-columns: 28px minmax(0, 1fr) 16px;
  min-height: 48px;
  padding: 6px;
  text-align: left;
  width: 100%;
}

.profile-about-guide__item:hover,
.profile-about-guide__item.is-current {
  background: var(--profile-about-accent-softer);
}

.profile-about-guide__item:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--profile-about-accent) 25%, transparent);
  outline-offset: 1px;
}

.profile-about-guide__icon,
.profile-about-section-card__icon {
  align-items: center;
  background: var(--profile-about-accent-soft);
  border-radius: 50%;
  color: var(--profile-about-accent);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

.profile-about-guide__icon {
  height: 28px;
  width: 28px;
}

.profile-about-guide__icon svg {
  height: 15px !important;
  max-height: 15px;
  max-width: 16px;
  width: 16px !important;
}

.profile-about-guide__text {
  min-width: 0;
}

.profile-about-guide__text strong,
.profile-about-guide__text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-about-guide__text strong {
  font-size: 12px;
  font-weight: 600;
}

.profile-about-guide__text small {
  color: var(--profile-about-muted);
  font-size: 10px;
  margin-top: 1px;
}

.profile-about-guide__status {
  align-items: center;
  border: 1px solid #cbd8dc;
  border-radius: 50%;
  color: transparent;
  display: inline-flex;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.profile-about-guide__item.is-complete .profile-about-guide__status {
  background: var(--profile-about-accent);
  border-color: var(--profile-about-accent);
  color: #fff;
}

.profile-about-guide__status::after {
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  content: "";
  height: 7px;
  transform: rotate(45deg) translate(-1px, -1px);
  width: 4px;
}

.profile-about-story__heading {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 2px 2px 15px;
}

.profile-about-story__heading h2,
.profile-about-configuration-card h2 {
  color: var(--profile-about-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0;
}

.profile-about-story__heading p,
.profile-about-configuration-card__intro {
  color: var(--profile-about-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 5px 0 0;
}

.profile-about-section-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-about-section-card {
  min-width: 0;
  overflow: hidden;
  scroll-margin-top: 92px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.profile-about-section-card.is-current,
.profile-about-section-card:focus-within {
  border-color: color-mix(in srgb, var(--profile-about-accent) 45%, transparent);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--profile-about-accent) 10%, transparent);
}

.profile-about-section-card.is-saving {
  cursor: progress;
}

.profile-about-section-card.is-saved {
  animation: profile-about-saved 1.1s ease;
}

@keyframes profile-about-saved {
  0% { box-shadow: 0 0 0 3px rgba(45, 206, 137, .28); }
  100% { box-shadow: 0 7px 25px rgba(32, 65, 76, 0.055); }
}

.profile-about-section-card__header {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 18px 18px 14px;
}

.profile-about-section-card__identity {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.profile-about-section-card__icon {
  height: 42px;
  width: 42px;
}

.profile-about-section-card__icon svg {
  fill: currentColor;
  height: 21px !important;
  max-height: 22px;
  max-width: 23px;
  width: 22px !important;
}

.profile-about-section-card__title {
  color: var(--profile-about-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.profile-about-section-card__subtitle {
  color: var(--profile-about-muted);
  font-size: 11px;
  line-height: 1.45;
  margin: 3px 0 0;
}

.profile-about-section-view {
  border-top: 1px solid #eef3f5;
  padding: 16px 18px 19px;
}

.profile-about-section-card.is-editing .profile-about-section-view {
  display: none;
}

.profile-about-facts {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-about-fact {
  min-width: 0;
}

.profile-about-fact--wide {
  grid-column: 1 / -1;
}

.profile-about-fact__label {
  color: var(--profile-about-muted);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .055em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.profile-about-fact__value {
  color: var(--profile-about-ink);
  font-size: 13px;
  line-height: 1.6;
  min-height: 21px;
  overflow-wrap: anywhere;
}

.profile-about-fact__value.is-empty,
.profile-about-empty-copy {
  color: #8b9aa8;
  font-style: italic;
}

.profile-about-fact__value a {
  color: color-mix(in srgb, var(--profile-about-accent) 80%, #00343c);
  font-weight: 600;
}

.profile-about-fact__value p:last-child,
.profile-about-fact__value ul:last-child,
.profile-about-fact__value ol:last-child {
  margin-bottom: 0;
}

.profile-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-about-tag {
  background: var(--profile-about-accent-softer);
  border: 1px solid #ccebef;
  border-radius: 999px;
  color: #186c77;
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  max-width: 100%;
  padding: 5px 9px;
  white-space: normal;
}

.profile-about-quotes {
  display: grid;
  gap: 8px;
}

.profile-about-quote {
  background: #f8fbfc;
  border-left: 3px solid var(--profile-about-accent);
  border-radius: 0 9px 9px 0;
  color: #425464;
  font-style: italic;
  padding: 9px 11px;
}

.profile-about-empty {
  align-items: flex-start;
  background: var(--profile-about-canvas);
  border: 1px dashed #cbdde2;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
}

.profile-about-empty strong {
  color: var(--profile-about-ink);
  font-size: 13px;
}

.profile-about-empty p {
  color: var(--profile-about-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.profile-about-editor {
  border-top: 1px solid #e8f0f2;
  padding: 18px;
}

.profile-about-editor__fields {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-about-field {
  min-width: 0;
}

.profile-about-field--wide {
  grid-column: 1 / -1;
}

#particulier-presentation .profile-about-field label {
  color: #40515f;
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

#particulier-presentation .profile-about-field .form-control,
#particulier-presentation .profile-about-field .form-select {
  background: #fff;
  border: 1px solid #cedce1;
  border-radius: 11px;
  color: var(--profile-about-ink);
  font-family: inherit;
  font-size: 13px;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

#particulier-presentation .profile-about-field textarea.form-control {
  line-height: 1.55;
  min-height: 112px;
  resize: vertical;
}

#particulier-presentation .profile-about-field .form-control:focus,
#particulier-presentation .profile-about-field .form-select:focus,
#particulier-presentation .tagify:focus-within {
  border-color: var(--profile-about-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--profile-about-accent) 17%, transparent);
  outline: 0;
}

.profile-about-field__help {
  color: var(--profile-about-muted);
  display: block;
  font-size: 10px;
  line-height: 1.45;
  margin-top: 5px;
}

.profile-about-editor__footer {
  align-items: center;
  border-top: 1px solid #edf2f4;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 14px;
}

.profile-about-form-feedback {
  color: var(--profile-about-muted);
  flex: 1 1 auto;
  font-size: 11px;
  line-height: 1.45;
  min-height: 17px;
}

.profile-about-form-feedback.is-error { color: #b42318; }
.profile-about-form-feedback.is-success { color: #137a52; }

.profile-about-editor__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

/* Bouton 61ABC: Auto Layout horizontal, cercle 36 px dans 40 px (inset 2). */
.profile-about-button {
  --button-background: var(--profile-about-accent);
  align-items: center;
  appearance: none;
  background: var(--button-background);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  justify-content: flex-start;
  line-height: 1;
  min-height: 40px;
  padding: 2px 14px 2px 2px;
  text-align: left;
  text-decoration: none;
  transition: filter .16s ease, box-shadow .16s ease, transform .12s ease;
  white-space: nowrap;
  width: max-content;
}

.profile-about-button:hover {
  color: #fff;
  filter: brightness(.94) saturate(1.04);
  text-decoration: none;
}

.profile-about-button:active {
  box-shadow: inset 0 2px 4px rgba(0,0,0,.13);
  transform: translateY(1px);
}

.profile-about-button:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px color-mix(in srgb, var(--button-background) 50%, transparent);
  outline: 0;
}

.profile-about-button:disabled,
.profile-about-button[aria-disabled="true"] {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .56;
  transform: none;
}

.profile-about-button--secondary {
  --button-background: var(--profile-about-accent);
}

.profile-about-button--danger {
  --button-background: var(--fl-color-profile-action-delete, #be2828);
}

.profile-about-button--compact {
  min-height: 36px;
  padding: 2px 12px 2px 2px;
}

.profile-about-button__icon-area {
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

.profile-about-button__circle {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--button-background);
  display: inline-flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  width: 36px;
}

.profile-about-button--compact .profile-about-button__circle {
  flex-basis: 32px;
  height: 32px;
  width: 32px;
}

.profile-about-button__circle svg {
  display: block;
  fill: currentColor;
  height: 21px !important;
  max-height: 22px;
  max-width: 22px;
  overflow: visible;
  width: 21px !important;
}

.profile-about-button--compact .profile-about-button__circle svg {
  height: 18px !important;
  max-height: 19px;
  max-width: 19px;
  width: 18px !important;
}

.profile-about-button__label {
  color: #fff;
  display: block;
  padding-right: 1px;
}

.profile-about-button__spinner {
  animation: profile-about-spin .75s linear infinite;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  border-top-color: var(--button-background);
  display: none;
  height: 18px;
  width: 18px;
}

.profile-about-button.is-loading .profile-about-button__circle > :not(.profile-about-button__spinner) {
  display: none;
}

.profile-about-button.is-loading .profile-about-button__spinner {
  display: block;
}

@keyframes profile-about-spin { to { transform: rotate(360deg); } }

.profile-about-public-card {
  overflow: hidden;
  padding: 18px;
}

.profile-about-public-card__cover {
  background: linear-gradient(135deg, var(--profile-about-accent) 0%, #63dbea 100%);
  border-radius: 13px;
  height: 68px;
  margin: -7px -7px 0;
}

.profile-about-public-card__avatar {
  background: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 13px rgba(0,0,0,.12);
  height: 58px;
  margin: -29px 0 9px 10px;
  object-fit: cover;
  position: relative;
  width: 58px;
}

.profile-about-public-card h3 {
  color: var(--profile-about-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.profile-about-public-card__handle {
  color: var(--profile-about-muted);
  font-size: 10px;
  margin: 2px 0 12px;
}

.profile-about-public-card__bio {
  color: #4a5d6c;
  display: -webkit-box;
  font-size: 11px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1.55;
  margin-bottom: 13px;
  overflow: hidden;
}

.profile-about-public-card__bio p { margin: 0; }

.profile-about-public-card__meta {
  border-top: 1px solid #edf2f4;
  color: var(--profile-about-muted);
  display: grid;
  font-size: 10px;
  gap: 7px;
  margin-top: 13px;
  padding-top: 12px;
}

.profile-about-public-card__meta span {
  align-items: center;
  display: flex;
  gap: 6px;
}

.profile-about-public-card__meta svg {
  fill: var(--profile-about-accent);
  height: 14px !important;
  width: 15px !important;
}

.profile-about-preview-note {
  color: var(--profile-about-muted);
  font-size: 10px;
  line-height: 1.5;
  margin: 10px 4px 0;
}

.profile-about-configuration-card {
  margin: 0 auto;
  max-width: 900px;
  padding: 24px;
}

.profile-about-config-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.profile-about-profile-link {
  background: var(--profile-about-accent-softer);
  border: 1px solid color-mix(in srgb, var(--profile-about-accent) 20%, #fff);
  border-radius: 12px;
  color: color-mix(in srgb, var(--profile-about-accent) 55%, #17212b);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 9px;
  overflow-wrap: anywhere;
  padding: 10px 12px;
}

.profile-about-config-actions {
  align-items: center;
  border-top: 1px solid #e9eff1;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
}

.profile-about-config-feedback {
  color: var(--profile-about-muted);
  font-size: 11px;
  line-height: 1.45;
}

.profile-about-config-feedback.is-error { color: #b42318; }
.profile-about-config-feedback.is-success { color: #137a52; }

#particulier-presentation .tagify {
  background: #fff;
  border: 1px solid #cedce1;
  border-radius: 11px;
  min-height: 44px;
  padding: 2px 5px;
  width: 100%;
}

#particulier-presentation .tagify__tag {
  margin: 4px 3px 3px 0;
}

#particulier-presentation .tagify__tag > div {
  background: var(--profile-about-accent-soft);
  border-radius: 999px;
  color: #176b76;
  font-family: inherit;
  font-size: 11px;
}

#particulier-presentation .tagify__input {
  font-family: inherit;
  font-size: 12px;
  margin: 5px;
}

.profile-about-preview-banner {
  align-items: center;
  background: #163a41;
  border-radius: 13px;
  color: #fff;
  display: none;
  font-size: 12px;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 12px 10px 16px;
}

#particulier-presentation.is-previewing .profile-about-preview-banner {
  display: flex;
}

#particulier-presentation.is-previewing .profile-about-owner-only,
#particulier-presentation.is-previewing .profile-about-guide,
#particulier-presentation.is-previewing .profile-about-preview-column,
#particulier-presentation.is-previewing .profile-about-owner-nav {
  display: none !important;
}

#particulier-presentation.is-previewing .profile-about-workspace {
  display: block;
  margin: 0 auto;
  max-width: 820px;
}

#particulier-presentation.is-previewing .profile-about-section-card {
  box-shadow: none;
}

#particulier-presentation.is-previewing .profile-about-editor {
  display: none !important;
}

#particulier-presentation.is-previewing .profile-about-section-view {
  display: block !important;
}

.profile-about-rich-editor {
  background: #fff;
  border-radius: 11px;
  color: var(--profile-about-ink);
}

.profile-about-rich-editor .ql-toolbar.ql-snow {
  border: 1px solid #cedce1;
  border-radius: 11px 11px 0 0;
}

.profile-about-rich-editor .ql-container.ql-snow {
  border: 1px solid #cedce1;
  border-radius: 0 0 11px 11px;
  font-family: inherit;
  font-size: 13px;
  min-height: 150px;
}

.profile-about-rich-editor .ql-editor {
  line-height: 1.6;
  min-height: 150px;
}

.profile-about-wizard-modal .modal-dialog {
  max-width: 860px;
  width: calc(100% - 32px);
}

.profile-about-wizard {
  background: var(--profile-about-surface);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 72px rgba(16, 42, 51, .22);
  color: var(--profile-about-ink);
  font-family: inherit;
  max-height: min(760px, calc(100dvh - 32px));
  overflow: hidden;
}

.profile-about-wizard > form {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: inherit;
  min-height: min(720px, calc(100dvh - 32px));
}

.profile-about-wizard__header {
  align-items: flex-start;
  background: var(--profile-about-surface);
  border-bottom: 1px solid var(--profile-about-border);
  display: flex;
  justify-content: space-between;
  min-height: 94px;
  padding: 20px 22px 16px;
  position: relative;
}

.profile-about-wizard__header .profile-about-eyebrow {
  font-size: 10px;
  margin-bottom: 3px;
}

.profile-about-wizard__header p {
  color: var(--profile-about-muted);
  font-size: 11px;
  margin: 4px 0 0;
}

.profile-about-wizard__close {
  align-items: center;
  background: var(--profile-about-canvas);
  border: 0;
  border-radius: 50%;
  color: var(--profile-about-ink);
  display: inline-flex;
  flex: 0 0 38px;
  font-family: inherit;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 2px;
  width: 38px;
}

.profile-about-wizard__close:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--profile-about-accent) 28%, transparent);
  outline: 0;
}

.profile-about-wizard__mobile-progress { display: none; }

.profile-about-wizard__body {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 0;
}

.profile-about-wizard__rail {
  background: var(--profile-about-canvas);
  border-right: 1px solid var(--profile-about-border);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 21px 16px;
}

.profile-about-wizard__rail-title {
  color: var(--profile-about-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.profile-about-wizard__rail > p {
  color: var(--profile-about-muted);
  font-size: 10px;
  margin: 3px 0 13px;
}

.profile-about-wizard__steps {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile-about-wizard__step {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--profile-about-ink);
  display: grid;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  gap: 10px;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 48px;
  padding: 8px 10px;
  text-align: left;
  width: 100%;
}

.profile-about-wizard__step:hover,
.profile-about-wizard__step.is-active {
  background: var(--profile-about-accent-soft);
  color: color-mix(in srgb, var(--profile-about-accent) 75%, #17212b);
}

.profile-about-wizard__step:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--profile-about-accent) 28%, transparent);
  outline-offset: 1px;
}

.profile-about-wizard__step-index {
  align-items: center;
  background: var(--profile-about-surface);
  border: 1px solid var(--profile-about-border);
  border-radius: 50%;
  color: var(--profile-about-muted);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.profile-about-wizard__step.is-active .profile-about-wizard__step-index,
.profile-about-wizard__step.is-complete .profile-about-wizard__step-index {
  background: var(--profile-about-accent);
  border-color: var(--profile-about-accent);
  color: #fff;
}

.profile-about-wizard__step.is-complete .profile-about-wizard__step-index {
  font-size: 0;
}

.profile-about-wizard__step.is-complete .profile-about-wizard__step-index::after {
  content: "✓";
  font-size: 11px;
  font-weight: 700;
}

.profile-about-wizard__saved {
  background: color-mix(in srgb, var(--profile-about-accent) 9%, var(--profile-about-surface));
  border-radius: 12px;
  color: var(--profile-about-muted);
  display: flex;
  flex-direction: column;
  font-size: 8px;
  gap: 2px;
  margin-top: auto;
  padding: 11px 12px;
}

.profile-about-wizard__saved strong {
  color: color-mix(in srgb, var(--profile-about-accent) 75%, #17352f);
  font-size: 9px;
}

.profile-about-wizard__content {
  min-height: 0;
  overflow-y: auto;
  padding: 21px 28px 24px;
  scrollbar-gutter: stable;
}

.profile-about-wizard__panel { display: none; }
.profile-about-wizard__panel.is-active { display: block; }

.profile-about-wizard__kicker {
  color: var(--profile-about-accent);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.profile-about-wizard__panel h3 {
  color: var(--profile-about-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 0;
}

.profile-about-wizard__panel h3:focus { outline: 0; }

.profile-about-wizard__intro {
  color: var(--profile-about-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 5px 0 18px;
}

.profile-about-wizard__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-about-wizard__panel .profile-about-field {
  margin-bottom: 15px;
}

.profile-about-wizard__grid .profile-about-field {
  margin-bottom: 0;
}

.profile-about-wizard__privacy {
  background: var(--profile-about-canvas);
  border: 0;
  border-radius: 14px;
  margin: 18px 0 0;
  padding: 14px;
}

.profile-about-wizard__privacy:disabled { opacity: .55; }

.profile-about-wizard__privacy legend {
  color: var(--profile-about-ink);
  float: none;
  font-size: 10px;
  font-weight: 700;
  margin: 0 0 9px;
  width: auto;
}

.profile-about-wizard__privacy small {
  color: var(--profile-about-muted);
  display: block;
  font-size: 8px;
  line-height: 1.45;
  margin-top: 9px;
}

.profile-about-wizard__audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-about-wizard__audiences label { margin: 0; }
.profile-about-wizard__audiences input { opacity: 0; position: absolute; pointer-events: none; }

.profile-about-wizard__audiences span {
  align-items: center;
  background: var(--profile-about-surface);
  border: 1px solid var(--profile-about-border);
  border-radius: 999px;
  color: var(--profile-about-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  font-weight: 600;
  min-height: 34px;
  padding: 7px 12px;
}

.profile-about-wizard__audiences input:checked + span {
  background: var(--profile-about-accent);
  border-color: var(--profile-about-accent);
  color: #fff;
}

.profile-about-wizard__audiences input:focus-visible + span {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--profile-about-accent) 30%, transparent);
}

.profile-about-wizard__privacy-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 13px;
}

.profile-about-wizard__privacy-select {
  background: var(--profile-about-canvas);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 9px;
}

.profile-about-wizard__privacy-select > span {
  color: var(--profile-about-muted);
  font-size: 8px;
  font-weight: 600;
}

.profile-about-wizard__privacy-select .form-select {
  background-color: transparent;
  border: 0;
  font-size: 9px;
  min-height: 28px;
  padding: 3px 24px 3px 0;
}

.profile-about-wizard__privacy-link {
  align-items: center;
  background: var(--profile-about-accent-soft);
  border: 0;
  border-radius: 12px;
  color: var(--profile-about-muted);
  display: flex;
  font-family: inherit;
  font-size: 9px;
  gap: 4px;
  margin-top: 16px;
  min-height: 48px;
  padding: 10px 13px;
  text-align: left;
  width: 100%;
}

.profile-about-wizard__privacy-link strong { color: var(--profile-about-accent); }
.profile-about-wizard__privacy-link span { color: var(--profile-about-accent); font-weight: 700; margin-left: auto; }

.profile-about-wizard__ready {
  background: color-mix(in srgb, var(--profile-about-accent) 10%, var(--profile-about-surface));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  padding: 12px 14px;
}

.profile-about-wizard__ready strong { color: var(--profile-about-accent); font-size: 10px; }
.profile-about-wizard__ready span { color: var(--profile-about-muted); font-size: 8px; }

.profile-about-wizard__privacy-warning {
  background: #fff8e6;
  border: 1px solid #f0d58b;
  border-radius: 11px;
  color: #725511;
  font-size: 9px;
  line-height: 1.5;
  margin-top: 14px;
  padding: 10px 12px;
}

.profile-about-wizard__content > .profile-about-form-feedback {
  margin-top: 10px;
}

.profile-about-wizard__footer {
  align-items: center;
  background: var(--profile-about-surface);
  border-top: 1px solid var(--profile-about-border);
  display: flex;
  gap: 9px;
  min-height: 72px;
  padding: 12px 20px;
}

.profile-about-wizard__footer-spacer { flex: 1 1 auto; }

.profile-about-city-field { position: relative; }

.profile-about-city-field__control { position: relative; }

.profile-about-city-field__control > i {
  color: var(--profile-about-accent);
  left: 13px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

#particulier-presentation .profile-about-city-field__control .form-control { padding-left: 36px; }

.profile-about-city-field__suggestions {
  background: var(--profile-about-surface);
  border: 1px solid var(--profile-about-border);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 42, 51, .16);
  left: 0;
  max-height: 230px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: calc(100% - 17px);
  z-index: 30;
}

.profile-about-city-field__option {
  background: var(--profile-about-surface);
  border: 0;
  color: var(--profile-about-ink);
  display: flex;
  flex-direction: column;
  font-family: inherit;
  gap: 2px;
  min-height: 52px;
  padding: 9px 12px;
  text-align: left;
  width: 100%;
}

.profile-about-city-field__option + .profile-about-city-field__option { border-top: 1px solid var(--profile-about-border); }
.profile-about-city-field__option:hover,
.profile-about-city-field__option.is-active { background: var(--profile-about-accent-soft); }
.profile-about-city-field__option strong { font-size: 10px; }
.profile-about-city-field__option span { color: var(--profile-about-muted); font-size: 8px; }
.profile-about-city-field__empty { color: var(--profile-about-muted); font-size: 9px; margin: 0; padding: 14px; }

.profile-about-modal .modal-title {
  color: var(--profile-about-ink);
  font-size: 20px;
  font-weight: 700;
}

body.night-mode #particulier-presentation {
  --profile-about-ink: var(--fl-color-dark-text, #c1d4e3);
  --profile-about-muted: #91a6b7;
  --profile-about-border: var(--fl-color-dark-border, #2e3f4d);
  --profile-about-surface: var(--fl-color-dark-surface, #262d34);
  --profile-about-canvas: var(--fl-color-dark-input, #1e252b);
  --profile-about-accent-soft: color-mix(in srgb, var(--profile-about-accent) 18%, transparent);
  --profile-about-accent-softer: color-mix(in srgb, var(--profile-about-accent) 10%, transparent);
}

body.night-mode .profile-about-hero {
  background: linear-gradient(135deg, #21343a 0%, #262d34 70%);
}

body.night-mode #particulier-presentation .profile-about-field .form-control,
body.night-mode #particulier-presentation .profile-about-field .form-select,
body.night-mode #particulier-presentation .tagify {
  background: var(--fl-color-dark-input, #1e252b);
  border-color: var(--fl-color-dark-border, #2e3f4d);
  color: var(--profile-about-ink);
}

body.night-mode .profile-about-rich-editor,
body.night-mode .profile-about-rich-editor .ql-toolbar.ql-snow,
body.night-mode .profile-about-rich-editor .ql-container.ql-snow {
  background: var(--fl-color-dark-input, #1e252b);
  border-color: var(--fl-color-dark-border, #2e3f4d);
  color: var(--profile-about-ink);
}

body.night-mode .profile-about-section-view,
body.night-mode .profile-about-editor,
body.night-mode .profile-about-editor__footer,
body.night-mode .profile-about-config-actions,
body.night-mode .profile-about-public-card__meta {
  border-color: var(--profile-about-border);
}

body.night-mode .profile-about-quote,
body.night-mode .profile-about-profile-link {
  background: var(--profile-about-canvas);
  color: var(--profile-about-ink);
}

@media (max-width: 1199.98px) {
  .profile-about-workspace {
    grid-template-areas:
      "guide story"
      "preview story";
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  }

  .profile-about-preview-column {
    position: static;
  }
}

@media (max-width: 991.98px) {
  .profile-about-page-column {
    padding-left: 12px;
    padding-right: 12px;
  }

  .profile-about-workspace {
    display: flex;
    flex-direction: column;
  }

  .profile-about-guide,
  .profile-about-story,
  .profile-about-preview-column {
    position: static;
    width: 100%;
  }

  .profile-about-guide { order: 1; }
  .profile-about-story { order: 2; }
  .profile-about-preview-column { order: 3; }

  .profile-about-guide__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .profile-about-page-column {
    padding-left: 8px;
    padding-right: 8px;
  }

  .profile-about-hero {
    align-items: stretch;
    border-radius: 18px;
    flex-direction: column;
    padding: 23px 18px 18px;
  }

  .profile-about-hero h1 {
    font-size: 27px;
  }

  .profile-about-hero__actions {
    justify-content: flex-start;
  }

  .profile-about-owner-nav {
    display: flex;
    width: 100%;
  }

  .profile-about-owner-nav .profile-about-tab {
    flex: 1 1 50%;
  }

  .profile-about-guide__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-about-story__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-about-story__heading .profile-about-button {
    align-self: flex-start;
  }

  .profile-about-facts,
  .profile-about-editor__fields,
  .profile-about-config-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-about-fact--wide,
  .profile-about-field--wide {
    grid-column: auto;
  }

  .profile-about-section-card__header {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-about-section-card__header > .profile-about-button {
    align-self: flex-start;
  }

  .profile-about-editor__footer,
  .profile-about-config-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-about-editor__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .profile-about-editor__actions .profile-about-button {
    min-width: 0;
    width: 100%;
  }

  .profile-about-config-actions .profile-about-button {
    width: 100%;
  }

  .profile-about-configuration-card {
    border-radius: 17px;
    padding: 19px 16px;
  }
}

@media (max-width: 419.98px) {
  .profile-about-page-column {
    padding-left: 4px;
    padding-right: 4px;
  }

  .profile-about-hero__actions,
  .profile-about-hero__actions .profile-about-button {
    width: 100%;
  }

  .profile-about-guide__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-about-guide__text strong,
  .profile-about-guide__text small {
    white-space: normal;
  }

  .profile-about-section-card__header,
  .profile-about-section-view,
  .profile-about-editor {
    padding-left: 14px;
    padding-right: 14px;
  }

  .profile-about-editor__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-about-button {
    min-height: 44px;
    padding-bottom: 2px;
    padding-top: 2px;
  }

  .profile-about-button__circle {
    flex-basis: 40px;
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 767.98px) {
  .profile-about-wizard-modal {
    padding: 0 !important;
  }

  .profile-about-wizard-modal .modal-dialog {
    height: 100dvh;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .profile-about-wizard {
    border-radius: 0;
    height: 100dvh;
    max-height: 100dvh;
  }

  .profile-about-wizard > form {
    height: 100dvh;
    min-height: 100dvh;
  }

  .profile-about-wizard__header {
    min-height: 96px;
    padding: max(14px, env(safe-area-inset-top)) 18px 14px;
  }

  .profile-about-wizard__header p { display: none; }
  .profile-about-wizard__header .modal-title { font-size: 15px; }

  .profile-about-wizard__mobile-progress {
    bottom: 10px;
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    left: 18px;
    position: absolute;
    right: 18px;
  }

  .profile-about-wizard__mobile-progress span {
    background: var(--profile-about-border);
    border-radius: 999px;
    height: 4px;
  }

  .profile-about-wizard__mobile-progress span.is-active { background: var(--profile-about-accent); }

  .profile-about-wizard__body { display: block; }
  .profile-about-wizard__rail { display: none; }

  .profile-about-wizard__content {
    height: 100%;
    padding: 20px 18px 26px;
  }

  .profile-about-wizard__panel h3 { font-size: 21px; }

  .profile-about-wizard__grid,
  .profile-about-wizard__privacy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-about-wizard__privacy-grid { gap: 7px; }

  .profile-about-wizard__privacy-select {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .profile-about-wizard__privacy-select .form-select {
    max-width: 165px;
  }

  .profile-about-wizard__audiences {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-about-wizard__audiences span {
    justify-content: center;
    min-height: 42px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    width: 100%;
  }

  .profile-about-wizard__footer {
    min-height: calc(72px + env(safe-area-inset-bottom));
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  }

  .profile-about-wizard__footer [data-bs-dismiss="modal"] { display: none; }
  .profile-about-wizard__footer-spacer { display: none; }

  .profile-about-wizard__footer .profile-about-button {
    justify-content: center;
    min-width: 0;
  }

  .profile-about-wizard__footer [data-wizard-back] { flex: 0 0 auto; }
  .profile-about-wizard__footer [data-wizard-next] { flex: 1 1 auto; width: auto; }

  .profile-about-city-field__suggestions {
    max-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #particulier-presentation *,
  #particulier-presentation *::before,
  #particulier-presentation *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
