/*
 * Ported from reference/barrister-profile-editor.html (the prototype).
 * Base styles, buttons, badges, the app shell, the directory screen, and
 * the profile editor's sections (photo/rich-text/boxes/testimonials) plus
 * the Save confirmation modal (Phase 7). The live preview pane is Phase 8.
 */
:root {
  --navy: #1B1B47; --navy-700: #272760; --navy-50: #EEEEF6;
  --gold: #E3B23C; --gold-deep: #C8961F; --gold-soft: #FBF1D6;
  --ink: #191926; --slate: #62627A; --muted: #8E8EA3;
  --bg: #F3F3F7; --surface: #FFFFFF; --line: #E5E5EE; --line-2: #EFEFF4;
  --green: #15875A; --green-soft: #E2F3EA;
  --amber: #B5760E; --amber-soft: #FBEFD8;
  --red: #C0392B; --red-soft: #FBE9E7;
  --r-lg: 14px; --r-md: 10px; --r-sm: 8px;
  --sh-1: 0 1px 2px rgba(20, 20, 50, .06), 0 1px 3px rgba(20, 20, 50, .04);
  --sh-2: 0 8px 28px rgba(20, 20, 50, .12);
  --sh-pop: 0 16px 48px rgba(20, 20, 50, .22);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--bg);
  font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 14px; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px;
  border-radius: var(--r-sm); font-weight: 600; font-size: 13.5px; transition: .15s; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--muted); background: #fafafe; }
