/* My Network — shared page (Talent + Expert + Recruiter) */

.page-my-network {
  min-height: 100vh;
  background: #FFFFFF;
  font-family: 'Geist', system-ui, sans-serif;
  color: #111;
}

.mn-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* Hero */
.mn-hero { text-align: center; padding: 48px 16px 32px; }
.mn-hero-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #C4A559; margin-bottom: 16px;
}
.mn-hero h1 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 44px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 12px;
}
.mn-hero h1 i {
  font-style: normal;
  background: linear-gradient(135deg, #D4BC7A 0%, #C4A559 60%, #8a6a1f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mn-hero-sub {
  max-width: 620px; margin: 0 auto;
  font-size: 15px; color: #555; line-height: 1.55;
}

/* Stats */
.mn-stats {
  display: inline-flex; align-items: center; gap: 24px;
  margin-top: 28px; padding: 16px 26px;
  background: #fff;
  border: 1px solid rgba(184, 145, 42, 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(184, 145, 42, 0.18);
  flex-wrap: wrap; justify-content: center;
}
.mn-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mn-stat b {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #D4BC7A 0%, #C4A559 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mn-stat span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase; color: #888;
}
.mn-stat-sep { width: 1px; height: 24px; background: rgba(0, 0, 0, 0.08); }

/* Search */
.mn-search { position: relative; max-width: 720px; margin: 36px auto 16px; }
.mn-search input {
  width: 100%; padding: 14px 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px; background: #fff;
  font-family: inherit; font-size: 14px; color: #111;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.mn-search input:focus {
  border-color: #D4BC7A;
  box-shadow: 0 0 0 4px rgba(201, 165, 74, 0.12);
}
.mn-search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 14px; opacity: 0.55;
}
.mn-search-clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  border: 0; background: rgba(0, 0, 0, 0.06);
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 16px; cursor: pointer; color: #555; line-height: 1;
}

