/**
 * Profil particulier — rails, Premium, boutons et modales.
 *
 * Les règles restent bornées à la coque profil ou aux surfaces explicitement
 * marquées par profile-shell-next.js. Le publisher et les posts ne sont jamais
 * ciblés par ce fichier.
 */

.fl-profile-particulier-shell {
  --fl-profile-entity-action: var(--fl-profile-entity, var(--fl-color-entity-particulier-clair, #00a2b7));
  --fl-profile-entity-action-hover: color-mix(in srgb, var(--fl-profile-entity-action) 84%, #003b43);
  --fl-profile-entity-soft: color-mix(in srgb, var(--fl-profile-entity-action) 11%, #fff);
  --fl-profile-entity-softer: color-mix(in srgb, var(--fl-profile-entity-action) 5%, #fff);
  --fl-profile-danger: var(--fl-color-profile-action-delete, #be2828);
  --fl-profile-ink: #17212b;
  --fl-profile-muted: #657687;
  --fl-profile-border: #dce7eb;
  --fl-profile-surface: var(--fl-color-surface, #fff);
  --fl-profile-canvas: #f6fafb;
  --fl-profile-shadow: 0 12px 34px rgba(25, 61, 72, .075);
  font-family: var(--fl-font-family-body, Poppins, Helvetica, sans-serif);
}

.fl-profile-particulier-shell *,
.fl-profile-particulier-shell *::before,
.fl-profile-particulier-shell *::after,
.fl-profile-modal-surface *,
.fl-profile-modal-surface *::before,
.fl-profile-modal-surface *::after {
  box-sizing: border-box;
}

/* Actions d'entité réutilisables */
.fl-profile-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--fl-font-family-body, Poppins, Helvetica, sans-serif);
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  line-height: 1.2;
  min-height: 40px;
  padding: 2px 15px 2px 2px;
  text-decoration: none;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  width: max-content;
}

.fl-profile-button--block {
  width: 100%;
}

.fl-profile-button--entity {
  background: var(--fl-profile-entity-action, var(--fl-color-entity-particulier-clair, #00a2b7));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--fl-profile-entity-action) 22%, transparent);
  color: #fff;
}

.fl-profile-button--entity:hover,
.fl-profile-button--entity:focus-visible {
  background: var(--fl-profile-entity-action-hover, var(--fl-profile-entity-action));
  color: #fff;
  text-decoration: none;
}

.fl-profile-button--entity:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px color-mix(in srgb, var(--fl-profile-entity-action) 42%, transparent);
  outline: none;
}

.fl-profile-button--entity:active {
  box-shadow: 0 2px 7px color-mix(in srgb, var(--fl-profile-entity-action) 23%, transparent);
  transform: translateY(1px);
}

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

.fl-profile-button--danger:hover,
.fl-profile-button--danger:focus-visible {
  background: color-mix(in srgb, var(--fl-profile-danger, #be2828) 86%, #4a0808);
  color: #fff;
}

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

.fl-profile-button__icon {
  align-items: center;
  align-self: center;
  background: #fff;
  border-radius: 50%;
  color: var(--fl-profile-entity-action, var(--fl-color-entity-particulier-clair, #00a2b7));
  display: inline-flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.fl-profile-button__icon i,
.fl-profile-button__icon svg {
  color: currentColor;
  fill: currentColor;
  font-size: 18px;
  height: 19px;
  max-height: 20px;
  max-width: 20px;
  width: 19px;
}

.fl-profile-text-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--fl-profile-entity-action, var(--fl-color-entity-particulier-clair, #00a2b7));
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  padding: 0;
}

.fl-profile-text-button[hidden] {
  display: none;
}

.fl-profile-text-button:focus-visible {
  border-radius: 4px;
  outline: 3px solid color-mix(in srgb, var(--fl-profile-entity-action) 32%, transparent);
  outline-offset: 3px;
}

/* Composition du Mur : le centre reste un include inchangé. */
.fl-profile-home-layout {
  min-width: 0;
  padding: 0 0 52px;
}

.fl-profile-home-layout > .row {
  align-items: flex-start;
}

.fl-profile-home-column {
  min-width: 0;
}

.fl-profile-home-column--left {
  padding-right: 18px;
}

.fl-profile-home-column--center {
  padding: 0 2px;
}

.fl-profile-home-column--right {
  padding-left: 18px;
}

.fl-profile-home-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.fl-profile-rail-card {
  background: var(--fl-profile-surface);
  border: 1px solid var(--fl-profile-border);
  border-radius: 16px;
  box-shadow: var(--fl-profile-shadow);
  color: var(--fl-profile-ink);
  min-width: 0;
  overflow: hidden;
}

.fl-profile-rail-card__header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 17px 18px 0;
}

.fl-profile-rail-card__header--link {
  align-items: flex-end;
}

.fl-profile-rail-card__header h2,
.fl-profile-gift-card h2 {
  color: var(--fl-profile-ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.25;
  margin: 2px 0 0;
}

.fl-profile-rail-card__header h2 small {
  color: var(--fl-profile-muted);
  font-size: 11px;
  font-weight: 700;
}

.fl-profile-rail-card__header > a:not(.fl-profile-rail-icon-link) {
  color: var(--fl-profile-entity-action);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.fl-profile-rail-eyebrow {
  color: var(--fl-profile-entity-action);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fl-profile-rail-card__icon,
.fl-profile-rail-icon-link {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 12px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  width: 38px;
}

.fl-profile-rail-icon-link:hover,
.fl-profile-rail-icon-link:focus-visible {
  background: var(--fl-profile-entity-action);
  color: #fff;
}

.fl-profile-rail-card--identity {
  border-radius: 22px;
}

.fl-profile-brief {
  display: block;
}

.fl-profile-brief__hero-shell {
  position: relative;
}

.fl-profile-brief__hero-shell.has-location {
  padding-bottom: 60px;
}

.fl-profile-brief__hero {
  background: var(--fl-profile-entity-action);
  color: #fff;
  min-height: 154px;
  overflow: hidden;
  padding: 17px 18px 20px;
  position: relative;
}

.fl-profile-brief__hero::after {
  background: rgba(255, 255, 255, .11);
  border-radius: 50%;
  content: "";
  height: 90px;
  position: absolute;
  right: -28px;
  top: -24px;
  width: 90px;
}

.fl-profile-brief__hero-top {
  align-items: center;
  display: flex;
  min-height: 18px;
  position: relative;
  z-index: 1;
}

.fl-profile-brief__hero-top > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fl-profile-brief__hero h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 10px 0 0;
  position: relative;
  z-index: 1;
}

.fl-profile-brief__hero p {
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  line-height: 1.55;
  margin: 8px 0 0;
  max-width: 235px;
  position: relative;
  z-index: 1;
}

.fl-profile-brief__body {
  display: grid;
  gap: 14px;
  padding: 10px 16px 16px;
}

.fl-profile-brief__section-heading {
  align-items: center;
  display: grid;
  gap: 9px;
  grid-template-columns: 4px minmax(0, 1fr);
  min-width: 0;
}

.fl-profile-brief__section-heading > span:first-child {
  background: var(--fl-profile-entity-action);
  border-radius: 999px;
  height: 24px;
  width: 4px;
}

.fl-profile-brief__section-heading > div {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.fl-profile-brief__section-heading h3 {
  color: var(--fl-profile-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.fl-profile-brief__section-heading small {
  color: var(--fl-profile-muted);
  font-size: 9px;
  line-height: 1.4;
}

.fl-profile-brief__intro {
  display: grid;
  gap: 6px;
}

.fl-profile-brief__eyebrow,
.fl-profile-brief-universe__label {
  color: var(--fl-profile-entity-action);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.fl-profile-brief-bio {
  color: var(--fl-profile-ink);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.fl-profile-brief-bio p {
  display: inline;
  margin: 0;
}

.fl-profile-brief-bio p + p::before {
  content: " ";
}

.fl-profile-brief-bio p > br:only-child {
  display: none;
}

.fl-profile-brief-bio ul,
.fl-profile-brief-bio ol {
  margin: 4px 0 0;
  padding-left: 18px;
}

.fl-profile-brief-bio.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 6.2em;
  overflow: hidden;
}

.fl-profile-rail-card--identity [data-profile-bio-toggle] {
  font-size: 10px;
  margin-top: 1px;
}

.fl-profile-rail-card--identity [data-profile-bio-toggle] i {
  font-size: 9px;
  transition: transform .18s ease;
}

.fl-profile-rail-card--identity [data-profile-bio-toggle][aria-expanded="true"] i {
  transform: rotate(180deg);
}

.fl-profile-rail-empty {
  color: var(--fl-profile-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.fl-profile-brief-location {
  align-items: center;
  background: var(--fl-profile-canvas);
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 22%, #fff);
  border-radius: 16px;
  bottom: 10px;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--fl-profile-entity-action) 12%, transparent);
  display: flex;
  gap: 10px;
  left: 16px;
  min-height: 86px;
  min-width: 0;
  padding: 12px 13px;
  position: absolute;
  right: 16px;
}

.fl-profile-brief-location__icon,
.fl-profile-brief-site__icon {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 14px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.fl-profile-brief-location__icon svg,
.fl-profile-brief-site__icon svg {
  color: currentColor;
  fill: currentColor;
  max-height: 22px;
  max-width: 22px;
}

.fl-profile-brief-location__copy {
  display: grid;
  min-width: 0;
}

.fl-profile-brief-location__copy strong {
  color: var(--fl-profile-ink);
  font-size: 13px;
  line-height: 18px;
}

.fl-profile-brief-location__separator {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fl-profile-brief-location__copy small {
  color: var(--fl-profile-muted);
  font-size: 9px;
  line-height: 14px;
  overflow-wrap: anywhere;
}

.fl-profile-brief-facts {
  align-items: center;
  background: var(--fl-profile-entity-softer);
  border-radius: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  margin: 0;
  min-height: 36px;
  padding: 9px 11px;
}

.fl-profile-brief-facts:empty {
  display: none;
}

.fl-profile-brief-facts li {
  color: #455665;
  font-size: 12px;
  line-height: 1.35;
}

.fl-profile-brief-facts li + li::before {
  color: var(--fl-profile-muted);
  content: "•";
  margin-right: 8px;
}

.fl-profile-brief-universes {
  display: grid;
  gap: 12px;
}

.fl-profile-brief-universe {
  background: transparent;
  border: 0;
  border-radius: 15px;
  overflow: visible;
  transition: filter .24s ease;
}

.fl-profile-brief-universe h4 {
  margin: 0;
}

.fl-profile-brief-universe h4 > button {
  align-items: center;
  background: var(--fl-profile-surface);
  border: 1px solid var(--fl-profile-border);
  border-radius: 15px;
  color: var(--fl-profile-ink);
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr) 12px;
  min-height: 66px;
  padding: 9px 12px 9px 10px;
  text-align: left;
  width: 100%;
  transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.fl-profile-brief-universe.is-open h4 > button {
  background: var(--fl-profile-entity-action);
  border-color: var(--fl-profile-entity-action);
  box-shadow: 0 9px 22px color-mix(in srgb, var(--fl-profile-entity-action) 18%, transparent);
  color: #fff;
}

.fl-profile-brief-universe h4 > button:focus-visible {
  border-radius: 10px;
  outline: 3px solid color-mix(in srgb, var(--fl-profile-entity-action) 36%, transparent);
  outline-offset: -3px;
}

.fl-profile-brief-universe__index {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 14px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  flex: 0 0 46px;
  font-size: 12px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.fl-profile-brief-universe.is-open .fl-profile-brief-universe__index {
  background: #fff;
  color: var(--fl-profile-entity-action);
}

.fl-profile-brief-universe__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.fl-profile-brief-universe__copy strong,
.fl-profile-brief-universe__copy small {
  display: block;
  min-width: 0;
}

.fl-profile-brief-universe__copy strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.fl-profile-brief-universe.is-open .fl-profile-brief-universe__copy strong {
  color: #fff;
}

.fl-profile-brief-universe__copy small {
  color: var(--fl-profile-muted);
  font-size: 9px;
  line-height: 13px;
}

.fl-profile-brief-universe.is-open .fl-profile-brief-universe__copy small {
  color: rgba(255, 255, 255, .8);
}

.fl-profile-brief-universe h4 > button > i {
  color: var(--fl-profile-muted);
  font-size: 10px;
  transition: color .24s ease, transform .24s ease;
}

.fl-profile-brief-universe.is-open h4 > button > i {
  color: #fff;
  transform: rotate(180deg);
}

.fl-profile-brief-universe__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .24s ease, opacity .18s ease;
}

.fl-profile-brief-universe__content[hidden] {
  display: none;
}

.fl-profile-brief-universe.is-open .fl-profile-brief-universe__content {
  margin-top: 12px;
  max-height: 1200px;
  opacity: 1;
}

.fl-profile-brief-universe__content-inner {
  background: var(--fl-profile-entity-soft);
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 22%, #fff);
  border-radius: 15px;
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 12px;
}

.fl-profile-brief-universe__label {
  color: var(--fl-profile-entity-action);
}

.fl-profile-brief-tag-group {
  display: grid;
  gap: 6px;
}

.fl-profile-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fl-profile-brief-tags span {
  background: #fff;
  border: 1px solid var(--fl-profile-entity-action);
  border-radius: 999px;
  color: var(--fl-profile-ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 6px 10px;
}

.fl-profile-brief-quote {
  align-items: flex-start;
  background: var(--fl-profile-entity-softer);
  border: 0;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 12px;
}

.fl-profile-brief-quote > i {
  color: var(--fl-profile-entity-action);
  flex: 0 0 14px;
  font-size: 13px;
  margin-top: 2px;
}

.fl-profile-brief-quote > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.fl-profile-brief-quote p {
  color: var(--fl-profile-ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.fl-profile-brief-quote cite {
  color: var(--fl-profile-muted);
  font-size: 9px;
  font-style: normal;
}

.fl-profile-brief-site {
  align-items: center;
  color: var(--fl-profile-ink);
  display: flex;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.fl-profile-brief-site__icon {
  background: var(--fl-profile-entity-soft);
  border-radius: 12px;
  flex-basis: 38px;
  height: 38px;
  width: 38px;
}

.fl-profile-brief-site > span:last-child {
  display: grid;
  min-width: 0;
}

.fl-profile-brief-site small {
  color: var(--fl-profile-muted);
  font-size: 9px;
  line-height: 13px;
  text-transform: uppercase;
}

.fl-profile-brief-site strong {
  color: var(--fl-profile-entity-action);
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fl-profile-brief-site:hover strong,
.fl-profile-brief-site:focus-visible strong {
  color: var(--fl-profile-entity-action-hover);
  text-decoration: underline;
}

.fl-profile-rail-card--identity .fl-profile-button {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fl-profile-brief-universe,
  .fl-profile-brief-universe__content,
  .fl-profile-brief-universe h4 > button,
  .fl-profile-brief-universe h4 > button > i {
    transition: none;
  }
}

.fl-profile-shortcuts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 15px 16px 17px;
}

.fl-profile-shortcuts a {
  align-items: center;
  background: var(--fl-profile-entity-softer);
  border: 1px solid color-mix(in srgb, var(--fl-profile-border) 82%, var(--fl-profile-entity-action));
  border-radius: 13px;
  color: var(--fl-profile-ink);
  display: grid;
  gap: 2px 8px;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 62px;
  padding: 9px;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.fl-profile-shortcuts a:hover,
.fl-profile-shortcuts a:focus-visible {
  background: var(--fl-profile-entity-soft);
  border-color: var(--fl-profile-entity-action);
  outline: none;
  transform: translateY(-1px);
}

.fl-profile-shortcuts a > span {
  align-items: center;
  background: #fff;
  border-radius: 9px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  grid-row: 1 / 3;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.fl-profile-shortcuts strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
}

.fl-profile-shortcuts small {
  color: var(--fl-profile-muted);
  font-size: 12px;
  line-height: 1.2;
}

.fl-profile-media-preview {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 15px 16px 17px;
}

.fl-profile-media-preview a {
  aspect-ratio: 1;
  border-radius: 11px;
  display: block;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.fl-profile-media-preview img {
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
  width: 100%;
}

.fl-profile-media-preview a:hover img,
.fl-profile-media-preview a:focus-visible img {
  transform: scale(1.045);
}

.fl-profile-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 17px 18px;
}

.fl-profile-social-links a {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 50%;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  text-decoration: none;
  width: 34px;
}

.fl-profile-social-links a:hover,
.fl-profile-social-links a:focus-visible {
  background: var(--fl-profile-entity-action);
  color: #fff;
}

.fl-profile-additional-info {
  padding: 12px 16px 17px;
}

.fl-profile-additional-info details + details {
  border-top: 1px solid var(--fl-profile-border);
}

.fl-profile-additional-info summary {
  align-items: center;
  color: #435462;
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 10px 2px;
}

.fl-profile-additional-info summary::-webkit-details-marker { display: none; }
.fl-profile-additional-info details[open] summary i { transform: rotate(180deg); }
.fl-profile-additional-info dl { margin: 0 0 10px; }
.fl-profile-additional-info dl div { margin-bottom: 8px; }
.fl-profile-additional-info dt { color: var(--fl-profile-muted); font-size: 9px; font-weight: 600; }
.fl-profile-additional-info dd { color: var(--fl-profile-ink); font-size: 10px; margin: 2px 0 0; overflow-wrap: anywhere; }

/* Tableau de bord */
.fl-profile-dashboard__grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 15px 16px 17px;
}

.fl-profile-dashboard__grid > * {
  background: var(--fl-profile-entity-softer);
  border: 1px solid color-mix(in srgb, var(--fl-profile-border) 82%, var(--fl-profile-entity-action));
  border-radius: 13px;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 82px;
  padding: 10px 11px;
  text-decoration: none;
}

.fl-profile-dashboard__grid > a:hover,
.fl-profile-dashboard__grid > a:focus-visible {
  border-color: var(--fl-profile-entity-action);
  outline: none;
}

.fl-profile-dashboard__grid strong {
  color: var(--fl-profile-ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.fl-profile-dashboard__grid span {
  color: #425363;
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
}

.fl-profile-dashboard__grid small {
  color: var(--fl-profile-muted);
  font-size: 9px;
  margin-top: 1px;
}

/* Complétion : huit étapes sur le Profil personnel, neuf sur le Profil public. */
.fl-profile-achievement .fl-profile-rail-card__header h2 {
  font-size: 19px;
}

.fl-profile-achievement .fl-profile-rail-eyebrow {
  font-size: 12px;
}

.fl-profile-achievement__score {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 999px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 30px;
  padding: 0 10px;
}

.fl-profile-achievement__progress {
  background: #e9f0f2;
  border-radius: 999px;
  height: 7px;
  margin: 15px 18px 0;
  overflow: hidden;
}

.fl-profile-achievement__progress span {
  background: var(--fl-profile-entity-action);
  border-radius: inherit;
  display: block;
  height: 100%;
  min-width: 0;
}

.fl-profile-achievement__copy {
  color: var(--fl-profile-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 18px 0;
}

.fl-profile-achievement__steps {
  display: grid;
  gap: 5px;
  list-style: none;
  margin: 13px 0 0;
  padding: 0 12px;
}

.fl-profile-achievement__step {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  background: var(--fl-profile-entity-softer);
  border: 1px solid color-mix(in srgb, var(--fl-profile-border) 82%, var(--fl-profile-entity-action));
  border-radius: 11px;
  color: var(--fl-profile-ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 8px;
  grid-template-columns: 30px minmax(0, 1fr) 12px;
  line-height: normal;
  margin: 0;
  min-height: 45px;
  padding: 6px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.fl-profile-achievement__step:hover,
.fl-profile-achievement__step:focus-visible {
  background: var(--fl-profile-entity-soft);
  border-color: var(--fl-profile-entity-action);
  outline: none;
}

.fl-profile-achievement__step-icon {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 9px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.fl-profile-achievement__steps strong,
.fl-profile-achievement__steps small {
  display: block;
  line-height: 1.3;
}

.fl-profile-achievement__steps strong {
  font-size: 14px;
  font-weight: 700;
}

.fl-profile-achievement__steps small {
  color: var(--fl-profile-muted);
  font-size: 12px;
  margin-top: 2px;
}

.fl-profile-achievement__step > i {
  color: var(--fl-profile-entity-action);
  font-size: 11px;
}

.fl-profile-achievement__steps li.is-complete .fl-profile-achievement__step-icon {
  background: var(--fl-profile-entity-action);
  color: #fff;
}

.fl-profile-achievement__steps li.is-complete > .fl-profile-achievement__step > i {
  color: var(--fl-profile-entity-action);
}

.fl-profile-achievement > .fl-profile-button {
  font-size: 14px;
  margin: 14px 16px 17px;
  max-width: calc(100% - 32px);
  width: max-content;
}

/* Relations et badges */
.fl-profile-relations-preview__grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 15px 16px 12px;
}

.fl-profile-relations-preview__grid a {
  color: #435462;
  min-width: 0;
  text-align: center;
  text-decoration: none;
}

.fl-profile-relations-preview__grid img {
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--fl-profile-border);
  object-fit: cover;
  width: 42px;
}

.fl-profile-relations-preview__grid span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fl-profile-relations-preview > .fl-profile-text-button {
  margin: 0 16px 16px;
}

.fl-profile-activity-links {
  display: grid;
  gap: 3px;
  padding: 12px 14px 16px;
}

.fl-profile-activity-links a {
  align-items: center;
  border-radius: 10px;
  color: #435462;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: space-between;
  padding: 9px 8px;
  text-decoration: none;
}

.fl-profile-activity-links a:hover,
.fl-profile-activity-links a:focus-visible {
  background: var(--fl-profile-entity-softer);
  color: var(--fl-profile-ink);
  outline: none;
}

.fl-profile-activity-links a span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.fl-profile-activity-links a i { color: var(--fl-profile-entity-action); width: 14px; }
.fl-profile-activity-links a strong { color: var(--fl-profile-entity-action); font-size: 11px; }

.fl-profile-home-rail .fl-profile-badges-next,
.fl-profile-home-rail .fl-profile-badges-legacy {
  border: 1px solid var(--fl-profile-border);
  border-radius: 16px;
  box-shadow: var(--fl-profile-shadow);
  margin-bottom: 0 !important;
  overflow: hidden;
}

.fl-profile-gift-card {
  padding: 18px;
  text-align: center;
}

.fl-profile-gift-card__icon {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 15px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  font-size: 19px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.fl-profile-gift-card p {
  color: var(--fl-profile-muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 7px 0 14px;
}

/* Header du profil : uniquement ses actions, jamais le publisher. */
.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre:not(.btn-delete):not(.js_friend-remove):not(.js_friend-decline),
.fl-profile-particulier-shell .profile-cover-wrapper .btn-upload {
  background: var(--fl-profile-entity-action) !important;
  border-color: var(--fl-profile-entity-action) !important;
  color: #fff !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre:not(.btn-delete):not(.js_friend-remove):not(.js_friend-decline):hover,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre:not(.btn-delete):not(.js_friend-remove):not(.js_friend-decline):focus-visible,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-upload:hover,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-upload:focus-visible {
  background: var(--fl-profile-entity-action-hover) !important;
  color: #fff !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre .icon-circle {
  background: #fff !important;
  color: var(--fl-profile-entity-action) !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre .icon-circle i,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre .icon-circle svg {
  color: currentColor !important;
  fill: currentColor !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .btn-offre .btn-text {
  color: #fff !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .profile-buttons-wrapper .btn-offre > i {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  font-size: 14px;
  height: 30px;
  justify-content: center;
  margin: -5px 7px -5px -7px;
  width: 30px;
}

.fl-profile-particulier-shell .profile-cover-wrapper .js_friend-remove,
.fl-profile-particulier-shell .profile-cover-wrapper .js_friend-decline,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-delete {
  background: var(--fl-profile-danger) !important;
  border-color: var(--fl-profile-danger) !important;
  color: #fff !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .js_friend-remove .icon-circle,
.fl-profile-particulier-shell .profile-cover-wrapper .js_friend-decline .icon-circle,
.fl-profile-particulier-shell .profile-cover-wrapper .btn-delete .icon-circle {
  background: #fff !important;
  color: var(--fl-profile-danger) !important;
}

.fl-profile-particulier-shell .profile-cover-wrapper .profile-buttons-wrapper .js_friend-remove > i,
.fl-profile-particulier-shell .profile-cover-wrapper .profile-buttons-wrapper .js_friend-decline > i,
.fl-profile-particulier-shell .profile-cover-wrapper .profile-buttons-wrapper .btn-delete > i {
  color: var(--fl-profile-danger) !important;
}

/* Premium partagé et page de souscription */
.fl-profile-premium-banner {
  align-items: center;
  background:
    radial-gradient(circle at 95% -30%, rgba(255, 224, 133, .23), transparent 35%),
    linear-gradient(125deg, #173f42 0%, #0d3034 100%);
  border: 1px solid rgba(239, 204, 105, .45);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7, 35, 38, .16);
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 17px 19px;
  position: relative;
}

.fl-profile-premium-banner::after {
  border: 1px solid rgba(255, 222, 131, .2);
  border-radius: 50%;
  content: "";
  height: 96px;
  position: absolute;
  right: -28px;
  top: -43px;
  width: 96px;
}

.fl-profile-premium-banner__main {
  align-items: center;
  display: flex;
  gap: 13px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.fl-profile-premium-banner__mark {
  align-items: center;
  background: linear-gradient(145deg, #ffe9a9, #e4b94a);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: #4d3500;
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.fl-profile-premium-banner__eyebrow {
  color: #f5d77e;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fl-profile-premium-banner h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 2px 0 0;
}

.fl-profile-premium-banner p {
  color: #cfe1e2;
  font-size: 11px;
  line-height: 1.5;
  margin: 3px 0 0;
}

.fl-profile-premium-banner__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.fl-profile-premium-banner .fl-profile-button--entity {
  box-shadow: none;
}

.fl-profile-premium-banner__details {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  min-height: 40px;
  padding: 0 14px;
}

.fl-profile-premium-banner__details:hover,
.fl-profile-premium-banner__details:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.fl-profile-premium-page {
  --fl-profile-entity-action: var(--fl-color-entity-particulier-clair, #00a2b7);
  color: var(--fl-profile-ink, #17212b);
  font-family: var(--fl-font-family-body, Poppins, Helvetica, sans-serif);
  width: 100%;
}

.fl-profile-premium-subscribe {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

.fl-profile-premium-card,
.fl-profile-premium-side,
.fl-profile-premium-checkout,
.fl-profile-premium-status {
  background: #fff;
  border: 1px solid var(--fl-profile-border, #dce7eb);
  border-radius: 18px;
  box-shadow: var(--fl-profile-shadow, 0 12px 34px rgba(25, 61, 72, .075));
}

.fl-profile-premium-card {
  background:
    radial-gradient(circle at 95% 4%, rgba(255, 224, 133, .19), transparent 28%),
    linear-gradient(135deg, #173f42, #0e3034);
  color: #fff;
  overflow: hidden;
  padding: 28px;
}

.fl-profile-premium-side {
  padding: 25px;
}

.fl-profile-premium-kicker {
  align-items: center;
  background: rgba(255, 232, 165, .14);
  border: 1px solid rgba(255, 224, 133, .35);
  border-radius: 999px;
  color: #f5d77e;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: .1em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.fl-profile-premium-heading {
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.14;
  margin: 16px 0 9px;
}

.fl-profile-premium-lead,
.fl-profile-premium-copy {
  font-size: 13px;
  line-height: 1.65;
}

.fl-profile-premium-lead {
  color: #d5e4e5;
}

.fl-profile-premium-copy {
  color: #657687;
}

.fl-profile-premium-benefits {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.fl-profile-premium-benefits li {
  color: #e2eeee;
  display: grid;
  font-size: 11px;
  gap: 8px;
  grid-template-columns: 18px minmax(0, 1fr);
  line-height: 1.5;
}

.fl-profile-premium-benefits i {
  color: #f5d77e;
  margin-top: 2px;
}

.fl-profile-premium-price {
  align-items: flex-end;
  color: var(--fl-profile-ink, #17212b);
  display: flex;
  gap: 7px;
  margin-bottom: 13px;
}

.fl-profile-premium-price strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.fl-profile-premium-price span {
  color: #657687;
  font-size: 12px;
  font-weight: 600;
}

.fl-profile-premium-btn,
.fl-profile-premium-outline {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
  width: 100%;
}

.fl-profile-premium-btn {
  background: var(--fl-profile-entity-action);
  border: 0;
  color: #fff;
}

.fl-profile-premium-btn:hover,
.fl-profile-premium-btn:focus-visible {
  background: color-mix(in srgb, var(--fl-profile-entity-action) 84%, #003b43);
  color: #fff;
}

.fl-profile-premium-outline {
  background: #fff;
  border: 1px solid var(--fl-profile-entity-action);
  color: var(--fl-profile-entity-action);
}

.fl-profile-premium-status {
  color: #425363;
  margin-bottom: 16px;
  padding: 16px 18px;
}

.fl-profile-premium-status strong {
  color: var(--fl-profile-ink, #17212b);
}

.fl-profile-premium-checkout {
  display: none;
  margin-top: 18px;
  padding: 20px;
}

.fl-profile-premium-checkout.is-visible {
  display: block;
}

.fl-profile-premium-checkout-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fl-profile-premium-checkout-title {
  color: var(--fl-profile-ink, #17212b);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.fl-profile-premium-checkout-meta,
.fl-profile-premium-checkout-feedback {
  color: #657687;
  font-size: 12px;
  font-weight: 600;
}

.fl-profile-premium-checkout-feedback.is-error { color: var(--fl-profile-danger, #be2828); }
.fl-profile-premium-checkout-feedback.is-ok { color: var(--fl-color-status-success, #198754); }
.fl-profile-premium-checkout-box { min-height: 560px; }

/* Modales explicitement rattachées au profil */
.fl-profile-modal-surface {
  --fl-profile-entity-action: var(--fl-color-entity-particulier-clair, #00a2b7);
  --fl-profile-danger: var(--fl-color-profile-action-delete, #be2828);
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 72px rgba(16, 42, 51, .22) !important;
  font-family: var(--fl-font-family-body, Poppins, Helvetica, sans-serif);
  overflow: hidden;
}

.fl-profile-modal-surface .modal-header,
.fl-profile-modal-surface .fl-profile-modal__header {
  align-items: flex-start;
  background: linear-gradient(135deg, var(--fl-profile-entity-soft, #e8f8fa), #fff);
  border: 0;
  padding: 21px 22px 15px;
}

.fl-profile-modal-surface .modal-title {
  color: #17212b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.fl-profile-modal-surface .modal-title .main-icon {
  fill: var(--fl-profile-entity-action);
}

.fl-profile-modal-surface .modal-body {
  color: #526575;
  font-size: 13px;
  line-height: 1.6;
  padding: 20px 22px;
}

.fl-profile-modal-surface .modal-footer {
  background: #f8fbfc;
  border-color: #e6eef1;
  gap: 9px;
  padding: 14px 22px 18px;
}

.fl-profile-modal-surface .btn-primary,
.fl-profile-modal-surface .btn-offre:not(.btn-delete),
.fl-profile-modal-surface .fl-profile-modal-button--entity {
  background: var(--fl-profile-entity-action) !important;
  border-color: var(--fl-profile-entity-action) !important;
  color: #fff !important;
}

.fl-profile-modal-surface .btn-primary:hover,
.fl-profile-modal-surface .btn-primary:focus-visible,
.fl-profile-modal-surface .btn-offre:not(.btn-delete):hover,
.fl-profile-modal-surface .btn-offre:not(.btn-delete):focus-visible {
  background: color-mix(in srgb, var(--fl-profile-entity-action) 84%, #003b43) !important;
  color: #fff !important;
}

.fl-profile-modal-surface .btn-light,
.fl-profile-modal-surface .btn-retour {
  background: #fff !important;
  border: 1px solid var(--fl-profile-entity-action) !important;
  color: var(--fl-profile-entity-action) !important;
}

.fl-profile-modal-surface .btn-delete,
.fl-profile-modal-surface .btn-danger {
  background: var(--fl-profile-danger) !important;
  border-color: var(--fl-profile-danger) !important;
  color: #fff !important;
}

.fl-profile-modal-surface .form-control:focus,
.fl-profile-modal-surface .form-select:focus {
  border-color: var(--fl-profile-entity-action);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fl-profile-entity-action) 18%, transparent);
}

.fl-profile-modal-surface .alert-info {
  background: color-mix(in srgb, var(--fl-profile-entity-action) 8%, #fff);
  border-color: color-mix(in srgb, var(--fl-profile-entity-action) 20%, #fff);
  color: #31515a;
}

.fl-profile-modal-surface [data-fl-profile-photo-picker] ul.row {
  gap: 8px 0;
}

.fl-profile-modal-surface [data-fl-profile-photo-picker] .pg_photo {
  border-radius: 12px;
  overflow: hidden;
}

.fl-profile-premium-modal-lead {
  color: #526575;
  font-size: 13px;
  line-height: 1.65;
}

.fl-profile-premium-modal-benefits {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fl-profile-premium-modal-benefit {
  background: #f8fbfc;
  border: 1px solid #e2ebee;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 12px;
}

.fl-profile-premium-modal-benefit > i {
  align-items: center;
  background: var(--fl-profile-entity-soft, #e8f8fa);
  border-radius: 9px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.fl-profile-premium-modal-benefit strong,
.fl-profile-premium-modal-benefit span {
  display: block;
}

.fl-profile-premium-modal-benefit strong {
  color: #17212b;
  font-size: 12px;
}

.fl-profile-premium-modal-benefit span {
  color: #657687;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 3px;
}

.fl-profile-premium-modal-active {
  align-items: center;
  color: var(--fl-color-status-success, #198754);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
}

@media (max-width: 1199.98px) {
  .fl-profile-home-column--left { padding-right: 16px; }
  .fl-profile-home-column--right { padding: 18px 0 0; }
  .fl-profile-home-rail--right {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fl-profile-home-rail--right > * { min-width: 0; }
}

@media (max-width: 991.98px) {
  .fl-profile-home-column--center,
  .fl-profile-home-column--left,
  .fl-profile-home-column--right { padding: 0; }
  .fl-profile-home-column--left,
  .fl-profile-home-column--right { margin-top: 18px; }
  .fl-profile-home-rail--left,
  .fl-profile-home-rail--right {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fl-profile-premium-subscribe,
  .fl-profile-premium-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .fl-profile-premium-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .fl-profile-premium-banner__actions {
    flex-wrap: wrap;
    width: 100%;
  }
  .fl-profile-premium-modal-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .fl-profile-home-layout { padding-bottom: 34px; }
  .fl-profile-home-rail--left,
  .fl-profile-home-rail--right { grid-template-columns: 1fr; }
  .fl-profile-rail-card { border-radius: 15px; }
  .fl-profile-premium-banner {
    border-radius: 15px;
    padding: 15px;
  }
  .fl-profile-premium-banner__actions > * { flex: 1 1 auto; }
  .fl-profile-premium-card,
  .fl-profile-premium-side { padding: 20px; }
  .fl-profile-modal-surface { border-radius: 16px 16px 0 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  .fl-profile-particulier-shell *,
  .fl-profile-modal-surface * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Profil public — Aperçu professionnel, direction C « Contact immédiat ». */
.fl-profile-pro-home-brief-column {
  min-width: 0;
  padding-right: 20px;
}

.fl-profile-pro-home-rail {
  width: 100%;
}

.fl-profile-pro-brief-card {
  background: var(--fl-profile-surface);
  border: 1px solid var(--fl-profile-border);
  border-radius: 22px;
  box-shadow: var(--fl-profile-shadow);
  color: var(--fl-profile-ink);
  min-width: 0;
  overflow: hidden;
}

.fl-profile-pro-brief__hero-shell {
  padding-bottom: 63px;
  position: relative;
}

.fl-profile-pro-brief__hero {
  background: linear-gradient(
    135deg,
    var(--fl-profile-entity-action-hover),
    var(--fl-profile-entity-action)
  );
  color: #fff;
  min-height: 166px;
  overflow: hidden;
  padding: 20px 19px 30px;
  position: relative;
}

.fl-profile-pro-brief__hero::after {
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  height: 112px;
  position: absolute;
  right: -31px;
  top: -34px;
  width: 112px;
}

.fl-profile-pro-brief__hero::before {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  content: "";
  height: 54px;
  position: absolute;
  right: 30px;
  top: 38px;
  width: 54px;
}

.fl-profile-pro-brief__kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.45;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.fl-profile-pro-brief__hero h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 11px 0 0;
  position: relative;
  z-index: 1;
}

.fl-profile-pro-brief__hero p {
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  line-height: 1.55;
  margin: 9px 0 0;
  max-width: 236px;
  position: relative;
  z-index: 1;
}

.fl-profile-pro-brief__spotlight {
  align-items: center;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 27%, #fff);
  border-radius: 17px;
  bottom: 10px;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--fl-profile-entity-action) 16%, transparent);
  display: grid;
  gap: 11px;
  grid-template-columns: 46px minmax(0, 1fr);
  left: 16px;
  min-height: 88px;
  padding: 13px;
  position: absolute;
  right: 16px;
}

.fl-profile-pro-brief__spotlight-icon,
.fl-profile-pro-brief__contact-icon,
.fl-profile-pro-brief__cv-icon {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 14px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  justify-content: center;
}

.fl-profile-pro-brief__spotlight-icon {
  font-size: 20px;
  height: 46px;
  width: 46px;
}

.fl-profile-pro-brief__spotlight-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.fl-profile-pro-brief__spotlight-copy strong {
  color: var(--fl-profile-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__spotlight-copy small {
  color: var(--fl-profile-muted);
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__body {
  display: grid;
  gap: 16px;
  padding: 10px 16px 17px;
}

.fl-profile-pro-brief__intro {
  display: grid;
  gap: 6px;
}

.fl-profile-pro-brief__intro > span,
.fl-profile-pro-brief__contact-copy > span:first-child,
.fl-profile-pro-brief__section-content-inner > span {
  color: var(--fl-profile-entity-action);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .065em;
  line-height: 1.45;
  text-transform: uppercase;
}

.fl-profile-pro-brief__intro p {
  color: var(--fl-profile-ink);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__contact {
  align-items: flex-start;
  background: var(--fl-profile-entity-soft);
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 24%, #fff);
  border-radius: 16px;
  display: grid;
  gap: 11px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 12px;
}

.fl-profile-pro-brief__contact-icon {
  background: #fff;
  font-size: 18px;
  height: 42px;
  width: 42px;
}

.fl-profile-pro-brief__contact-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.fl-profile-pro-brief__contact-action,
.fl-profile-pro-brief__contact-status {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1.25;
  min-height: 40px;
  padding: 7px 13px;
  text-align: center;
  width: 100%;
}

.fl-profile-pro-brief__contact-action {
  background: var(--fl-profile-entity-action);
  border: 1px solid var(--fl-profile-entity-action);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.fl-profile-pro-brief__contact-action:hover,
.fl-profile-pro-brief__contact-action:focus-visible {
  background: var(--fl-profile-entity-action-hover);
  border-color: var(--fl-profile-entity-action-hover);
  color: #fff;
  outline: none;
  text-decoration: none;
}

.fl-profile-pro-brief__contact-action:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px color-mix(in srgb, var(--fl-profile-entity-action) 38%, transparent);
}

.fl-profile-pro-brief__contact-action:active {
  transform: translateY(1px);
}

.fl-profile-pro-brief__contact-status {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 38%, #fff);
  color: var(--fl-profile-entity-action-hover);
}

.fl-profile-pro-brief__section-heading {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 4px minmax(0, 1fr);
}

.fl-profile-pro-brief__section-heading > span {
  background: var(--fl-profile-entity-action);
  border-radius: 999px;
  height: 32px;
  width: 4px;
}

.fl-profile-pro-brief__section-heading > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.fl-profile-pro-brief__section-heading h3 {
  color: var(--fl-profile-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.fl-profile-pro-brief__section-heading small {
  color: var(--fl-profile-muted);
  font-size: 11px;
  line-height: 1.45;
}

.fl-profile-pro-brief__sections {
  display: grid;
  gap: 12px;
}

.fl-profile-pro-brief__section {
  min-width: 0;
}

.fl-profile-pro-brief__section h4 {
  margin: 0;
}

.fl-profile-pro-brief__section h4 > button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fl-profile-border);
  border-radius: 15px;
  color: var(--fl-profile-ink);
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr) 13px;
  min-height: 68px;
  padding: 9px 12px 9px 10px;
  text-align: left;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
  width: 100%;
}

.fl-profile-pro-brief__section.is-open h4 > button {
  background: var(--fl-profile-entity-action);
  border-color: var(--fl-profile-entity-action);
  box-shadow: 0 9px 22px color-mix(in srgb, var(--fl-profile-entity-action) 18%, transparent);
  color: #fff;
}

.fl-profile-pro-brief__section h4 > button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--fl-profile-entity-action) 36%, transparent);
  outline-offset: 2px;
}

.fl-profile-pro-brief__section-index {
  align-items: center;
  background: var(--fl-profile-entity-soft);
  border-radius: 14px;
  color: var(--fl-profile-entity-action);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.fl-profile-pro-brief__section.is-open .fl-profile-pro-brief__section-index {
  background: #fff;
}

.fl-profile-pro-brief__section-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.fl-profile-pro-brief__section-copy strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.fl-profile-pro-brief__section-copy small {
  color: var(--fl-profile-muted);
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__section.is-open .fl-profile-pro-brief__section-copy strong {
  color: #fff;
}

.fl-profile-pro-brief__section.is-open .fl-profile-pro-brief__section-copy small {
  color: rgba(255, 255, 255, .86);
}

.fl-profile-pro-brief__section h4 > button > i {
  color: var(--fl-profile-muted);
  font-size: 11px;
  transition: color .22s ease, transform .22s ease;
}

.fl-profile-pro-brief__section.is-open h4 > button > i {
  color: #fff;
  transform: rotate(180deg);
}

.fl-profile-pro-brief__section-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .24s ease, opacity .18s ease;
}

.fl-profile-pro-brief__section-content[hidden] {
  display: none;
}

.fl-profile-pro-brief__section.is-open .fl-profile-pro-brief__section-content {
  margin-top: 10px;
  max-height: 520px;
  opacity: 1;
}

.fl-profile-pro-brief__section-content-inner {
  background: var(--fl-profile-entity-soft);
  border: 1px solid color-mix(in srgb, var(--fl-profile-entity-action) 22%, #fff);
  border-radius: 15px;
  display: grid;
  gap: 7px;
  padding: 13px;
}

.fl-profile-pro-brief__section-content-inner > strong {
  color: var(--fl-profile-ink);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__section-content-inner p {
  color: var(--fl-profile-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.fl-profile-pro-brief__section-content-inner a {
  align-items: center;
  color: var(--fl-profile-entity-action-hover);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  justify-content: flex-start;
  min-height: 40px;
  text-decoration: none;
  width: max-content;
}

.fl-profile-pro-brief__section-content-inner a:hover,
.fl-profile-pro-brief__section-content-inner a:focus-visible {
  color: var(--fl-profile-entity-action);
  text-decoration: underline;
}

.fl-profile-pro-brief__cv-action {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fl-profile-entity-action);
  border-radius: 999px;
  color: var(--fl-profile-entity-action-hover);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 44px;
  padding: 3px 15px 3px 3px;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.fl-profile-pro-brief__cv-icon {
  background: var(--fl-profile-entity-action);
  color: #fff;
  height: 36px;
  width: 36px;
}

.fl-profile-pro-brief__cv-action:hover,
.fl-profile-pro-brief__cv-action:focus-visible {
  background: var(--fl-profile-entity-softer);
  color: var(--fl-profile-entity-action-hover);
  outline: none;
  text-decoration: none;
}

.fl-profile-pro-brief__cv-action:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fl-profile-entity-action) 30%, transparent);
}

@media (max-width: 991.98px) {
  .fl-profile-pro-home-brief-column {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .fl-profile-pro-home-rail {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .fl-profile-pro-brief-card {
    border-radius: 18px;
  }

  .fl-profile-pro-brief__hero {
    min-height: 158px;
  }

  .fl-profile-pro-brief__body {
    padding: 10px 14px 15px;
  }

  .fl-profile-pro-brief__spotlight {
    left: 14px;
    right: 14px;
  }
}