.btn-sm { height: 32px; padding: 0 12px; font-size: 12.5px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 9px;
  border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .01em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge-live { background: var(--green-soft); color: var(--green); }
.badge-live .dot { background: var(--green); }
.badge-off { background: #EEEEF2; color: var(--muted); }
.badge-off .dot { background: var(--muted); }
.badge-draft { background: var(--amber-soft); color: var(--amber); }
.badge-draft .dot { background: var(--amber); }
.badge-kc { background: var(--navy); color: var(--gold); }

/* ================= APP SHELL ================= */
#app { display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  height: 60px; background: var(--navy); display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; position: sticky; top: 0; z-index: 40;
}
.topbar .left { display: flex; align-items: center; gap: 13px; }
.tb-divider { width: 1px; height: 26px; background: rgba(255, 255, 255, .18); }
.tb-app { color: #fff; font-weight: 600; font-size: 14.5px; }
.tb-app span { color: var(--gold); }
.topbar .right { display: flex; align-items: center; gap: 14px; }
.tb-user { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 13px; }
.tb-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
}
.tb-logout {
  color: rgba(255, 255, 255, .6); font-size: 12px; font-weight: 500; border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 12px; margin-left: 2px;
}
.tb-logout:hover { color: #fff; }
.main { flex: 1; width: 100%; }

/* ================= DIRECTORY ================= */
.dir { max-width: 1180px; margin: 0 auto; padding: 32px 24px 60px; }
.dir-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dir-head h1 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.dir-head .sub { color: var(--slate); margin-top: 3px; font-size: 13.5px; }
.dir-tools { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.search input {
  width: 100%; height: 42px; padding: 0 14px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--surface);
}
.search input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.seg { display: inline-flex; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 3px; }
.seg a { height: 32px; padding: 0 13px; border-radius: 6px; font-size: 12.5px; font-weight: 600; color: var(--slate); display: inline-flex; align-items: center; }
.seg a.on { background: var(--navy); color: #fff; }
.dir-count { color: var(--muted); font-size: 12.5px; font-weight: 600; }

.tbl { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.tbl-row { display: grid; grid-template-columns: 1fr 150px 130px 200px; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line-2); }
.tbl-row:last-child { border-bottom: none; }
.tbl-head { background: #FAFAFD; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 11px; padding-bottom: 11px; }
.tbl-row.body:hover { background: #FAFAFD; }
.cell-name { display: flex; align-items: center; gap: 13px; min-width: 0; }
.avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--navy-50); flex: none; border: 1px solid var(--line); }
.avatar.ph { display: grid; place-items: center; color: var(--navy); font-weight: 700; font-size: 14px; }
.nm { min-width: 0; }
.nm .n { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 7px; }
.cell-actions { display: flex; justify-content: flex-end; gap: 8px; }
.empty { padding: 60px 20px; text-align: center; color: var(--muted); }
.empty .t { font-weight: 700; color: var(--slate); font-size: 15px; }

@media (max-width: 720px) {
  .tbl-head { display: none; }
  .tbl-row { grid-template-columns: 1fr; gap: 10px; }
  .cell-actions { justify-content: flex-start; }
  .dir-head { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ---------- Generic labeled field ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; height: 44px; padding: 0 13px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff; transition: .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50);
}
.field .note { font-size: 11.5px; color: var(--muted); margin-top: 7px; }

/* ---------- Gold button (primary action) ---------- */
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }

/* ================= EDITOR ================= */
.ed-bar {
  position: sticky; top: 60px; z-index: 30; background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 11px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.ed-bar .l { display: flex; align-items: center; gap: 14px; min-width: 0; flex-wrap: wrap; }
.ed-back { display: inline-flex; align-items: center; gap: 6px; color: var(--slate); font-weight: 600; font-size: 13px; }
.ed-back:hover { color: var(--navy); }
.ed-back svg { width: 16px; height: 16px; }
.ed-name { display: flex; align-items: center; gap: 9px; min-width: 0; flex-wrap: wrap; }
.ed-name .nm-t { font-size: 16px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lock {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--muted);
  background: #F1F1F6; padding: 3px 8px; border-radius: 6px;
}
.ed-bar .r { display: flex; align-items: center; gap: 12px; }
.save-state { font-size: 12px; color: var(--muted); font-weight: 500; }
.save-state.error { color: var(--red); }
.save-state.ok { color: var(--green); }

.ed-grid { display: grid; grid-template-columns: minmax(0, 1fr) 460px; gap: 0; align-items: start; }
.ed-form { padding: 26px 28px 80px; max-width: 760px; margin: 0 auto; width: 100%; }
.ed-preview {
  position: sticky; top: 121px; height: calc(100vh - 121px); overflow-y: auto;
  background: #ECECF2; border-left: 1px solid var(--line); padding: 22px;
}
@media (max-width: 1080px) {
  .ed-grid { grid-template-columns: 1fr; }
  .ed-preview { position: static; height: auto; border-left: none; border-top: 1px solid var(--line); }
}

.sec {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 18px;
  box-shadow: var(--sh-1); overflow: hidden;
}
.sec-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line-2); }
.sec-h .ttl { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; }
.sec-h .ttl .ico {
  width: 30px; height: 30px; border-radius: 8px; background: var(--navy-50); color: var(--navy);
  display: grid; place-items: center; flex: none;
}
.sec-h .ttl .ico svg { width: 16px; height: 16px; }
.sec-h .hint { font-size: 12px; color: var(--muted); font-weight: 500; }
.sec-b { padding: 18px; }

/* photo */
.photo-row { display: flex; gap: 18px; align-items: center; }
.photo-prev { width: 96px; height: 96px; border-radius: 12px; object-fit: cover; background: var(--navy-50); border: 1px solid var(--line); flex: none; }
.photo-prev.ph { display: grid; place-items: center; color: var(--navy); font-weight: 700; font-size: 24px; }
.photo-ctl { flex: 1; min-width: 0; }
.photo-ctl .lab { font-size: 12.5px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.photo-ctl .row { display: flex; gap: 8px; }
.photo-ctl input { flex: 1; height: 36px; padding: 0 11px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.photo-ctl input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.photo-ctl .note { font-size: 11.5px; color: var(--muted); margin-top: 7px; }

/* rich text editor */
.rte { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: #fff; }
.rte:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.rte-tools { display: flex; align-items: center; gap: 2px; padding: 6px; background: #FAFAFD; border-bottom: 1px solid var(--line-2); flex-wrap: wrap; }
.rte-tools button { width: 30px; height: 30px; border-radius: 6px; color: var(--slate); display: grid; place-items: center; font-weight: 700; }
.rte-tools button:hover { background: var(--navy-50); color: var(--navy); }
.rte-tools button.on { background: var(--navy); color: #fff; }
.rte-tools button svg { width: 15px; height: 15px; }
.rte-tools .sep { width: 1px; height: 18px; background: var(--line); margin: 0 4px; }
.rte-area { padding: 13px 15px; min-height: 120px; outline: none; font-size: 14px; line-height: 1.6; }
.rte-area p { margin: 0 0 9px; }
.rte-area p:last-child { margin-bottom: 0; }
.rte-area ul, .rte-area ol { margin: 0 0 9px 22px; }
.rte-area li { margin-bottom: 3px; }
.rte-area:empty:before { content: attr(data-ph); color: var(--muted); }
.rte-area a { color: var(--navy); text-decoration: underline; }

/* boxes — repeatable Expertise / Other Sections items */
.box-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; background: #fff; }
.box-item:last-child { margin-bottom: 0; }
.box-top {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #FAFAFD;
  border-bottom: 1px solid var(--line-2); border-radius: var(--r-md) var(--r-md) 0 0;
}
.box-grip { color: var(--muted); cursor: grab; display: grid; place-items: center; }
.box-grip svg { width: 16px; height: 16px; }
.box-num {
  width: 22px; height: 22px; border-radius: 6px; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; flex: none;
}
.box-hdr-input, .box-hdr-select {
  flex: 1; height: 34px; padding: 0 11px; border: 1px solid var(--line); border-radius: 6px; font-weight: 600;
}
.box-hdr-input:focus, .box-hdr-select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50);
}
.box-rm { color: var(--muted); width: 30px; height: 30px; border-radius: 6px; display: grid; place-items: center; flex: none; }
.box-rm:hover { background: var(--red-soft); color: var(--red); }
.box-rm svg { width: 16px; height: 16px; }
.box-body { padding: 12px; }
.add-row { display: flex; justify-content: center; margin-top: 14px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px; border-radius: var(--r-sm);
  border: 1.5px dashed var(--line); color: var(--slate); font-weight: 600; font-size: 13px; background: #fff;
  width: 100%; justify-content: center;
}
.add-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-50); }
.add-btn svg { width: 16px; height: 16px; }

/* testimonials */
.tm-item { border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px; margin-bottom: 12px; background: #fff; position: relative; }
.tm-item:last-child { margin-bottom: 0; }
.tm-quote {
  width: 100%; min-height: 64px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm);
  resize: vertical; line-height: 1.55; font: inherit;
}
.tm-quote:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.tm-meta { display: flex; gap: 8px; margin-top: 9px; }
.tm-meta input { flex: 1; height: 34px; padding: 0 11px; border: 1px solid var(--line); border-radius: 6px; }
.tm-meta input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-50); }
.tm-rm { position: absolute; top: 9px; right: 9px; color: var(--muted); width: 28px; height: 28px; border-radius: 6px; display: grid; place-items: center; }
.tm-rm:hover { background: var(--red-soft); color: var(--red); }
.tm-rm svg { width: 15px; height: 15px; }