/* Controls (chips + sort) */
.mn-controls {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 28px;
}
.mn-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mn-chip {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1); background: #fff;
  font-family: inherit; font-size: 12px; font-weight: 600;
  color: #555; cursor: pointer; transition: all 0.2s;
}
.mn-chip:hover { border-color: #D4BC7A; color: #C4A559; }
.mn-chip.active {
  background: linear-gradient(180deg, #EFE2B8 0%, #E5D4A0 60%, #D4BC7A 100%);
  border-color: #C4A559; color: #2a1f00;
}
.mn-sort {
  padding: 8px 14px; border-radius: 999px;
  border: 1px dashed rgba(184, 145, 42, 0.4);
  background: transparent; color: #C4A559;
  font-family: inherit; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.mn-sort:hover { background: rgba(184, 145, 42, 0.06); }
.mn-sort.active {
  background: rgba(184, 145, 42, 0.1);
  border-style: solid;
}

/* Grid */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
}

/* Card */
.mn-card {
  position: relative; background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px; padding: 20px;
  cursor: pointer; outline: none;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.mn-card:hover, .mn-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(184, 145, 42, 0.35), 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 165, 74, 0.5);
}
.mn-card:hover .mn-arrow { transform: translateX(4px); }

/* Role badge */
.mn-role-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.7px;
  text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
.mn-role-badge--talent {
  background: rgba(52, 152, 219, 0.1); color: #1f6dab;
  border: 1px solid rgba(52, 152, 219, 0.25);
}
.mn-role-badge--expert {
  background: linear-gradient(180deg, #EFE2B8 0%, #E5D4A0 60%, #D4BC7A 100%);
  color: #2a1f00; border: 1px solid rgba(184, 145, 42, 0.4);
}
.mn-role-badge--recruiter {
  background: rgba(39, 174, 96, 0.1); color: #1e7e3c;
  border: 1px solid rgba(39, 174, 96, 0.25);
}

/* Card content */
.mn-card-head { display: flex; gap: 14px; align-items: flex-start; padding-right: 70px; }
.mn-avatar { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.mn-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mn-verified {
  position: absolute; bottom: -2px; right: -2px;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #D4BC7A 0%, #C4A559 100%);
  color: #fff; border: 2px solid #fff; border-radius: 50%;
  font-size: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.mn-id { min-width: 0; flex: 1; }
.mn-name { font-size: 16px; font-weight: 700; margin: 0 0 2px; letter-spacing: -0.01em; }
.mn-title { font-size: 12px; color: #C4A559; font-weight: 600; margin-bottom: 2px; }
.mn-org { font-size: 12px; color: #777; }

.mn-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #666; flex-wrap: wrap;
}
.mn-flag { font-size: 13px; }
.mn-meta-dot { color: #ccc; }

.mn-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mn-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(184, 145, 42, 0.08); color: #8a6a1f;
}

/* Mutual connections row */
.mn-mutuals-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mn-mutuals-avatars { display: flex; flex-shrink: 0; }
.mn-mutual-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  object-fit: cover; border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.mn-mutual-avatar:first-child { margin-left: 0; }
.mn-mutuals-text { font-size: 11px; color: #555; line-height: 1.35; }
.mn-mutuals-text strong { color: #111; font-weight: 600; }

.mn-footer {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.mn-mutual-count { font-size: 12px; color: #555; }
.mn-mutual-num { font-weight: 700; color: #C4A559; }
.mn-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: #9A7A28;
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: none; padding: 6px 4px;
  font-family: inherit; cursor: pointer;
  transition: color 0.15s ease;
}
.mn-cta:hover { color: #1a1208; }
.mn-cta:hover .mn-arrow { transform: translateX(3px); }
.mn-arrow { display: inline-block; transition: transform 0.2s ease; }
.mn-footer-actions {
  display: inline-flex; align-items: center; gap: 12px;
}
.mn-btn-connect {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(196,165,89,0.4);
  background: linear-gradient(135deg,#C4A559 0%,#D4BC7A 40%,#E5D4A0 70%,#EFE2B8 100%);
  color: #1a1208;
  font-family: inherit;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 1px 4px rgba(196,165,89,0.18);
  white-space: nowrap;
}
.mn-btn-connect:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 3px 8px rgba(196,165,89,0.28);
}
.mn-btn-connect.is-pending {
  background: #f0eee9;
  color: #6b5d3e;
  border-color: rgba(0,0,0,0.08);
  box-shadow: none;
  cursor: not-allowed;
}
.mn-btn-connect.is-pending:hover {
  transform: none;
  box-shadow: none;
}

/* Empty */
.mn-empty { text-align: center; padding: 60px 20px; color: #555; }
.mn-empty-icon { font-size: 38px; margin-bottom: 12px; opacity: 0.5; }
.mn-empty h3 { font-size: 18px; margin: 0 0 6px; }
.mn-empty p { font-size: 13px; margin: 0 0 18px; color: #777; }

.mn-btn-gold {
  padding: 12px 22px; border: 0; border-radius: 999px;
  background: linear-gradient(180deg, #EFE2B8 0%, #E5D4A0 30%, #D4BC7A 70%, #C4A559 100%);
  color: #2a1f00; font-family: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 6px 16px -8px rgba(184, 145, 42, 0.45);
  transition: transform 0.2s;
}
.mn-btn-gold:hover { transform: translateY(-1px); }

.mn-btn-ghost {
  padding: 12px 22px;
  border: 1px solid rgba(184, 145, 42, 0.4);
  border-radius: 999px; background: #fff; color: #C4A559;
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.mn-btn-ghost:hover { background: rgba(184, 145, 42, 0.06); }

/* Discover */
.mn-discover {
  margin-top: 48px; padding: 32px;
  background: linear-gradient(135deg, #fff 0%, #FAF1D8 100%);
  border: 1px solid rgba(184, 145, 42, 0.2);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.mn-discover-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #C4A559; margin-bottom: 6px;
}
.mn-discover h2 {
  font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.02em;
}
.mn-discover p {
  font-size: 13px; color: #555; max-width: 480px; margin: 0; line-height: 1.5;
}
.mn-discover-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Footer */
.mn-footer {
  text-align: center; padding: 32px 16px;
  font-size: 12px; color: #888;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 640px) {
  .mn-hero h1 { font-size: 32px; }
  .mn-stats { gap: 14px; padding: 14px 16px; }
  .mn-stat b { font-size: 18px; }
  .mn-grid { grid-template-columns: 1fr; }
  .mn-discover { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* === Tabs === */
.mn-tabs {
  display: flex;
  gap: 4px;
  margin: 24px auto 16px;
  max-width: 1180px;
  padding: 0 8px;
  border-bottom: 1px solid #ECECEC;
  flex-wrap: wrap;
}
.mn-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #6B6660;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s;
  white-space: nowrap;
}
.mn-tab:hover { color: #1a1a1a; }
.mn-tab.active {
  color: #9E7E3F;
  border-bottom-color: #C4A559;
  font-weight: 700;
}

.mn-tab-content { padding: 8px 0 40px; }

/* Suggestions grid (Discover tab) */
.mn-suggest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 8px 8px 32px;
}
.mn-suggest-card {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all .15s;
}
.mn-suggest-card:hover { border-color: #C4A559; box-shadow: 0 6px 18px rgba(0,0,0,.05); }
.mn-suggest-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
  border: 2px solid #FAFAFA;
}
.mn-suggest-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.mn-suggest-title { font-size: 12px; color: #6B6660; }
.mn-suggest-reason {
  font-size: 11px;
  color: #9E7E3F;
  font-weight: 600;
  margin: 4px 0 12px;
}

/* Invitations list (Received & Sent tabs) */
.mn-inv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
}
.mn-inv-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all .15s;
}
.mn-inv-row:hover { border-color: #C4A559; box-shadow: 0 4px 14px rgba(0,0,0,.04); }
.mn-inv-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.mn-inv-body { flex: 1; min-width: 0; }
.mn-inv-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.mn-inv-name { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.mn-inv-time { font-size: 11px; color: #A09A94; flex-shrink: 0; }
.mn-inv-title { font-size: 13px; color: #6B6660; margin-top: 2px; }
.mn-inv-mutual {
  font-size: 11.5px;
  color: #9E7E3F;
  font-weight: 600;
  margin-top: 6px;
}
.mn-inv-message {
  font-size: 12.5px;
  color: #4a4a4a;
  font-style: italic;
  margin-top: 8px;
  padding: 8px 12px;
  background: #FAF8F3;
  border-left: 2px solid #D4BC7A;
  border-radius: 6px;
  line-height: 1.45;
}
.mn-inv-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: center;
}
.mn-btn-sm {
  padding: 7px 16px !important;
  font-size: 12px !important;
}

@media (max-width: 640px) {
  .mn-inv-row { flex-direction: column; gap: 12px; }
  .mn-inv-actions { width: 100%; justify-content: flex-end; align-self: stretch; }
}

/* ── Invitations reçues — teaser (between search and chips) ── */
.mn-inv-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px auto 4px;
  max-width: 720px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #FFFDF7 0%, #FAF4E4 100%);
  border: 1px solid rgba(196, 165, 89, 0.35);
  border-radius: 14px;
  box-shadow: 0 2px 8px -3px rgba(196, 165, 89, 0.18);
  animation: mn-inv-teaser-in 0.4s ease-out;
}
@keyframes mn-inv-teaser-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.mn-inv-teaser-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mn-inv-teaser-avatars {
  display: flex;
  flex-shrink: 0;
}
.mn-inv-teaser-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.mn-inv-teaser-avatars img:first-child { margin-left: 0; }
.mn-inv-teaser-text { min-width: 0; }
.mn-inv-teaser-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2a1f00;
  letter-spacing: -0.01em;
}
.mn-inv-teaser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E11D2E;
  box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.5);
  animation: mn-inv-pulse 1.8s ease-in-out infinite;
}
@keyframes mn-inv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(225, 29, 46, 0); }
}
.mn-inv-teaser-sub {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 12px;
  color: #6b5a3a;
  margin-top: 2px;
  line-height: 1.35;
}
.mn-inv-teaser-sub strong {
  color: #2a1f00;
  font-weight: 600;
}
.mn-inv-teaser-cta {
  flex-shrink: 0;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #2a1f00;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #C4A559 0%, #D4BC7A 40%, #E5D4A0 70%, #EFE2B8 100%);
  border: 1px solid rgba(196, 165, 89, 0.4);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}
.mn-inv-teaser-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -4px rgba(196, 165, 89, 0.45);
  filter: brightness(1.04);
}
@media (max-width: 640px) {
  .mn-inv-teaser { flex-direction: column; align-items: stretch; }
  .mn-inv-teaser-cta { align-self: flex-end; }
}

/* ──────────────────────────────────────────────────────────
 * Ambassadeurs Tastellers — section premium distincte
 * ────────────────────────────────────────────────────────── */
.mn-amb {
  margin: 21px 0 24px;
  padding: 21px;
  border-radius: 20px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 204, 110, 0.10) 0%, transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(189, 151, 51, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #fffdf6 0%, #fffbef 100%);
  border: 1px solid rgba(184, 145, 42, 0.22);
  box-shadow: 0 10px 30px -18px rgba(184, 145, 42, 0.35);
  position: relative;
  overflow: hidden;
}
.mn-amb::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(99deg, rgba(189,151,51,0) 0%, rgba(232,204,110,0.18) 50%, rgba(189,151,51,0) 100%);
  mix-blend-mode: overlay;
}
.mn-amb-head { margin-bottom: 14px; position: relative; }
.mn-amb-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase;
  background: linear-gradient(99deg, #BD9733 0%, #E5D29F 25%, #E8CC6E 50%, #E5D29F 75%, #FFF4C2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.mn-amb-title {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 4px; color: #111;
}
.mn-amb-sub { font-size: 13px; color: #555; margin: 0; max-width: 620px; }

.mn-amb-carousel-wrap { position: relative; }
.mn-amb-grid {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 2px;
  position: relative;
}
.mn-amb-grid::-webkit-scrollbar { display: none; }
.mn-amb-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184, 145, 42, 0.30);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 10px;
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.mn-amb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 145, 42, 0.55);
  box-shadow: 0 14px 30px -16px rgba(184, 145, 42, 0.45);
}
.mn-amb-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 9px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: #000;
  background: linear-gradient(99deg, #BD9733 0%, #E5D29F 25%, #E8CC6E 50%, #E5D29F 75%, #FFF4C2 100%);
  box-shadow: 0 4px 12px -4px rgba(189, 151, 51, 0.55);
}
.mn-amb-preview-btn {
  position: absolute; bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  color: #18140C;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.18s ease;
  z-index: 2;
}
.mn-amb-preview-btn:hover {
  background: #18140C; color: #E8CC6E; border-color: #18140C;
}
.mn-amb-portrait {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(99deg, #BD9733 0%, #E8CC6E 50%, #FFF4C2 100%) border-box;
  flex-shrink: 0;
}
.mn-amb-portrait img { width: 100%; height: 100%; object-fit: cover; }
.mn-amb-body { display: flex; flex-direction: column; gap: 4px; }
.mn-amb-name {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0; color: #111;
}
.mn-amb-role {
  font-size: 12px; font-weight: 600; color: #9E7E3F;
}
.mn-amb-maison { font-size: 12px; color: #555; font-style: italic; }
.mn-amb-meta { font-size: 11px; color: #888; margin-top: 2px; }
.mn-amb-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.mn-amb-tag {
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(189, 151, 51, 0.08);
  border: 1px solid rgba(189, 151, 51, 0.22);
  color: #8a6a1f;
}
.mn-amb-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 9px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  color: #000; cursor: pointer; border: none;
  background: linear-gradient(99deg, #BD9733 0%, #E5D29F 25%, #E8CC6E 50%, #E5D29F 75%, #FFF4C2 100%);
  box-shadow: 0 6px 16px -6px rgba(189, 151, 51, 0.55);
  transition: background 0.2s, color 0.2s;
}
.mn-amb-cta:hover { background: #000; color: #E5D29F; }

.mn-amb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(184, 145, 42, 0.45);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.18);
  color: #9E7E3F;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.mn-amb-arrow:hover:not(:disabled) {
  background: #000; color: #E8CC6E; border-color: #000;
}
.mn-amb-arrow:disabled { opacity: 0; pointer-events: none; }
.mn-amb-arrow.left { left: -14px; }
.mn-amb-arrow.right { right: -14px; }

@media (max-width: 640px) {
  .mn-amb { padding: 14px; border-radius: 16px; }
  .mn-amb-card { padding: 12px; flex: 0 0 84%; }
  .mn-amb-title { font-size: 20px; }
  .mn-amb-badge { top: 10px; right: 10px; padding: 4px 9px; font-size: 8px; }
  .mn-amb-arrow { display: none; }
}
