/* Marcus & Millichap website palette; ListingLab components and typography retained.
 * Source: https://www.marcusmillichap.com/Areas/MM/css/main.css — see brand-spec.md. */
:root {
  --bg: oklch(97.6139% 0 0); /* #f7f7f7 */
  --surface: oklch(100% 0 0); /* #ffffff */
  --fg: oklch(30.7238% 0.019909 242.4777); /* #273139 */
  --muted: oklch(43.3157% 0.019617 245.4272); /* #48525b */
  --border: oklch(89.7547% 0 0); /* #dddddd */
  --accent: oklch(73.2273% 0.177738 47.6206); /* #ff7f32 */
  --navy: oklch(28.1021% 0.092349 254.9405); /* #002855 */
  --danger: #b91c1c;
  --warn: #b45309;
  --success: #15803d;
  --font-display: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --accent-soft: color-mix(in oklch, var(--accent) 10%, var(--surface));
  --fg-soft: color-mix(in oklch, var(--fg) 4%, var(--surface));
  --focus-ring: 0 0 0 3px color-mix(in oklch, var(--accent) 40%, transparent);
  --radius: 8px;
  --radius-lg: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --container: 1440px;
  --gutter: 40px;
  --fs-body: 14px;
  --fs-meta: 12px;
  --fs-h1: 32px;
  --fs-h2: 20px;
  --fs-h3: 14px;
}
/* Seed reset, grid, typography, fields, buttons and table retained. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.55; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--font-display); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 32px; }
.section + .section { border-top: 1px solid var(--border); }
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--gap-md); }
.grid-2-1 { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr); gap: var(--gap-xl); align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,2fr); gap: var(--gap-xl); align-items: start; }
h1 { font-size: var(--fs-h1); line-height: 1.2; letter-spacing: -.025em; margin: 0; color: var(--navy); font-weight: 600; }
h2 { font-size: var(--fs-h2); line-height: 1.3; letter-spacing: -.02em; margin: 0; font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.4; margin: 0; }
.lead { font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 60ch; margin: 8px 0 0; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.meta { font-size: var(--fs-meta); color: var(--muted); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 16px; border-radius: var(--radius); border: 1px solid transparent; font-size: 14px; font-weight: 500; letter-spacing: -.005em; transition: background 150ms cubic-bezier(.23,1,.32,1), border-color 150ms cubic-bezier(.23,1,.32,1); }
.btn-primary { background: var(--accent); color: var(--navy); border-color: var(--navy); box-shadow: 0 2px 3px color-mix(in oklch,var(--navy) 14%,transparent); }
.btn-primary:hover:not(:disabled),.btn-primary:active:not(:disabled) { background: var(--navy); color: var(--surface); border-color: var(--navy); }
.btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--muted); background: var(--bg); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: var(--fg); background: var(--fg-soft); }
button:disabled { cursor: not-allowed; opacity: .52; }
:where(a,button,input,textarea,select,summary):focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; box-shadow: var(--focus-ring); }
:where(.sidebar,.mobile-nav-content) :focus-visible { outline-color: var(--accent); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.card-flat { background: transparent; border: 0; padding: 0; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 12px; color: var(--muted); }
.input, .textarea, select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--fg); font: inherit; }
.textarea { min-height: 104px; resize: vertical; line-height: 1.65; }
.ds-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ds-table th,.ds-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.ds-table th { color: var(--muted); font-weight: 500; font-size: 12px; }
.ds-table tbody tr:hover { background: var(--bg); }
.ds-table .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }
.ph-img { background: var(--bg); border: 1px dashed var(--border); border-radius: var(--radius); aspect-ratio: 16/9; display: grid; place-items: center; color: var(--muted); font-size: 12px; text-align: center; padding: 20px; }
.rule { border: 0; border-top: 1px solid var(--border); margin: 0; }
.log-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); align-items: center; }
.topnav { background: var(--surface); border-bottom: 1px solid var(--border); }
.topnav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 20px; }
.tag,.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 6px; font-size: 12px; white-space: nowrap; background: var(--bg); color: var(--muted); }
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge.danger { color: var(--danger); background: color-mix(in oklch,var(--danger) 6%,var(--surface)); }
.badge.warning { color: var(--warn); background: color-mix(in oklch,var(--warn) 6%,var(--surface)); }
.badge.success { color: var(--success); background: color-mix(in oklch,var(--success) 6%,var(--surface)); }
.app { display: grid; grid-template-columns: 204px minmax(0,1fr); min-height: 100vh; }
.sidebar { background: var(--navy); color: var(--surface); padding: 28px 16px 20px; display: flex; flex-direction: column; gap: 32px; position: sticky; top: 0; height: 100vh; }
.brand { display: flex; align-items: center; gap: 10px; padding: 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -.6px; min-height: 44px; }
.brand svg { width: 27px; height: 33px; flex: none; }
.sidebar-label { font-size: 12px; color: color-mix(in oklch,var(--surface) 70%,var(--navy)); margin: 0 12px 12px; }
.nav-group { display: grid; gap: 6px; }
.nav-link { display: flex; align-items: center; width: 100%; gap: 12px; min-height: 44px; padding: 10px 12px; border: 0; text-align: left; border-radius: 8px; background: transparent; color: color-mix(in oklch,var(--surface) 78%,var(--navy)); font-size: 14px; }
.nav-link:hover,.nav-link[aria-current=page] { color: var(--surface); background: color-mix(in oklch,var(--surface) 11%,var(--navy)); }
.nav-link[aria-current=page] { font-weight: 600; }
.nav-link svg { width: 18px; height: 18px; flex: none; }
.step-number { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid color-mix(in oklch,var(--surface) 28%,var(--navy)); border-radius: 50%; font-size: 12px; font-family: var(--font-mono); }
.sidebar-bottom { margin-top: auto; padding-top: 24px; border-top: 1px solid color-mix(in oklch,var(--surface) 16%,var(--navy)); }
.avatar { width: 32px; height: 32px; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 50%; font-size: 12px; color: var(--navy); }
.workspace { min-width: 0; }
.topnav .container { padding-inline: 32px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 12px; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb strong { color: var(--fg); font-weight: 500; }
.top-actions { display: flex; align-items: center; gap: 16px; }
.sample-label { font-size: 12px; color: var(--muted); }
.sample-label::before { content:'◦'; margin-right: 6px; }
.page-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 36px 28px; }
.page-header .eyebrow { margin-bottom: 8px; }
.page-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.content-pad { padding: 0 32px 32px; max-width: 1560px; margin-inline: auto; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 28px; }
.callout h2 { margin-bottom: 5px; }
.callout p { color: var(--muted); margin: 0; }
.callout .signal { width: 44px; height: 44px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; font-family: var(--font-mono); font-size: 20px; color: var(--navy); flex: none; }
.tabs { display: flex; gap: 24px; border-bottom: 1px solid var(--border); min-width: 0; }
.tab { background: transparent; border: 0; color: var(--muted); min-height: 48px; padding: 10px 0; border-bottom: 2px solid transparent; display: inline-flex; gap: 8px; align-items: center; white-space: nowrap; }
.tab[aria-pressed=true],.tab[aria-current=page] { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }
.tab:hover { color: var(--fg); }
.count { font-family: var(--font-mono); font-size: 12px; border-radius: 5px; padding: 0 6px; background: var(--border); }
.filterbar { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.search { max-width: 340px; flex: 1; position: relative; }
.search .input { padding-left: 39px; }
.search svg { position: absolute; left: 13px; top: 14px; width: 17px; height: 17px; color: var(--muted); }
.filterbar select { width: auto; max-width: 190px; }
.result-count { margin-left: auto; white-space: nowrap; }
.table-shell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.ds-table tr:last-child td { border-bottom: 0; }
.property { display: flex; align-items: center; gap: 14px; }
.property-name { font-weight: 600; display: block; }
.property-name:hover { text-decoration: underline; }
.property-icon { width: 44px; height: 52px; background: var(--bg); border: 1px solid var(--border); color: var(--navy); display: grid; place-items: center; border-radius: 6px; flex: none; }
.property-icon svg { width: 23px; height: 28px; }
.stage-line { margin-top: 5px; display: flex; gap: 3px; }
.stage-line span { width: 17px; height: 3px; background: var(--border); border-radius: 3px; }
.stage-line span.done { background: var(--navy); }
.table-foot { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }
.footnote { color: var(--muted); font-size: 12px; padding-top: 20px; display: flex; gap: 12px; justify-content: space-between; }
.footnote a:hover { text-decoration: underline; }
.verify-layout { display: grid; grid-template-columns: 292px minmax(0,1fr); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; min-height: 560px; }
.finding-rail { border-right: 1px solid var(--border); padding: 20px 12px; }
.rail-title { display: flex; align-items: center; justify-content: space-between; padding: 0 8px 16px; }
.segmented { display: flex; gap: 4px; padding: 4px; border-radius: 8px; background: var(--bg); margin-bottom: 16px; }
.segmented button { flex: 1; border: 0; min-height: 44px; padding: 8px; border-radius: 6px; background: transparent; color: var(--muted); font-size: 12px; }
.segmented button[aria-pressed=true] { background: var(--surface); box-shadow: 0 1px 3px color-mix(in oklch,var(--fg) 8%,transparent); color: var(--fg); }
.segmented button:hover { color: var(--navy); }
.finding-item { display: block; width: 100%; text-align: left; background: transparent; border: 1px solid transparent; border-radius: 8px; padding: 16px 12px; margin-bottom: 8px; }
.finding-item[aria-pressed=true] { background: var(--bg); border-color: var(--border); }
.finding-item:hover { background: var(--bg); }
.finding-item strong { display: block; font-size: 14px; font-weight: 600; margin: 9px 0 4px; }
.finding-item .meta { display: block; }
.finding-detail { padding: 28px; min-width: 0; }
.detail-heading { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 16px; }
.finding-detail h2 { margin-bottom: 8px; }
.finding-detail > p { margin-top: 8px; color: var(--muted); }
.comparison { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 24px 0 0; border: 1px solid var(--border); border-radius: 8px 8px 0 0; }
.evidence { padding: 20px; min-width: 0; }
.evidence + .evidence { border-left: 1px solid var(--border); }
.evidence .value { font-family: var(--font-mono); font-size: clamp(20px,2vw,28px); letter-spacing: -.04em; margin: 12px 0; overflow-wrap: anywhere; }
.delta-row { padding: 12px 20px; background: var(--bg); border: 1px solid var(--border); border-top: 0; border-radius: 0 0 8px 8px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12px; }
.details { margin: 22px 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; font-weight: 500; gap: 8px; }
summary::before { content:'+'; font-family: var(--font-mono); color: var(--muted); }
details[open] summary::before { content:'−'; }
.details p { margin-top: 6px; font-size: 12px; color: var(--muted); }
.notes-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.comment { padding: 12px 0; border-bottom: 1px solid var(--border); overflow-wrap: anywhere; }
.comment p { margin: 4px 0 0; }
.comment-form { display: grid; gap: 10px; margin-top: 12px; }
.comment-form .row-between { gap: 12px; }
.comment-form .textarea { min-height: 76px; }
.gate-bar { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 20px; padding: 16px 0; }
.gate-bar p { margin: 3px 0 0; }
.notice { padding: 12px 16px; border: 1px solid var(--border); background: var(--surface); border-radius: 8px; margin-bottom: 16px; font-size: 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.compose-layout { display: grid; grid-template-columns: 194px minmax(0,1fr) 244px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.page-rail { border-right: 1px solid var(--border); padding: 20px 10px; }
.page-item { display: flex; align-items: center; gap: 8px; padding: 6px; border: 1px solid transparent; border-radius: 7px; margin-bottom: 3px; }
.page-item.active { background: var(--bg); border-color: var(--border); }
.page-item button { border: 0; background: transparent; text-align: left; color: var(--fg); font-size: 12px; padding: 3px 0; min-height: 44px; flex: 1; }
.page-item button:hover { text-decoration: underline; }
.page-item .page-no { width: 24px; height: 32px; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; font-size: 12px; flex: none; color: var(--muted); }
.page-item.excluded { opacity: .6; }
.canvas-area { background: var(--bg); min-width: 0; padding: 16px 22px 26px; }
.canvas-toolbar { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 16px; font-size: 12px; color: var(--muted); }
.paper { background: var(--surface); color: var(--fg); border: 1px solid var(--border); box-shadow: 0 2px 8px color-mix(in oklch,var(--fg) 8%,transparent); padding: clamp(20px,2.5vw,40px); min-height: 560px; max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; overflow-wrap: anywhere; }
.paper .doc-running { font-family: var(--font-mono); color: var(--muted); font-size: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--fg); }
.paper .doc-title { font-size: clamp(24px,2.4vw,36px); line-height: 1.15; letter-spacing: -.04em; margin: 28px 0 10px; color: var(--fg); }
.paper .doc-sub { font-size: 12px; color: var(--muted); margin: 0 0 26px; }
.paper .doc-copy { font-size: 14px; line-height: 1.8; white-space: pre-wrap; }
.paper .doc-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; margin: 22px 0; font-size: 12px; }
.paper .doc-facts strong { display: block; font-size: 14px; margin-top: 5px; font-weight: 500; }
.paper .doc-footer { margin-top: auto; padding-top: 32px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.inspector { border-left: 1px solid var(--border); padding: 20px; min-width: 0; }
.inspector .field { margin-top: 20px; }
.inspector .textarea { min-height: 224px; font-size: 12px; }
.inspector p { font-size: 12px; color: var(--muted); }
.include-label { display: flex; align-items: center; gap: 10px; min-height: 44px; cursor: pointer; }
input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--navy); }
.mobile-menu,.mobile-panels { display: none; }
.empty { padding: 40px 24px; text-align: center; }
.empty p { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip { position: fixed; top: -100px; left: 16px; z-index: 50; padding: 12px; background: var(--surface); }
.skip:focus { top: 12px; }
[hidden] { display: none !important; }
dialog { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--fg); width: min(520px,calc(100% - 32px)); max-height: calc(100dvh - 40px); padding: 28px; box-shadow: 0 2px 8px color-mix(in oklch,var(--fg) 8%,transparent); }
dialog::backdrop { background: color-mix(in oklch,var(--navy) 35%,transparent); }
dialog header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
dialog .field { margin-top: 16px; }
dialog footer { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
dialog p { color: var(--muted); }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); color: var(--fg); box-shadow: 0 2px 8px color-mix(in oklch,var(--fg) 8%,transparent); padding: 14px 20px; max-width: calc(100vw - 32px); font-size: 12px; }
/* Application-specific additions for the linked prototype screens. */
.brand svg { width: 30px; height: 30px; }
.top-actions .avatar { width: 44px; height: 44px; padding: 0; cursor: pointer; }
.top-actions .avatar:hover { background: var(--border); }
.mobile-nav-content { background: var(--navy); border-radius: var(--radius); padding: 16px; display: grid; gap: 16px; }
.touch-link { display: flex; align-items: center; min-height: 44px; }
.property > div { min-width: 0; overflow-wrap: anywhere; }
.property { min-width: 0; }
.template-preview { display: grid; gap: 12px; padding: 24px; margin-top: 24px; border: 1px solid var(--border); color: var(--navy); background: var(--bg); font-size: 12px; }
.template-preview strong { font-size: 20px; font-weight: 600; }
.readiness-list { padding: 0; list-style: none; margin: 24px 0; }
.readiness-list li { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.doc-toc { padding-left: 20px; font-size: 12px; line-height: 2.6; }
.financial-lines { margin: 24px 0; font-size: 12px; }
.financial-lines > div { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.financial-lines dd { margin: 0; }
.page-item button > .meta { display: block; }
.finding-detail .notice { align-items: flex-start; flex-wrap: wrap; }
.page-header > div:first-child { min-width: 0; }
#content:focus { outline: none; }
@media (max-width:639px) {
  dialog footer { flex-wrap: wrap; }
  .page-header h1 { overflow-wrap: anywhere; }
}
@media(min-width:1600px) { .compose-layout { grid-template-columns: 220px minmax(0,1fr) 284px; } .paper { min-height: 680px; } }
@media(max-width:1200px) { .app { grid-template-columns: 180px minmax(0,1fr); } .content-pad { padding-inline: 24px; } .sidebar { padding-inline: 12px; } .verify-layout { grid-template-columns: 248px minmax(0,1fr); } .finding-detail { padding: 20px; } .compose-layout { grid-template-columns: 166px minmax(0,1fr); } .inspector { grid-column: 2; border-left: 0; border-top: 1px solid var(--border); } .page-rail { grid-row: span 2; } .inspector .textarea { min-height: 120px; } .ds-table th,.ds-table td { padding-inline: 14px; } }
@media(max-width:920px) { .grid-2,.grid-3,.grid-4,.grid-2-1,.grid-1-2 { grid-template-columns: 1fr; } .app { grid-template-columns: 1fr; } .sidebar { display: none; } .mobile-menu { display: inline-flex; } .topnav .container { padding-inline: 24px; } .topnav-inner { min-height: 64px; } .top-actions .avatar { display: none; } .verify-layout { grid-template-columns: 248px minmax(0,1fr); } .sidebar.open { display: flex; position: fixed; z-index: 30; width: min(300px,85vw); height: 100dvh; box-shadow: 0 0 0 100vmax color-mix(in oklch,var(--navy) 35%,transparent); } .sidebar .mobile-menu { color: var(--surface); } }
@media(max-width:639px) { :root { --gutter: 16px; --fs-h1: 28px; } .content-pad { padding: 0 16px 24px; } .topnav .container { padding-inline: 12px; } .topnav-inner { gap: 8px; } .breadcrumb { gap: 6px; } .breadcrumb .deal-crumb { display: none; } .top-actions { gap: 6px; } .sample-label { font-size: 12px; max-width: 100px; line-height: 1.4; } .page-header { padding: 28px 0 24px; align-items: flex-start; flex-wrap: wrap; gap: 16px; } .page-header-actions { width: 100%; justify-content: flex-start; flex-wrap: wrap; } .callout { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; } .callout .row { gap: 12px; } .callout .signal { display: none; } .tabs { gap: 18px; } .filterbar { flex-wrap: wrap; } .search { max-width: none; min-width: 100%; } .filterbar select { flex: 1; max-width: none; } .result-count { font-size: 12px; } .ds-table thead { display: table-header-group; position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; } .ds-table,.ds-table tbody { display: block; } .ds-table tr { display: grid; grid-template-columns: 1fr auto; padding: 18px 16px; gap: 12px 8px; border-bottom: 1px solid var(--border); } .ds-table tr:last-child { border-bottom: 0; } .ds-table td { border: 0; padding: 0; } .ds-table td:first-child { grid-column: 1/-1; } .ds-table td:nth-child(3) { display: none; } .ds-table td:last-child { grid-column: 2; grid-row: 2; } .table-foot,.footnote { flex-wrap: wrap; gap: 8px; } .verify-layout { display: block; margin-top: 16px; } .finding-rail { border-right: 0; border-bottom: 1px solid var(--border); padding: 16px 12px; } .finding-item { margin-bottom: 0; padding: 12px; } .finding-item strong { margin: 5px 0; } .finding-item .meta { display: none; } .finding-detail { padding: 20px 16px; } .detail-heading { gap: 8px; flex-wrap: wrap; } .comparison { grid-template-columns: 1fr; } .evidence + .evidence { border-left: 0; border-top: 1px solid var(--border); } .evidence { padding: 16px; } .evidence .value { font-size: 28px; margin: 8px 0; } .gate-bar { flex-direction: column; align-items: flex-start; gap: 16px; } .notice { flex-wrap: wrap; gap: 8px; } .compose-layout { display: block; } .mobile-panels { display: flex; margin-bottom: 16px; } .compose-layout .page-rail,.compose-layout .inspector { display: none; } .compose-layout[data-panel=pages] .page-rail { display: block; border: 0; } .compose-layout[data-panel=pages] .canvas-area,.compose-layout[data-panel=edit] .canvas-area { display: none; } .compose-layout[data-panel=edit] .inspector { display: block; border: 0; } .canvas-area { padding: 12px; } .paper { min-height: 540px; padding: 20px; } .paper .doc-title { font-size: 28px; } .page-item { margin-bottom: 8px; } .page-item button { font-size: 14px; } .page-item .page-no { width: 36px; height: 44px; } .comment-form .row-between { flex-wrap: wrap; } }
@media (min-width:640px) and (max-width:800px) {
  .comparison { grid-template-columns: 1fr; }
  .evidence + .evidence { border-left: 0; border-top: 1px solid var(--border); }
}
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { transition: none !important; animation: none !important; } }