/* save confirmation modal */
.overlay {
  position: fixed; inset: 0; background: rgba(20, 20, 45, .5); display: flex; align-items: center;
  justify-content: center; z-index: 60; padding: 20px; backdrop-filter: blur(2px);
}
.modal { background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 440px; box-shadow: var(--sh-pop); overflow: hidden; }
.modal-h { padding: 22px 24px 0; }
.modal-icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; }
.modal-icon svg { width: 22px; height: 22px; }
.mi-publish { background: var(--green-soft); color: var(--green); }
.modal h3 { font-size: 18px; font-weight: 800; }
.modal .modal-sub { color: var(--slate); margin-top: 6px; font-size: 13.5px; line-height: 1.55; }
.pub-list { background: #FAFAFD; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 13px 15px; margin-top: 14px; }
.pub-list .pl-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 3px 0; }
.pub-list .pl-row .k { color: var(--slate); }
.pub-list .pl-row .v { font-weight: 600; }
.modal-error {
  margin-top: 14px; padding: 10px 13px; border-radius: var(--r-sm);
  background: var(--red-soft); color: var(--red); font-size: 12.5px; line-height: 1.5;
}
.modal-f { padding: 14px 24px 22px; display: flex; gap: 10px; justify-content: flex-end; border-top: 1px solid var(--line-2); }

/* live preview pane (an approximate mirror of thebarristergroup.co.uk profile, not exact site fidelity — see TASKBOARD.md Phase 8) */
:root {
  --pv-navy: #0B1729; --pv-gold: #C9A227; --pv-gold-light: #E5B952;
  --pv-off: #F8F7F4; --pv-lgrey: #F0EEEA;
}
.pv-flag {
  display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 12px;
}
.pv-flag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pv { font-family: inherit; background: var(--pv-off); border-radius: 12px; overflow: hidden; box-shadow: var(--sh-2); }

