/**
 * ShadiMarkaz - Bureau zone: Facebook-style bureau profile (dashboard + public), public
 * /bureaus directory, invite/request cards. Palette matches the emails/plans page:
 * maroon #89216b -> crimson #da4453, gold #9c8409 / #c9a875, cream #fbf8ed, brown #66451c.
 */
:root {
  --bz-maroon: #89216b;
  --bz-crimson: #d74354;
  --bz-rose: #da4453;
  --bz-gold: #9c8409;
  --bz-gold-soft: #f3e7b9;
  --bz-cream: #fbf8ed;
  --bz-cream-2: #fdfaf3;
  --bz-brown: #66451c;
  --bz-ink: #3b3226;
  --bz-muted: #8a7a6a;
  --bz-line: #f0e6c8;
  --bz-green: #2e9e5b;
  --bz-radius: 18px;
  --bz-shadow: 0 10px 30px rgba(102, 69, 28, 0.10);
  --bz-shadow-hover: 0 18px 40px rgba(137, 33, 107, 0.18);
  --bz-serif: Georgia, "Times New Roman", serif;
}

/* ---------- Shared hero (cover + avatar + identity), Facebook-style ---------- */
.sm-bz-hero { background: #fff; border-radius: var(--bz-radius); box-shadow: var(--bz-shadow); overflow: hidden; margin-bottom: 24px; border: 1px solid var(--bz-line); }
.sm-bz-cover { position: relative; height: 260px; background: linear-gradient(120deg, var(--bz-maroon) 0%, var(--bz-rose) 60%, #f0a04b 120%); background-size: cover; background-position: center; }
.sm-bz-cover.has-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,.28)); }
.sm-bz-cover:not(.has-image)::before { content: "\2766  \2764  \2766"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 64px; letter-spacing: 28px; color: rgba(255,255,255,.14); }
.sm-bz-cover-btn, .sm-bz-avatar-btn { position: absolute; z-index: 3; border: 0; cursor: pointer; font-weight: 600; transition: transform .15s ease, background .15s ease; }
.sm-bz-cover-btn { right: 18px; bottom: 16px; background: rgba(255,255,255,.92); color: var(--bz-brown); padding: 8px 16px; border-radius: 999px; font-size: 13px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.sm-bz-cover-btn:hover { transform: translateY(-1px); background: #fff; }
.sm-bz-headrow { display: flex; align-items: flex-end; gap: 22px; padding: 0 28px 22px; margin-top: -64px; position: relative; z-index: 2; flex-wrap: wrap; }
.sm-bz-avatar { position: relative; flex: 0 0 auto; width: 148px; height: 148px; border-radius: 50%; border: 6px solid #fff; background: linear-gradient(135deg, var(--bz-maroon), var(--bz-rose)); box-shadow: 0 8px 24px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; color: #fff; font: 700 56px/1 var(--bz-serif); }
.sm-bz-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.sm-bz-avatar-btn { right: 2px; bottom: 6px; width: 38px; height: 38px; border-radius: 50%; background: var(--bz-cream); color: var(--bz-maroon); box-shadow: 0 3px 10px rgba(0,0,0,.25); font-size: 16px; }
.sm-bz-avatar-btn:hover { transform: scale(1.08); background: #fff; }
.sm-bz-ident { flex: 1 1 260px; min-width: 0; padding-bottom: 6px; }
.sm-bz-ident h1 { margin: 0 0 4px; font: 700 30px/1.2 var(--bz-serif); color: var(--bz-brown); }
.sm-bz-ident .sm-bz-sub { margin: 0; color: var(--bz-muted); font-size: 15px; }
.sm-bz-ident .sm-bz-sub i { color: var(--bz-crimson); margin-right: 4px; }
.sm-bz-verified { display: inline-flex; align-items: center; gap: 5px; vertical-align: middle; margin-left: 8px; padding: 3px 10px; border-radius: 999px; background: #e7f6ed; color: var(--bz-green); font-weight: 600; font-size: 12px; line-height: 1.4; }
.sm-bz-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 8px; }
.sm-bz-stats { display: flex; border-top: 1px solid var(--bz-line); background: var(--bz-cream-2); }
.sm-bz-stat { flex: 1; text-align: center; padding: 16px 8px; border-right: 1px solid var(--bz-line); }
.sm-bz-stat:last-child { border-right: 0; }
.sm-bz-stat b { display: block; font: 700 24px/1.1 var(--bz-serif); color: var(--bz-maroon); }
.sm-bz-stat span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--bz-muted); }

/* ---------- Buttons ---------- */
.sm-bz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; border-radius: 999px; border: 2px solid transparent; font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer; transition: all .18s ease; line-height: 1.2; }
.sm-bz-btn-primary { background: linear-gradient(135deg, var(--bz-maroon), var(--bz-crimson)); color: #fff; box-shadow: 0 6px 16px rgba(215,67,84,.35); }
.sm-bz-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(215,67,84,.45); }
.sm-bz-btn-ghost { background: #fff; color: var(--bz-crimson); border-color: var(--bz-crimson); }
.sm-bz-btn-ghost:hover { background: var(--bz-crimson); color: #fff; }
.sm-bz-btn-success { background: var(--bz-green); color: #fff; }
.sm-bz-btn-success:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }
.sm-bz-btn-sm { padding: 7px 16px; font-size: 13px; }
.sm-bz-btn[disabled], .sm-bz-btn.is-disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Cards / panels ---------- */
.sm-bz-card { background: #fff; border-radius: var(--bz-radius); border: 1px solid var(--bz-line); box-shadow: var(--bz-shadow); padding: 24px 26px; margin-bottom: 24px; }
.sm-bz-card h2 { margin: 0 0 14px; font: 700 20px/1.3 var(--bz-serif); color: var(--bz-brown); }
.sm-bz-card h2 i { color: var(--bz-crimson); margin-right: 8px; }
.sm-bz-orn { text-align: center; color: var(--bz-gold); letter-spacing: 10px; margin: 6px 0 14px; font-size: 14px; }
.sm-bz-infolist { list-style: none; margin: 0; padding: 0; }
.sm-bz-infolist li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--bz-line); align-items: flex-start; }
.sm-bz-infolist li:last-child { border-bottom: 0; }
.sm-bz-infolist .ic { flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--bz-gold-soft); color: var(--bz-maroon); display: flex; align-items: center; justify-content: center; }
.sm-bz-infolist small { display: block; color: var(--bz-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.sm-bz-infolist a { color: var(--bz-crimson); text-decoration: none; word-break: break-word; }
.sm-bz-about { color: var(--bz-ink); line-height: 1.8; white-space: pre-line; }

/* ---------- Tabs (dashboard) ---------- */
.sm-bz-tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--bz-line); margin-bottom: 18px; flex-wrap: wrap; }
.sm-bz-tab { background: none; border: 0; padding: 10px 18px; font-weight: 700; color: var(--bz-muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.sm-bz-tab:hover { color: var(--bz-maroon); }
.sm-bz-tab.act { color: var(--bz-crimson); border-bottom-color: var(--bz-crimson); }
.sm-bz-badge { display: inline-block; min-width: 20px; padding: 1px 7px; margin-left: 6px; border-radius: 999px; background: var(--bz-crimson); color: #fff; font-size: 11px; line-height: 18px; text-align: center; }

/* ---------- Invite search + autocomplete ---------- */
.sm-bz-search { position: relative; }
.sm-bz-search input { width: 100%; padding: 14px 18px 14px 46px; border: 2px solid var(--bz-line); border-radius: 999px; font-size: 15px; background: var(--bz-cream-2); transition: border-color .15s, box-shadow .15s; }
.sm-bz-search input:focus { outline: 0; border-color: var(--bz-crimson); box-shadow: 0 0 0 4px rgba(215,67,84,.12); background: #fff; }
.sm-bz-search > i { position: absolute; left: 18px; top: 17px; color: var(--bz-crimson); }
.sm-bz-suggest { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--bz-line); border-radius: 16px; box-shadow: var(--bz-shadow-hover); overflow: hidden; display: none; max-height: 380px; overflow-y: auto; }
.sm-bz-suggest.open { display: block; }
.sm-bz-sg { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; border-bottom: 1px solid #f7f1dc; }
.sm-bz-sg:last-child { border-bottom: 0; }
.sm-bz-sg:hover, .sm-bz-sg.active { background: var(--bz-cream); }
.sm-bz-sg.is-off { opacity: .55; cursor: not-allowed; }
.sm-bz-sg img, .sm-bz-mini { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 44px; background: var(--bz-gold-soft); }
.sm-bz-mini { display: flex; align-items: center; justify-content: center; color: var(--bz-maroon); font-weight: 700; }
.sm-bz-sg .nm { font-weight: 700; color: var(--bz-brown); }
.sm-bz-sg .mt { font-size: 12px; color: var(--bz-muted); }
.sm-bz-tag { margin-left: auto; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--bz-gold-soft); color: var(--bz-gold); white-space: nowrap; }
.sm-bz-tag.ok { background: #e7f6ed; color: var(--bz-green); }
.sm-bz-picked { display: none; margin-top: 14px; padding: 16px; border-radius: 16px; background: var(--bz-cream); border: 1px dashed var(--bz-gold); }
.sm-bz-picked.open { display: block; }
.sm-bz-picked textarea { width: 100%; border: 2px solid var(--bz-line); border-radius: 12px; padding: 10px 14px; resize: vertical; min-height: 70px; }

/* ---------- Link rows (invitations / requests) ---------- */
.sm-bz-linklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sm-bz-link { display: flex; gap: 16px; align-items: center; padding: 16px 18px; border: 1px solid var(--bz-line); border-radius: 16px; background: var(--bz-cream-2); flex-wrap: wrap; transition: box-shadow .18s; }
.sm-bz-link:hover { box-shadow: var(--bz-shadow); }
.sm-bz-link .who { flex: 1 1 240px; min-width: 0; }
.sm-bz-link .who b { color: var(--bz-brown); font-size: 16px; }
.sm-bz-link .who small { display: block; color: var(--bz-muted); }
.sm-bz-link .who q { display: block; margin-top: 6px; color: var(--bz-ink); font-style: italic; font-size: 13px; quotes: "\201C" "\201D"; }
.sm-bz-link .act { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.sm-bz-status { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.sm-bz-status.Pending { background: var(--bz-gold-soft); color: var(--bz-gold); }
.sm-bz-status.Accepted { background: #e7f6ed; color: var(--bz-green); }
.sm-bz-status.Declined, .sm-bz-status.Cancelled, .sm-bz-status.Expired { background: #fbe9ec; color: #b3263f; }
.sm-bz-empty { text-align: center; padding: 34px 10px; color: var(--bz-muted); }
.sm-bz-empty i { font-size: 38px; color: var(--bz-gold); display: block; margin-bottom: 10px; }

/* Invitation "letter" on the individual's Invitations tab / decision page */
.sm-bz-letter { border: 1px solid var(--bz-line); border-radius: var(--bz-radius); background: #fff; overflow: hidden; box-shadow: var(--bz-shadow); margin-bottom: 22px; }
.sm-bz-letter-head { display: flex; gap: 16px; align-items: center; padding: 20px 24px; background: linear-gradient(120deg, var(--bz-maroon), var(--bz-rose)); color: #fff; flex-wrap: wrap; }
.sm-bz-letter-head img, .sm-bz-letter-head .sm-bz-mini { width: 68px; height: 68px; flex: 0 0 68px; border: 3px solid #fff4bb; }
.sm-bz-letter-head h3 { margin: 0; font: 700 22px/1.2 var(--bz-serif); color: #fff; }
.sm-bz-letter-head a { color: #fff4bb; font-size: 13px; }
.sm-bz-letter-body { padding: 20px 24px; }
.sm-bz-letter-body dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 14px; margin: 0 0 14px; }
.sm-bz-letter-body dt { color: var(--bz-muted); font-weight: 600; font-size: 13px; }
.sm-bz-letter-body dd { margin: 0; color: var(--bz-ink); word-break: break-word; }
.sm-bz-warn { padding: 12px 16px; border-radius: 12px; background: #fff4bb; border-left: 4px solid var(--bz-gold); color: #7a6206; font-size: 13px; margin-bottom: 16px; }
.sm-bz-letter-foot { display: flex; gap: 10px; flex-wrap: wrap; padding: 16px 24px; background: var(--bz-cream-2); border-top: 1px solid var(--bz-line); align-items: center; }

/* ---------- Public directory ---------- */
.sm-bd-hero { position: relative; background: linear-gradient(120deg, var(--bz-maroon), var(--bz-rose) 70%, #f0a04b 130%); color: #fff; padding: 115px 0 96px; text-align: center; overflow: hidden; }
.sm-bd-hero::before { content: "\2766"; position: absolute; font-size: 320px; line-height: 1; right: -40px; top: -60px; color: rgba(255,255,255,.08); }
.sm-bd-hero::after { content: "\2764"; position: absolute; font-size: 200px; line-height: 1; left: -30px; bottom: -70px; color: rgba(255,255,255,.07); }
.sm-bd-hero h1 { font: 700 42px/1.2 var(--bz-serif); margin: 0 0 12px; color: #fff; position: relative; }
.sm-bd-hero p { max-width: 640px; margin: 0 auto; font-size: 17px; color: #ffe9ee; position: relative; }
.sm-bd-eyebrow { display: inline-block; padding: 5px 16px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; position: relative; }
.sm-bd-wrap { background: var(--bz-cream); padding-bottom: 60px; }
.sm-bd-filters { background: #fff; border-radius: var(--bz-radius); box-shadow: var(--bz-shadow-hover); border: 1px solid var(--bz-line); padding: 22px 24px; margin-top: -56px; position: relative; z-index: 5; }
.sm-bd-filters .row { row-gap: 14px; }
.sm-bd-filters label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--bz-muted); font-weight: 700; margin-bottom: 4px; display: block; }
.sm-bd-filters .form-control, .sm-bd-filters .form-select { border: 2px solid var(--bz-line); border-radius: 12px; padding: 10px 14px; height: auto; background-color: var(--bz-cream-2); }
.sm-bd-filters .form-control:focus, .sm-bd-filters .form-select:focus { border-color: var(--bz-crimson); box-shadow: 0 0 0 4px rgba(215,67,84,.12); }
.sm-bd-bar { display: flex; justify-content: space-between; align-items: center; margin: 30px 0 18px; flex-wrap: wrap; gap: 12px; }
.sm-bd-bar h2 { margin: 0; font: 700 22px/1.3 var(--bz-serif); color: var(--bz-brown); }
.sm-bd-bar .sub { color: var(--bz-muted); font-size: 14px; }
.sm-bd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.sm-bd-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--bz-radius); overflow: hidden; border: 1px solid var(--bz-line); box-shadow: var(--bz-shadow); text-decoration: none; color: inherit; transition: transform .22s ease, box-shadow .22s ease; }
.sm-bd-card:hover { transform: translateY(-6px); box-shadow: var(--bz-shadow-hover); color: inherit; }
.sm-bd-card .cv { position: relative; height: 112px; background: linear-gradient(120deg, var(--bz-maroon), var(--bz-rose)); background-size: cover; background-position: center; }
.sm-bd-card .av { position: absolute; left: 50%; bottom: -38px; transform: translateX(-50%); width: 84px; height: 84px; border-radius: 50%; border: 5px solid #fff; background: linear-gradient(135deg, var(--bz-maroon), var(--bz-rose)); color: #fff; font: 700 32px/74px var(--bz-serif); text-align: center; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.sm-bd-card .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sm-bd-card .bd { padding: 50px 20px 18px; text-align: center; flex: 1; }
.sm-bd-card h3 { margin: 0 0 4px; font: 700 19px/1.3 var(--bz-serif); color: var(--bz-brown); }
.sm-bd-card .loc { color: var(--bz-muted); font-size: 13px; margin-bottom: 10px; }
.sm-bd-card .loc i { color: var(--bz-crimson); margin-right: 4px; }
.sm-bd-card .ab { color: var(--bz-ink); font-size: 13px; line-height: 1.6; min-height: 42px; }
.sm-bd-card .ft { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-top: 1px solid var(--bz-line); background: var(--bz-cream-2); font-size: 13px; }
.sm-bd-card .ft b { color: var(--bz-maroon); font-family: var(--bz-serif); font-size: 18px; }
.sm-bd-card .ft .go { color: var(--bz-crimson); font-weight: 700; }
.sm-bd-empty { text-align: center; background: #fff; border-radius: var(--bz-radius); padding: 60px 20px; border: 1px dashed var(--bz-gold); color: var(--bz-muted); }
.sm-bd-empty i { font-size: 48px; color: var(--bz-gold); display: block; margin-bottom: 12px; }
.sm-bd-pager { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 34px; }
.sm-bd-pager a, .sm-bd-pager span { min-width: 42px; height: 42px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--bz-line); background: #fff; color: var(--bz-brown); font-weight: 700; text-decoration: none; transition: all .15s; }
.sm-bd-pager a:hover { border-color: var(--bz-crimson); color: var(--bz-crimson); }
.sm-bd-pager .cur { background: linear-gradient(135deg, var(--bz-maroon), var(--bz-crimson)); color: #fff; border-color: transparent; }
.sm-bd-pager .dis { opacity: .45; pointer-events: none; }

/* Public detail page */
.sm-bp-wrap { background: var(--bz-cream); padding: 30px 0 60px; }
.sm-bp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.sm-bp-side { position: sticky; top: 90px; }
.sm-bp-crumbs { font-size: 13px; color: var(--bz-muted); margin-bottom: 14px; }
.sm-bp-crumbs a { color: var(--bz-crimson); text-decoration: none; }
.sm-bp-state { text-align: center; padding: 6px 0 2px; }
.sm-bp-state .lead-ic { font-size: 30px; color: var(--bz-crimson); }
.sm-bp-req textarea { width: 100%; border: 2px solid var(--bz-line); border-radius: 12px; padding: 10px 14px; min-height: 84px; resize: vertical; margin: 10px 0; }

/* Profile edit form (dashboard) */
.sm-bz-form .row { row-gap: 14px; }
.sm-bz-form label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--bz-muted); font-weight: 700; margin-bottom: 4px; display: block; }
.sm-bz-form .form-control, .sm-bz-form .form-select { border: 2px solid var(--bz-line); border-radius: 12px; padding: 10px 14px; height: auto; background-color: var(--bz-cream-2); }
.sm-bz-form .form-control:focus, .sm-bz-form .form-select:focus { border-color: var(--bz-crimson); box-shadow: 0 0 0 4px rgba(215,67,84,.12); background: #fff; }
.sm-bz-uploading { opacity: .55; pointer-events: none; }

@media (max-width: 991px) {
  .sm-bp-layout { grid-template-columns: 1fr; }
  .sm-bp-side { position: static; }
}
@media (max-width: 767px) {
  .sm-bz-cover { height: 170px; }
  .sm-bz-headrow { padding: 0 16px 18px; margin-top: -54px; justify-content: center; text-align: center; }
  .sm-bz-avatar { width: 116px; height: 116px; font-size: 44px; }
  .sm-bz-ident h1 { font-size: 24px; }
  .sm-bz-actions { justify-content: center; width: 100%; }
  .sm-bd-hero { padding: 44px 0 84px; }
  .sm-bd-hero h1 { font-size: 30px; }
  .sm-bz-letter-body dl { grid-template-columns: 1fr; }
}

/* ---- /Profiles directory (sm-pf-*) ---- */
.sm-bz-btn-gold { background: linear-gradient(135deg, #f3e7b9, #e6c65c); color: var(--bz-brown); box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.sm-pf-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.sm-pf-card { position: relative; background: #fff; border: 1px solid var(--bz-line); border-radius: var(--bz-radius); box-shadow: var(--bz-shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.sm-pf-card:hover { transform: translateY(-4px); box-shadow: var(--bz-shadow-hover); }
.sm-pf-card .ph { position: relative; display: block; aspect-ratio: 4 / 4.6; background: linear-gradient(135deg, var(--bz-maroon), var(--bz-rose)); overflow: hidden; }
.sm-pf-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.sm-pf-card:hover .ph img { transform: scale(1.05); }
.sm-pf-card .ph .ini { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font: 700 64px/1 var(--bz-serif); }
.sm-pf-card .ph .vb { position: absolute; left: 10px; bottom: 10px; background: rgba(255,255,255,.95); color: var(--bz-green); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.sm-pf-fav { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--bz-crimson); font-size: 17px; box-shadow: 0 3px 10px rgba(0,0,0,.25); cursor: pointer; transition: transform .15s; }
.sm-pf-fav:hover { transform: scale(1.12); }
.sm-pf-fav.on { background: var(--bz-crimson); color: #fff; }
.sm-pf-card .bd { padding: 14px 16px 6px; flex: 1; }
.sm-pf-card .bd h3 { margin: 0 0 2px; font: 700 18px/1.3 var(--bz-serif); }
.sm-pf-card .bd h3 a { color: var(--bz-brown); text-decoration: none; }
.sm-pf-card .bd h3 a:hover { color: var(--bz-maroon); }
.sm-pf-card .meta { color: var(--bz-muted); font-size: 14px; margin-bottom: 8px; }
.sm-pf-card .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sm-pf-card .chips span { background: var(--bz-cream); border: 1px solid var(--bz-line); border-radius: 999px; padding: 2px 10px; font-size: 12px; color: var(--bz-brown); }
.sm-pf-card .chips i { color: var(--bz-crimson); margin-right: 5px; }
.sm-pf-card .ft { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--bz-line); background: var(--bz-cream-2); font-size: 13px; }
.sm-pf-card .ft .go { color: var(--bz-maroon); font-weight: 700; text-decoration: none; }
.sm-pf-card .ft .lg { color: var(--bz-muted); text-decoration: none; }
.sm-pf-card .ft .lg:hover { color: var(--bz-crimson); }