/* hero */
.pv-hero {
  background: var(--pv-navy); position: relative; padding: 26px 24px; border-bottom: 3px solid var(--pv-gold);
  display: flex; gap: 18px; align-items: flex-start; overflow: hidden;
}
.pv-hc { flex: 1; min-width: 0; padding-left: 14px; }
.pv-eyebrow {
  font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pv-gold);
  margin-bottom: 9px;
}
.pv-hc h3 { font-size: 26px; font-weight: 800; color: #fff; line-height: .95; letter-spacing: -.02em; }
.pv-hdiv { width: 30px; height: 3px; background: var(--pv-gold); margin: 12px 0; }
.pv-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 11px; }
.pv-meta span { font-size: 10px; color: rgba(255, 255, 255, .78); display: inline-flex; align-items: center; gap: 4px; }
.pv-meta svg { width: 11px; height: 11px; color: var(--pv-gold); }
.pv-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 13px; }
.pv-badge {
  font-size: 9px; font-weight: 600; padding: 4px 9px; border-radius: 999px; display: inline-flex;
  align-items: center; gap: 4px;
}
.pv-badge.gold { background: var(--pv-gold); color: var(--pv-navy); }
.pv-badge.outline { border: 1px solid rgba(255, 255, 255, .3); color: #fff; }
.pv-bio { font-size: 11px; line-height: 1.7; color: rgba(255, 255, 255, .62); max-width: 42ch; }
.pv-bio p { margin: 0 0 8px; }
.pv-bio p:last-child { margin-bottom: 0; }
.pv-bio ul, .pv-bio ol { margin: 0 0 8px 16px; }
.pv-bio strong { color: rgba(255, 255, 255, .85); }
/* photo card with gold offset square */
.pv-photo-col { flex: none; padding: 6px 8px 0 0; }
.pv-photo-wrap { position: relative; width: 96px; height: 132px; }
.pv-photo-wrap::after {
  content: ""; position: absolute; right: -8px; bottom: -8px; width: 100%; height: 100%;
  background: var(--pv-gold); z-index: 0;
}
.pv-photo {
  position: relative; z-index: 1; width: 96px; height: 132px; object-fit: cover; background: #1D2C47;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45); display: block;
}
.pv-photo.ph { display: grid; place-items: center; color: var(--pv-gold); font-weight: 700; font-size: 26px; }

/* main body — stacked section cards */
.pv-main { padding: 18px; }
.pv-section-lead {
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 10px 2px;
}
.pv-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0, 0, 0, .07); margin-bottom: 12px; }
.pv-card:last-child { margin-bottom: 0; }
.pv-card-h { display: flex; align-items: center; gap: 9px; padding: 12px 15px; border-bottom: 1px solid var(--pv-lgrey); }
.pv-card-h .num {
  width: 18px; height: 18px; border-radius: 4px; background: var(--pv-navy); color: var(--pv-gold);
  display: grid; place-items: center; font-size: 9px; font-weight: 700; flex: none;
}
.pv-card-h h4 { font-size: 12.5px; font-weight: 700; color: var(--pv-navy); }
.pv-card-b { padding: 14px 15px; font-size: 10.5px; color: #4A4A5A; line-height: 1.6; }
.pv-card-b p { margin: 0 0 6px; }
.pv-card-b p:last-child { margin-bottom: 0; }
.pv-card-b ul, .pv-card-b ol { margin: 0 0 6px 16px; }
.pv-card-b li { margin-bottom: 2px; }
.pv-card-b strong { color: var(--pv-navy); }
/* testimonials */
.pv-tm-card { background: var(--pv-off); border-top: 3px solid var(--pv-gold); padding: 14px 15px; }
.pv-tm-mark { font-family: Georgia, serif; font-size: 30px; line-height: .6; color: var(--pv-gold); height: 18px; }
.pv-tm-q { font-size: 10.5px; color: #1A1A2E; line-height: 1.55; margin-bottom: 8px; }
.pv-tm-a { font-size: 9.5px; font-weight: 700; color: var(--pv-navy); }
.pv-tm-a span { display: block; font-weight: 500; color: var(--muted); margin-top: 1px; }

.pv-off { padding: 34px 20px; text-align: center; color: var(--muted); font-size: 12px; background: #fff; }
.pv-off svg { width: 32px; height: 32px; }

/* ---------- Login (Phase 9) ---------- */
#login { position: fixed; inset: 0; display: flex; }
.login-brand {
  flex: 1.1; background: linear-gradient(150deg, var(--navy) 0%, #13132F 100%); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; padding: 48px;
}
.login-wordmark img { height: 50px; width: auto; max-width: 280px; object-fit: contain; display: block; }
.login-wordmark .t, .login-wordmark .g { font-size: 13px; font-weight: 600; color: #fff; }
.login-wordmark .b { font-size: 21px; font-weight: 800; color: var(--gold); margin: 0 6px; }
.login-brand h1 { font-size: 34px; font-weight: 800; line-height: 1.15; max-width: 14ch; margin-top: 24px; }
.login-brand p { color: #B9B9D4; max-width: 40ch; margin-top: 14px; font-size: 14.5px; }
.login-brand .foot { font-size: 12px; color: #7B7B9C; }
.login-form { flex: 1; background: var(--surface); display: flex; align-items: center; justify-content: center; padding: 40px; }
.login-card { width: 100%; max-width: 360px; }
.login-card .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.login-card h2 { font-size: 24px; font-weight: 800; margin: 8px 0 4px; }
.login-card .sub { color: var(--slate); margin-bottom: 26px; }
.login-ms-btn { display: block; width: 100%; }
.login-ms-btn img { width: 100%; height: auto; display: block; border-radius: var(--r-sm); }
.login-hint { margin-top: 18px; font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; }
@media (max-width: 720px) { .login-brand { display: none; } }
.pv-empty { color: var(--muted); font-size: 11px; font-style: italic; }
