@font-face {
  font-family: Outfit;
  src: url("/assets/fonts/outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Bangers;
  src: url("/assets/fonts/bangers.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --ink: #121b21;
  --paper: #fffbee;
  --blue: #0868ca;
  --red: #e83232;
  --yellow: #ffe047;
  --ground: #08a5e8;
  --surface: #fffbee;
  --muted: #26343d;
  --line: #121b21;
  --accent: #ffe047;
  --accent-ink: #121b21;
  --display: Bangers, Outfit, sans-serif;
  --body: Outfit, sans-serif;
  --sidebar-width: 204px;
  --border: 2px;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
  border: 0;
  background: none;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b23bcd;
  outline-offset: 4px;
}
input:focus,
select:focus {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
input {
  caret-color: var(--blue);
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
html {
  scrollbar-color: var(--ink) var(--ground);
  scrollbar-width: thin;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
img {
  display: block;
  max-width: 100%;
}
svg.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}
button > span[data-icon],
a > span[data-icon] {
  display: inline-flex;
}
button .icon {
  pointer-events: none;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 100;
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  transform: none;
}
.design-bar {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 15px;
  background: #fff;
  color: #202529;
  border-bottom: 1px solid #d6dade;
  font-family: Outfit, sans-serif;
}
.design-label {
  font-size: 12px;
  white-space: nowrap;
}
.design-label b {
  font-size: 24px;
  margin-right: 10px;
  letter-spacing: -0.04em;
}
.design-switcher {
  display: flex;
  border: 1px solid #d4d7da;
  border-radius: 7px;
  padding: 4px;
  gap: 3px;
}
.design-switcher button {
  padding: 7px 13px;
  font-size: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  white-space: nowrap;
}
.design-switcher button[aria-pressed="true"] {
  background: #202529;
  color: #fff;
}
.swatch {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.comic-swatch {
  background: #ffe047;
}
.brick-swatch {
  background: #71c7ef;
}
.bauhaus-swatch {
  background: #ed292f;
}
.plan-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  min-height: 40px;
  white-space: nowrap;
}
.plan-link .icon {
  width: 15px;
}
.app-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  max-width: 1700px;
  min-height: 850px;
  margin: 0 auto;
  border-bottom: var(--border) solid var(--line);
}
.sidebar {
  border-right: var(--border) solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 30px 17px 20px;
  background: var(--ground);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 0 30px;
}
.brand-word {
  font-family: var(--display);
  font-size: 67px;
  line-height: 0.85;
  letter-spacing: -0.01em;
}
.brand-word > span {
  display: block;
  font-size: 25px;
  letter-spacing: 0.05em;
}
.brand-symbol {
  display: none;
}
.workspace-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: var(--border) solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: left;
  font-size: 12px;
  min-height: 49px;
  transition:
    background 160ms,
    color 160ms;
}
.nav-item:hover {
  background: var(--yellow);
}
.nav-item.active {
  background: var(--accent);
  color: var(--accent-ink);
}
.nav-item > b {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid currentColor;
  min-width: 18px;
  text-align: center;
  border-radius: 3px;
}
.nav-item .icon {
  width: 19px;
  height: 19px;
}
.sidebar-tip {
  margin-top: 36px;
  padding: 17px 13px;
  border: var(--border) solid var(--line);
  background: #b8a1ed;
  border-radius: var(--radius);
}
.sidebar-tip > .icon {
  width: 27px;
  height: 27px;
}
.sidebar-tip h3 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 13px;
}
.sidebar-tip p {
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.6;
}
.sidebar-tip button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  border-top: 1px solid #282b3550;
  margin-top: 16px;
  padding: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
}
.sidebar-tip button .icon {
  width: 16px;
}
.sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 30px 5px 0;
  font-size: 12px;
  line-height: 1.5;
}
.sidebar-bottom small {
  font-size: 12px;
  color: var(--muted);
}
.demo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
main {
  min-width: 0;
  background: var(--ground);
}
.workspace-header {
  height: 71px;
  border-bottom: var(--border) solid var(--line);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.workspace-header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.workspace-header > div:first-child {
  font-size: 14px;
  font-weight: 500;
}
.header-date {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}
.notification-button {
  width: 38px;
  height: 38px;
  border: var(--border) solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  position: relative;
}
.notification-button i {
  position: absolute;
  right: 3px;
  top: 1px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  border: 1px solid var(--ink);
}
.user-avatar {
  display: grid;
  place-items: center;
  border: var(--border) solid var(--line);
  background: var(--yellow);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
}
.overview-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  border-bottom: var(--border) solid var(--line);
  min-height: 348px;
}
.welcome {
  position: relative;
  padding: 30px 32px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.welcome-copy {
  position: relative;
  z-index: 2;
  max-width: 67%;
}
.welcome h1 {
  font-family: var(--display);
  font-size: 68px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.welcome h1 > span {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow: 2px 3px 0 var(--ink);
}
.welcome-copy > p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 310px;
  margin-top: 18px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  min-height: 43px;
  padding: 10px 16px;
  border: var(--border) solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  transition:
    background 160ms,
    box-shadow 160ms;
}
.button:hover {
  box-shadow: 0 3px 8px #18212620;
}
.button.primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.button.primary:hover {
  background: #ffea7c;
}
.button.secondary {
  background: var(--surface);
  color: var(--ink);
}
.button.secondary:hover {
  background: #e8edf0;
}
.button .icon {
  width: 17px;
  height: 17px;
}
.welcome .button {
  margin-top: 22px;
}
.hero-art {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 44%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art > img {
  object-fit: contain;
  width: 100%;
  height: 96%;
  filter: drop-shadow(0 8px 0 #003f5a15);
}
.comic-burst {
  position: absolute;
  width: 270px;
  height: 270px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: -1;
  right: -40px;
  top: 40px;
}
.welcome:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background-image: radial-gradient(#05466240 1px, transparent 1px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to left, #000, transparent);
  z-index: -1;
}
.comic-caption {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  padding: 5px 10px;
  transform: rotate(-3deg);
  position: absolute;
  right: 13px;
  bottom: 20px;
  z-index: 4;
  font-weight: 600;
}
.next-reminder {
  border-left: var(--border) solid var(--line);
  padding: 25px 20px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.reminder-title {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.reminder-title .icon {
  width: 19px;
}
.next-reminder h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin-top: 17px;
}
.next-reminder > .reminder-for {
  font-size: 12px;
  margin: 8px 0 14px;
}
.reminder-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid #121b2170;
  border-bottom: 1px solid #121b2170;
  padding: 13px 0;
}
.reminder-facts span {
  font-size: 12px;
  display: block;
}
.reminder-facts b {
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.reminder-summary {
  font-size: 12px;
  line-height: 1.6;
  margin: 13px 0;
}
.next-reminder .button {
  min-height: 37px;
  font-size: 12px;
  background: var(--paper);
  padding: 8px 12px;
  justify-content: space-between;
}
.matches-section {
  padding: 25px 28px 28px;
}
.section-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-toolbar h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}
.section-toolbar h2 > span {
  font-family: var(--body);
  display: inline-block;
  font-size: 12px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 8px;
  font-weight: 500;
}
.filter-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.filter-row button {
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  min-height: 33px;
}
.filter-row button[aria-pressed="true"] {
  border-color: var(--line);
  background: var(--surface);
}
.filter-row button:hover {
  background: #ffffff60;
}
.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.auction-card {
  border: var(--border) solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.auction-image {
  position: relative;
  height: 155px;
  border-bottom: var(--border) solid var(--line);
  overflow: hidden;
}
.auction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auction-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1.5px solid var(--line);
  background: var(--yellow);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 6px;
}
.auction-tag .icon {
  width: 12px;
  height: 12px;
}
.auction-tag.new {
  background: #fffbee;
}
.save-heart {
  position: absolute;
  top: 9px;
  right: 9px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
}
.save-heart .icon {
  width: 16px;
  height: 16px;
}
.save-heart.saved {
  background: var(--red);
  color: #fff;
}
.save-heart.saved .icon {
  fill: currentColor;
}
.auction-content {
  padding: 15px;
}
.location-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.location-label .icon {
  width: 13px;
  height: 13px;
}
.auction-title {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin-top: 7px;
  display: block;
  text-align: left;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.auction-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auction-specs {
  font-size: 12px;
  margin-top: 5px;
  color: var(--muted);
}
.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 17px;
  gap: 8px;
}
.price-row small {
  font-size: 12px;
  display: block;
}
.price-row strong {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.time-label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding-bottom: 5px;
}
.time-label .icon {
  width: 13px;
  height: 13px;
}
.match-line {
  font-size: 12px;
  border-top: 1px solid #121b2130;
  padding: 10px 0;
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.match-line .icon {
  width: 13px;
  height: 13px;
}
.auction-content > .button {
  width: 100%;
  min-height: 36px;
  font-size: 12px;
  padding: 8px;
}
.auction-content > .button.is-followed {
  background: #e8eadf;
}
.bottom-workspace {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 0 28px 28px;
}
.search-board {
  border: var(--border) solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}
.search-board h2 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}
.search-board header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.plain-link {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.plain-link .icon {
  width: 14px;
}
.search-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #121b2130;
  padding: 14px 0;
}
.search-entry:first-child {
  margin-top: 13px;
}
.search-entry:last-child {
  padding-bottom: 0;
}
.search-entry > div {
  flex: 1;
  min-width: 0;
}
.search-entry h3 {
  font-size: 13px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.search-entry p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.search-entry > .icon {
  width: 18px;
}
.toggle-search {
  width: 32px;
  height: 19px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--blue);
  padding: 2px;
  flex-shrink: 0;
  display: flex;
  justify-content: end;
}
.toggle-search i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
}
.toggle-search[aria-pressed="false"] {
  background: #d6d7d0;
  justify-content: start;
}
.message-board {
  border: var(--border) solid var(--line);
  border-radius: var(--radius);
  background: #b6a1ea;
  padding: 19px 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.message-board h2 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}
.message-board p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 45ch;
}
.message-board footer {
  font-size: 12px;
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.message-board footer .icon {
  width: 14px;
}
.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #121b2150;
  padding: 17px 28px;
  font-size: 12px;
  color: var(--muted);
}
.workspace-footer > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.workspace-footer .demo-dot {
  width: 5px;
  height: 5px;
}
.design-notes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 30px;
  background: #fff;
  font-family: Outfit, sans-serif;
  color: #202529;
}
.design-notes > div:first-child > span {
  font-size: 15px;
  font-weight: 600;
}
.design-notes p {
  font-size: 12px;
  color: #505b61;
  margin-top: 5px;
}
.note-actions {
  display: flex;
  gap: 23px;
}
.note-actions button {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  min-height: 38px;
}
.note-actions .icon {
  width: 15px;
}
.collection-page {
  padding: 30px;
}
.collection-page > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.collection-page h1 {
  font-family: var(--display);
  font-size: 45px;
  line-height: 1.1;
  font-weight: 400;
}
.collection-page header p {
  font-size: 13px;
  margin-top: 12px;
  max-width: 65ch;
}
.empty-state {
  padding: 35px 24px;
  background: var(--surface);
  border: var(--border) solid var(--line);
  border-radius: var(--radius);
  grid-column: 1/-1;
}
.empty-state h2 {
  font-size: 23px;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 13px;
}
.empty-state .button {
  margin-top: 18px;
}
.searches-full {
  background: var(--surface);
  border: var(--border) solid var(--line);
  padding: 0 24px;
  border-radius: var(--radius);
}
.searches-full .search-entry {
  padding: 22px 0;
}
.searches-full .search-entry:first-child {
  border: 0;
  margin: 0;
}
.searches-full .search-entry h3 {
  font-size: 16px;
}
.searches-full .search-entry p {
  font-size: 12px;
}
.delete-search {
  font-size: 12px;
  text-decoration: underline;
  margin-left: 14px;
}
.activity-entry {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 0;
}
.activity-entry > div {
  flex: 1;
}
.activity-entry h2 {
  font-size: 16px;
}
.activity-entry p {
  font-size: 12px;
  margin-top: 6px;
}
.activity-status {
  border: 1px solid var(--line);
  padding: 6px 9px;
  font-size: 12px;
  background: var(--surface);
}
/* Construction instructions: the whole workspace is a blue working surface. */
body[data-theme="brick"] {
  --ground: #91d0ef;
  --surface: #d2edfb;
  --accent: #075cbe;
  --accent-ink: #fff;
  --blue: #075cbe;
  --muted: #23485e;
  --display: "Space Grotesk", Outfit, sans-serif;
  --sidebar-width: 126px;
  --border: 1.5px;
  --radius: 7px;
  --body: Outfit, sans-serif;
}
.brick-swatch {
  border-radius: 2px;
}
body[data-theme="brick"] .sidebar {
  padding: 26px 13px 20px;
}
body[data-theme="brick"] .brand {
  padding-bottom: 25px;
}
body[data-theme="brick"] .brand-symbol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 42px;
  height: 47px;
  padding: 8px;
  gap: 4px;
  border: 2px solid var(--ink);
  background: var(--red);
  border-radius: 5px;
  margin-bottom: 12px;
}
body[data-theme="brick"] .brand-symbol i {
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: #ff6251;
}
body[data-theme="brick"] .brand-symbol:after {
  content: "";
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: #ff6251;
}
body[data-theme="brick"] .brand-word {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
body[data-theme="brick"] .brand-word > span {
  font-size: 12px;
  letter-spacing: 0;
  margin-top: 7px;
}
body[data-theme="brick"] .nav-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 3px;
  font-size: 12px;
  position: relative;
}
body[data-theme="brick"] .nav-item > b {
  position: absolute;
  right: 7px;
  top: 7px;
  font-size: 12px;
  min-width: 13px;
}
body[data-theme="brick"] .nav-item .icon {
  width: 23px;
  height: 23px;
}
body[data-theme="brick"] .sidebar-tip {
  padding: 13px 8px;
  background: var(--yellow);
  margin-top: 24px;
}
body[data-theme="brick"] .sidebar-tip h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}
body[data-theme="brick"] .sidebar-tip p {
  font-size: 12px;
}
body[data-theme="brick"] .sidebar-tip button {
  font-size: 12px;
}
body[data-theme="brick"] .sidebar-tip button .icon {
  display: none;
}
body[data-theme="brick"] .sidebar-bottom {
  font-size: 12px;
  padding-left: 0;
  gap: 6px;
}
body[data-theme="brick"] .sidebar-bottom small {
  font-size: 12px;
}
body[data-theme="brick"] .welcome {
  padding: 32px 30px;
  min-height: 362px;
}
body[data-theme="brick"] .welcome h1 {
  font-size: 55px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}
body[data-theme="brick"] .welcome h1 > span {
  color: var(--ink);
  text-shadow: none;
  -webkit-text-stroke: 0;
}
body[data-theme="brick"] .welcome-copy {
  max-width: 63%;
}
body[data-theme="brick"] .welcome:after {
  display: none;
}
body[data-theme="brick"] .welcome-copy > p {
  max-width: 260px;
  margin-top: 20px;
}
body[data-theme="brick"] .hero-art {
  width: 44%;
  height: 94%;
  right: 0;
  bottom: 5px;
}
body[data-theme="brick"] .hero-art img {
  filter: none;
}
body[data-theme="brick"] .next-reminder {
  background: #9ed8f4;
  justify-content: start;
  padding: 23px;
}
body[data-theme="brick"] .next-reminder h2 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
body[data-theme="brick"] .next-reminder .button {
  background: var(--yellow);
  margin-top: auto;
  color: var(--ink);
}
body[data-theme="brick"] .button.primary:hover {
  background: #034587;
}
body[data-theme="brick"] .section-toolbar h2 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
body[data-theme="brick"] .auction-grid {
  gap: 18px;
}
body[data-theme="brick"] .auction-card {
  background: #aeddf4;
}
body[data-theme="brick"] .auction-content {
  padding: 17px;
}
body[data-theme="brick"] .auction-image {
  height: 150px;
}
body[data-theme="brick"] .auction-content > .button.is-followed {
  background: #d2edfb;
}
body[data-theme="brick"] .search-board {
  background: transparent;
}
body[data-theme="brick"] .search-board h2,
body[data-theme="brick"] .message-board h2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
body[data-theme="brick"] .message-board {
  background: var(--yellow);
}
body[data-theme="brick"] .collection-page h1 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
body[data-theme="brick"] .nav-item:hover {
  color: var(--ink);
}
.brick-parts {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.brick-parts > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.brick-parts i {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--ink);
}
.brick-parts > span:nth-child(1) i {
  background: var(--red);
}
.brick-parts > span:nth-child(2) i {
  background: var(--yellow);
}
.brick-parts > span:nth-child(3) i {
  background: var(--blue);
}
/* Bauhaus: composition, not decoration. */
body[data-theme="bauhaus"] {
  --ground: #f9f8f4;
  --surface: #fffefa;
  --accent: #e32028;
  --accent-ink: #fff;
  --red: #e32028;
  --blue: #0759bb;
  --yellow: #f4c928;
  --muted: #43464a;
  --display: Outfit, sans-serif;
  --sidebar-width: 206px;
  --border: 1px;
  --radius: 0px;
  --line: #a1a09b;
}
body[data-theme="bauhaus"] .sidebar {
  padding: 35px 20px 22px;
}
body[data-theme="bauhaus"] .brand {
  align-items: start;
  padding: 0 8px 40px;
}
body[data-theme="bauhaus"] .brand-symbol {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
body[data-theme="bauhaus"] .brand-symbol > i {
  display: block;
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
}
body[data-theme="bauhaus"] .brand-symbol > i:nth-child(2) {
  background: var(--blue);
  border-radius: 0;
}
body[data-theme="bauhaus"] .brand-symbol > i:nth-child(3) {
  background: var(--yellow);
  border-radius: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
body[data-theme="bauhaus"] .brand-word {
  font-size: 42px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}
body[data-theme="bauhaus"] .brand-word > span {
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 400;
  display: inline;
  margin-left: 8px;
}
body[data-theme="bauhaus"] .workspace-nav {
  gap: 3px;
}
body[data-theme="bauhaus"] .nav-item {
  border-color: transparent;
  background: transparent;
  min-height: 45px;
  gap: 12px;
}
body[data-theme="bauhaus"] .nav-item.active {
  background: var(--accent);
  color: #fff;
}
body[data-theme="bauhaus"] .nav-item:hover {
  background: #efece4;
  color: var(--ink);
}
body[data-theme="bauhaus"] .nav-item > b {
  border: 0;
  font-size: 12px;
}
body[data-theme="bauhaus"] .sidebar-tip {
  background: transparent;
  padding: 18px 12px;
  margin-top: 35px;
}
body[data-theme="bauhaus"] .sidebar-tip h3 {
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body[data-theme="bauhaus"] .sidebar-tip > .icon {
  color: var(--blue);
}
body[data-theme="bauhaus"] .workspace-header {
  height: 71px;
}
body[data-theme="bauhaus"] .notification-button {
  border: 0;
  background: transparent;
}
body[data-theme="bauhaus"] .notification-button i {
  border: 0;
}
body[data-theme="bauhaus"] .user-avatar {
  border: 0;
  color: white;
  background: var(--ink);
}
body[data-theme="bauhaus"] .overview-top {
  grid-template-columns: minmax(0, 1fr) 244px;
  min-height: 355px;
}
body[data-theme="bauhaus"] .welcome {
  padding: 32px;
  align-items: center;
}
body[data-theme="bauhaus"] .welcome-copy {
  max-width: 70%;
}
body[data-theme="bauhaus"] .welcome h1 {
  font-size: 59px;
  line-height: 1.06;
  font-weight: 450;
  letter-spacing: -0.04em;
}
body[data-theme="bauhaus"] .welcome h1 > span {
  color: var(--ink);
  text-shadow: none;
  -webkit-text-stroke: 0;
}
body[data-theme="bauhaus"] .welcome h1 > span:after {
  content: ".";
  color: var(--red);
}
body[data-theme="bauhaus"] .welcome-copy > p {
  max-width: 280px;
  margin-top: 21px;
}
body[data-theme="bauhaus"] .welcome:after {
  display: none;
}
body[data-theme="bauhaus"] .hero-art {
  width: 36%;
  height: 235px;
  right: 5px;
  bottom: 65px;
}
body[data-theme="bauhaus"] .button.primary:hover {
  background: #ba1017;
}
body[data-theme="bauhaus"] .button {
  border-color: var(--ink);
  padding: 11px 15px;
}
body[data-theme="bauhaus"] .welcome .button {
  border-color: var(--red);
}
body[data-theme="bauhaus"] .next-reminder {
  background: transparent;
  padding: 27px 22px;
  justify-content: start;
}
body[data-theme="bauhaus"] .reminder-title {
  color: #b30a12;
  font-size: 14px;
  font-weight: 500;
}
body[data-theme="bauhaus"] .next-reminder h2 {
  font-family: Outfit, sans-serif;
  font-size: 28px;
  font-weight: 450;
  letter-spacing: -0.03em;
  margin-top: 22px;
}
body[data-theme="bauhaus"] .next-reminder .reminder-facts {
  border-color: var(--line);
  margin-top: 4px;
}
body[data-theme="bauhaus"] .next-reminder .button {
  margin-top: auto;
  border: 0;
  border-top: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  padding: 13px 0 0;
  min-height: 40px;
}
body[data-theme="bauhaus"] .section-toolbar h2 {
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -0.025em;
  color: #b30a12;
}
body[data-theme="bauhaus"] .section-toolbar h2 > span {
  border: 0;
  color: var(--ink);
}
body[data-theme="bauhaus"] .filter-row button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
body[data-theme="bauhaus"] .filter-row button {
  border-radius: 0;
}
body[data-theme="bauhaus"] .auction-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body[data-theme="bauhaus"] .auction-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 16px 0;
  overflow: visible;
}
body[data-theme="bauhaus"] .auction-card:last-child {
  border-bottom: 1px solid var(--line);
}
body[data-theme="bauhaus"] .auction-image {
  height: 110px;
  border: 0;
  overflow: visible;
}
body[data-theme="bauhaus"] .auction-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body[data-theme="bauhaus"] .auction-tag {
  position: absolute;
  top: auto;
  bottom: 7px;
  left: 6px;
  font-size: 12px;
  padding: 3px 5px;
  background: var(--surface);
  border: 0;
}
body[data-theme="bauhaus"] .save-heart {
  display: none;
}
body[data-theme="bauhaus"] .auction-content {
  padding: 0 0 0 20px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.8fr) 148px;
  gap: 0 17px;
  align-items: center;
}
body[data-theme="bauhaus"] .location-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 12px;
  align-self: end;
}
body[data-theme="bauhaus"] .auction-title {
  grid-column: 1;
  grid-row: 2;
  font-size: 19px;
  align-self: center;
  margin: 0;
  font-weight: 500;
}
body[data-theme="bauhaus"] .auction-specs {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  font-size: 12px;
  margin: 2px 0 0;
}
body[data-theme="bauhaus"] .price-row {
  grid-column: 2;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
  gap: 7px;
}
body[data-theme="bauhaus"] .price-row strong {
  font-size: 27px;
  font-weight: 450;
}
body[data-theme="bauhaus"] .match-line {
  grid-column: 3;
  grid-row: 1/3;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}
body[data-theme="bauhaus"] .auction-content > .button {
  grid-column: 3;
  grid-row: 3;
  font-size: 12px;
  min-height: 33px;
  padding: 6px 8px;
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
body[data-theme="bauhaus"] .auction-content > .button.is-followed {
  background: transparent;
}
body[data-theme="bauhaus"] .bottom-workspace {
  gap: 30px;
}
body[data-theme="bauhaus"] .search-board {
  border: 0;
  padding: 4px 0;
  background: transparent;
}
body[data-theme="bauhaus"] .search-board h2,
body[data-theme="bauhaus"] .message-board h2 {
  font-size: 22px;
  font-weight: 450;
  letter-spacing: -0.025em;
}
body[data-theme="bauhaus"] .message-board {
  background: var(--yellow);
  border: 0;
  padding: 22px;
}
body[data-theme="bauhaus"] .collection-page h1 {
  font-size: 40px;
  font-weight: 450;
  letter-spacing: -0.035em;
}
.geometry {
  position: relative;
  width: 100%;
  height: 100%;
}
.geo-circle {
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: var(--red);
  top: 4px;
  left: 0;
}
.geo-square {
  position: absolute;
  width: 93px;
  height: 93px;
  background: var(--blue);
  bottom: 0;
  right: 6px;
}
.geo-triangle {
  position: absolute;
  width: 105px;
  height: 102px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  right: 0;
  top: 42px;
}
.geo-rule {
  position: absolute;
  height: 1px;
  background: var(--ink);
  bottom: 72px;
  left: -8px;
  right: -5px;
}
.geo-rule-vertical {
  position: absolute;
  top: -10px;
  bottom: -8px;
  width: 1px;
  background: var(--ink);
  right: 49px;
}
/* Focused editors and a three-step onboarding, in the selected world. */
dialog {
  color: var(--ink);
  background: var(--surface);
  border: var(--border) solid var(--line);
  padding: 0;
  max-height: 92vh;
  max-width: calc(100vw - 30px);
  box-shadow: 0 16px 60px #111a2140;
  border-radius: var(--radius);
}
dialog::backdrop {
  background: #121b2180;
}
.editor-dialog {
  width: 540px;
}
.editor-head {
  padding: 22px 25px;
  border-bottom: var(--border) solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.editor-head h2 {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}
.icon-button {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}
.icon-button .icon {
  width: 18px;
}
#editor-body {
  padding: 22px 25px;
}
.editor-listing {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.editor-listing img {
  width: 87px;
  height: 71px;
  object-fit: cover;
}
.editor-listing h3 {
  font-size: 16px;
  font-weight: 550;
}
.editor-listing p {
  font-size: 12px;
  margin-top: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
}
input:not([type="checkbox"]),
select {
  display: block;
  margin-top: 7px;
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--ground);
  color: var(--ink);
  padding: 11px 12px;
  font-size: 13px;
}
input::placeholder {
  color: var(--muted);
  opacity: 1;
}
input[type="checkbox"] {
  accent-color: var(--blue);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.checkbox-label {
  display: flex;
  align-items: start;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.checkbox-label input {
  margin: 2px 0 0;
}
label small {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.rule-sentence {
  background: var(--yellow);
  padding: 15px 17px;
  border: 1px solid var(--line);
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.message-preview {
  margin-top: 19px;
  border: 1px solid var(--line);
  background: #f5f4ed;
  padding: 18px;
  color: #182d21;
}
.message-preview h3 {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 7px;
  align-items: center;
}
.message-preview h3 .icon {
  width: 16px;
}
.message-preview p {
  font-size: 13px;
  margin-top: 11px;
  line-height: 1.7;
}
.message-preview small {
  font-size: 12px;
  display: block;
  margin-top: 9px;
}
.form-fineprint {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 13px;
  color: var(--muted);
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 22px;
}
.form-actions .button:last-child {
  margin-left: auto;
}
.onboarding-dialog {
  width: 610px;
}
.onboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
}
.wordmark {
  font-size: 25px;
  font-family: var(--display);
}
.steps {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}
.steps > span {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--ground);
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
}
.steps small {
  font-size: 12px;
  font-weight: 400;
}
.steps > i {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.steps > span.current {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--ink);
}
#onboarding-form {
  padding: 26px 28px 0;
}
#onboard-body h2 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  max-width: 430px;
}
#onboard-body > p {
  font-size: 13px;
  margin: 15px 0 23px;
  max-width: 50ch;
}
.category-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.category-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 15px;
  background: var(--ground);
  border-radius: 4px;
  font-size: 13px;
  text-align: left;
}
.category-choice[aria-pressed="true"] {
  background: var(--accent);
  color: var(--accent-ink);
}
.category-choice .icon {
  width: 23px;
  height: 23px;
}
.onboard-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
}
.onboard-actions .button:last-child {
  margin-left: auto;
}
.demo-form-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  padding: 20px 28px 24px;
  text-align: center;
}
.search-review {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.search-review strong {
  font-weight: 600;
}
.form-error {
  color: #a20916;
  font-size: 12px;
  margin-top: 12px !important;
}
.plan-dialog {
  width: 850px;
  padding-bottom: 28px;
}
.plan-lead {
  font-size: 21px;
  line-height: 1.5;
  padding: 25px 28px;
}
.plan-workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 28px;
  gap: 25px;
}
.plan-workflow article > .icon {
  width: 25px;
  height: 25px;
}
.plan-workflow h3 {
  font-size: 15px;
  margin-top: 12px;
  font-weight: 600;
}
.plan-workflow p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
}
.plan-dialog > h3 {
  margin: 27px 28px 14px;
  font-size: 22px;
}
.plan-delivery {
  padding: 0 45px;
  font-size: 13px;
  line-height: 1.8;
}
.plan-delivery li {
  padding: 7px 0 7px 3px;
}
.plan-caveat {
  margin: 20px 28px;
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.plan-dialog > .button {
  margin: 0 28px;
}
.reference-dialog {
  width: 1050px;
}
.reference-dialog > img {
  width: 100%;
}
.reference-dialog > p {
  font-size: 12px;
  padding: 20px 25px 10px;
}
.reference-dialog > a {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 25px 25px;
}
.reference-dialog > a .icon {
  width: 15px;
}
.detail-money {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin: 20px 0;
}
.detail-money > div {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.detail-money small {
  font-size: 12px;
  display: block;
}
.detail-money b {
  font-size: 22px;
  font-weight: 550;
}
.detail-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.detail-text {
  font-size: 12px;
  line-height: 1.8;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 0 5px 20px #121b2120;
  font-size: 13px;
  z-index: 50;
  max-width: calc(100vw - 30px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  animation: stamp 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes stamp {
  from {
    transform: translate(-50%, 4px) rotate(-2deg);
    box-shadow: 0 8px 20px #121b2130;
  }
  to {
    transform: translate(-50%, 0) rotate(0);
    box-shadow: 0 5px 20px #121b2120;
  }
}
body[data-theme="brick"] .toast.show {
  animation: snap 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes snap {
  from {
    transform: translate(-50%, -8px);
  }
  to {
    transform: translate(-50%, 0);
  }
}
body[data-theme="bauhaus"] .toast {
  border-width: 1px;
  background: var(--blue);
  color: #fff;
}
body[data-theme="bauhaus"] .toast.show {
  animation: none;
}
body[data-theme="brick"] .editor-head h2,
body[data-theme="brick"] #onboard-body h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
body[data-theme="bauhaus"] .editor-head h2,
body[data-theme="bauhaus"] #onboard-body h2 {
  font-size: 30px;
  font-weight: 450;
  letter-spacing: -0.025em;
}
@media (min-width: 1450px) {
  .overview-top {
    min-height: 382px;
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .welcome {
    padding: 37px 42px;
  }
  .welcome h1 {
    font-size: 84px;
  }
  .welcome-copy > p {
    font-size: 14px;
  }
  .hero-art {
    width: 42%;
    right: 5px;
  }
  .next-reminder {
    padding: 29px;
  }
  .auction-image {
    height: 185px;
  }
  .auction-content {
    padding: 19px;
  }
  .auction-title {
    font-size: 18px;
  }
  .matches-section {
    padding: 28px 35px;
  }
  .bottom-workspace {
    padding: 0 35px 30px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 68px;
  }
  body[data-theme="brick"] .hero-art {
    width: 44%;
  }
  body[data-theme="brick"] .auction-image {
    height: 180px;
  }
  body[data-theme="bauhaus"] .overview-top {
    min-height: 385px;
    grid-template-columns: minmax(0, 1fr) 275px;
  }
  body[data-theme="bauhaus"] .welcome h1 {
    font-size: 76px;
  }
  body[data-theme="bauhaus"] .hero-art {
    width: 31%;
    height: 265px;
    right: 28px;
  }
  .geo-circle {
    width: 185px;
    height: 185px;
  }
  .geo-square {
    width: 112px;
    height: 112px;
  }
  .geo-triangle {
    width: 127px;
    height: 121px;
    top: 40px;
  }
  .geo-rule {
    bottom: 88px;
  }
  .geo-rule-vertical {
    right: 66px;
  }
  body[data-theme="bauhaus"] .auction-content {
    grid-template-columns: minmax(210px, 1fr) minmax(170px, 0.8fr) 200px;
  }
}
@media (max-width: 1120px) {
  :root {
    --sidebar-width: 175px;
  }
  .design-bar {
    padding: 0 18px;
  }
  .design-label {
    font-size: 12px;
  }
  .design-label b {
    margin-right: 5px;
  }
  .design-switcher button {
    padding: 7px 10px;
    font-size: 12px;
  }
  .sidebar {
    padding: 27px 12px 18px;
  }
  .nav-item {
    font-size: 12px;
    gap: 8px;
  }
  .sidebar-tip {
    padding: 16px 11px;
  }
  .overview-top {
    grid-template-columns: minmax(0, 1fr) 227px;
  }
  .welcome {
    padding: 25px;
  }
  .welcome h1 {
    font-size: 56px;
  }
  .welcome-copy {
    max-width: 70%;
  }
  .welcome-copy > p {
    font-size: 12px;
    max-width: 220px;
  }
  .hero-art {
    width: 43%;
    right: -11px;
  }
  .next-reminder {
    padding: 23px 17px;
  }
  .next-reminder h2 {
    font-size: 31px;
  }
  .reminder-facts b {
    font-size: 16px;
  }
  .reminder-summary {
    font-size: 12px;
  }
  .matches-section {
    padding: 23px;
  }
  .auction-grid {
    gap: 12px;
  }
  .auction-content {
    padding: 13px;
  }
  .auction-title {
    font-size: 14px;
  }
  .auction-image {
    height: 130px;
  }
  .price-row {
    flex-wrap: wrap;
    gap: 3px;
  }
  .price-row strong {
    font-size: 23px;
  }
  .price-row .time-label {
    font-size: 12px;
  }
  .bottom-workspace {
    padding: 0 23px 25px;
    gap: 18px;
  }
  .message-board {
    padding: 17px;
  }
  .search-board {
    padding: 17px;
  }
  .search-board h2 {
    font-size: 24px;
  }
  .message-board h2 {
    font-size: 24px;
  }
  body[data-theme="brick"] {
    --sidebar-width: 106px;
  }
  body[data-theme="brick"] .sidebar {
    padding: 24px 9px;
  }
  body[data-theme="brick"] .welcome {
    padding: 27px 24px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 44px;
  }
  body[data-theme="brick"] .hero-art {
    width: 47%;
    right: -6px;
  }
  body[data-theme="brick"] .next-reminder {
    padding: 23px 17px;
  }
  body[data-theme="brick"] .next-reminder h2 {
    font-size: 25px;
  }
  body[data-theme="brick"] .auction-content {
    padding: 13px;
  }
  body[data-theme="bauhaus"] {
    --sidebar-width: 175px;
  }
  body[data-theme="bauhaus"] .sidebar {
    padding: 30px 13px;
  }
  body[data-theme="bauhaus"] .overview-top {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
  body[data-theme="bauhaus"] .welcome {
    padding: 27px 25px;
  }
  body[data-theme="bauhaus"] .welcome h1 {
    font-size: 50px;
  }
  body[data-theme="bauhaus"] .hero-art {
    width: 33%;
    height: 195px;
    right: 8px;
    bottom: 95px;
  }
  .geo-circle {
    width: 125px;
    height: 125px;
  }
  .geo-square {
    width: 75px;
    height: 75px;
  }
  .geo-triangle {
    width: 85px;
    height: 80px;
  }
  .geo-rule {
    bottom: 60px;
  }
  .geo-rule-vertical {
    right: 41px;
  }
  body[data-theme="bauhaus"] .auction-content {
    grid-template-columns: minmax(150px, 1fr) 116px 124px;
    gap: 0 10px;
  }
  body[data-theme="bauhaus"] .auction-title {
    font-size: 16px;
  }
  body[data-theme="bauhaus"] .auction-specs {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .price-row strong {
    font-size: 23px;
  }
  body[data-theme="bauhaus"] .auction-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }
  body[data-theme="bauhaus"] .auction-image {
    height: 103px;
  }
}
@media (max-width: 900px) {
  .design-label {
    display: none;
  }
  .design-bar {
    justify-content: center;
  }
  .plan-link {
    margin-left: auto;
  }
  .app-layout {
    --sidebar-width: 79px;
  }
  .sidebar {
    padding: 22px 8px;
  }
  .brand-word {
    font-size: 43px;
  }
  .brand-word > span {
    font-size: 14px;
  }
  .nav-item {
    flex-direction: column;
    gap: 6px;
    padding: 11px 3px;
    position: relative;
    font-size: 12px;
  }
  .nav-item > b {
    position: absolute;
    right: 3px;
    top: 4px;
    font-size: 12px;
    min-width: 11px;
    line-height: 1.4;
  }
  .sidebar-tip {
    display: none;
  }
  .sidebar-bottom {
    font-size: 12px;
    padding: 22px 0 0;
    gap: 5px;
  }
  .sidebar-bottom small {
    font-size: 12px;
  }
  .sidebar-bottom .demo-dot {
    width: 5px;
    height: 5px;
  }
  .workspace-header {
    padding: 0 23px;
    height: 61px;
  }
  .header-date {
    font-size: 12px;
  }
  .overview-top {
    grid-template-columns: minmax(0, 1fr) 214px;
    min-height: 328px;
  }
  .welcome h1 {
    font-size: 53px;
  }
  .welcome-copy {
    max-width: 70%;
  }
  .welcome-copy > p {
    max-width: 200px;
    font-size: 12px;
  }
  .welcome .button {
    font-size: 12px;
    padding: 9px 12px;
    min-height: 39px;
  }
  .hero-art {
    width: 41%;
    right: -8px;
  }
  .comic-caption {
    font-size: 12px;
    right: 7px;
    bottom: 26px;
  }
  .next-reminder {
    padding: 22px 16px;
  }
  .next-reminder h2 {
    font-size: 31px;
  }
  .section-toolbar h2 {
    font-size: 27px;
  }
  .filter-row button {
    font-size: 12px;
    padding: 6px 8px;
  }
  .matches-section {
    padding: 22px 20px;
  }
  .auction-grid {
    gap: 11px;
  }
  .auction-image {
    height: 120px;
  }
  .auction-content {
    padding: 12px;
  }
  .auction-tag {
    font-size: 12px;
    left: 6px;
    top: 7px;
  }
  .save-heart {
    width: 27px;
    height: 27px;
    right: 6px;
    top: 6px;
  }
  .location-label {
    font-size: 12px;
  }
  .auction-title {
    font-size: 14px;
  }
  .auction-specs {
    font-size: 12px;
  }
  .match-line {
    font-size: 12px;
  }
  .auction-content > .button {
    font-size: 12px;
  }
  .bottom-workspace {
    padding: 0 20px 25px;
  }
  .search-board h2 {
    font-size: 23px;
  }
  .search-entry h3 {
    font-size: 12px;
  }
  .message-board h2 {
    font-size: 23px;
  }
  .message-board p {
    font-size: 12px;
  }
  .workspace-footer {
    font-size: 12px;
    padding: 17px 20px;
  }
  .design-notes {
    padding: 22px;
  }
  .design-notes p {
    font-size: 12px;
  }
  .note-actions {
    gap: 16px;
  }
  .note-actions button {
    font-size: 12px;
  }
  body[data-theme="brick"] .sidebar {
    padding: 23px 8px;
  }
  body[data-theme="brick"] .brand-symbol {
    width: 36px;
    height: 40px;
    padding: 6px;
    gap: 3px;
  }
  body[data-theme="brick"] .brand-word {
    font-size: 24px;
  }
  body[data-theme="brick"] .brand-word > span {
    font-size: 12px;
  }
  body[data-theme="brick"] .nav-item {
    font-size: 12px;
    padding: 12px 3px;
  }
  body[data-theme="brick"] .nav-item > b {
    right: 3px;
    top: 4px;
    font-size: 12px;
    min-width: 11px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 41px;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 68%;
  }
  body[data-theme="brick"] .hero-art {
    width: 44%;
    right: -6px;
    bottom: 8px;
  }
  body[data-theme="brick"] .next-reminder {
    padding: 20px 15px;
  }
  body[data-theme="brick"] .auction-image {
    height: 120px;
  }
  body[data-theme="brick"] .auction-content {
    padding: 12px;
  }
  body[data-theme="brick"] .section-toolbar h2 {
    font-size: 20px;
  }
  body[data-theme="bauhaus"] .sidebar {
    padding: 30px 8px;
  }
  body[data-theme="bauhaus"] .brand {
    padding: 0 0 25px;
    align-items: center;
  }
  body[data-theme="bauhaus"] .brand-symbol {
    gap: 3px;
  }
  body[data-theme="bauhaus"] .brand-symbol > i {
    width: 14px;
    height: 14px;
  }
  body[data-theme="bauhaus"] .brand-word {
    font-size: 30px;
  }
  body[data-theme="bauhaus"] .brand-word > span {
    display: block;
    font-size: 12px;
    text-align: center;
    margin: 7px 0 0;
  }
  body[data-theme="bauhaus"] .nav-item {
    gap: 6px;
  }
  body[data-theme="bauhaus"] .nav-item > b {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .welcome h1 {
    font-size: 46px;
  }
  body[data-theme="bauhaus"] .overview-top {
    grid-template-columns: minmax(0, 1fr) 214px;
    min-height: 343px;
  }
  body[data-theme="bauhaus"] .welcome-copy {
    max-width: 73%;
  }
  body[data-theme="bauhaus"] .hero-art {
    right: 4px;
    height: 180px;
    bottom: 92px;
    width: 32%;
  }
  .geo-circle {
    width: 110px;
    height: 110px;
  }
  .geo-square {
    width: 69px;
    height: 69px;
  }
  .geo-triangle {
    width: 77px;
    height: 74px;
  }
  .geo-rule {
    bottom: 51px;
  }
  .geo-rule-vertical {
    right: 37px;
  }
  body[data-theme="bauhaus"] .auction-content {
    grid-template-columns: minmax(142px, 1fr) 110px 119px;
    padding-left: 14px;
  }
  body[data-theme="bauhaus"] .auction-card {
    grid-template-columns: 98px minmax(0, 1fr);
  }
  body[data-theme="bauhaus"] .auction-title {
    font-size: 15px;
  }
  body[data-theme="bauhaus"] .price-row strong {
    font-size: 22px;
  }
  body[data-theme="bauhaus"] .match-line {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .auction-content > .button {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .next-reminder {
    padding: 23px 17px;
  }
  .collection-page {
    padding: 25px 20px;
  }
}
@media (max-width: 700px) {
  .design-bar {
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    padding: 10px 13px;
    gap: 7px;
  }
  .design-switcher {
    flex: 1;
    justify-content: center;
  }
  .design-switcher button {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 7px 8px;
    gap: 5px;
  }
  .plan-link {
    font-size: 12px;
    min-height: 26px;
  }
  .plan-link .icon {
    width: 13px;
  }
  .app-layout {
    display: block;
    min-height: 0;
  }
  .sidebar,
  body[data-theme="brick"] .sidebar,
  body[data-theme="bauhaus"] .sidebar {
    border-right: 0;
    border-bottom: var(--border) solid var(--line);
    padding: 13px 17px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .brand,
  body[data-theme="brick"] .brand,
  body[data-theme="bauhaus"] .brand {
    width: auto;
    padding: 0;
    min-width: 54px;
    align-items: start;
  }
  .brand-word {
    font-size: 40px;
  }
  .brand-word > span {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .workspace-nav,
  body[data-theme="bauhaus"] .workspace-nav {
    flex-direction: row;
    gap: 6px;
    margin-left: auto;
  }
  .nav-item,
  body[data-theme="brick"] .nav-item,
  body[data-theme="bauhaus"] .nav-item {
    font-size: 12px;
    padding: 7px;
    min-width: 51px;
    min-height: 48px;
    gap: 3px;
    border-width: 1px;
  }
  .nav-item .icon,
  body[data-theme="brick"] .nav-item .icon {
    width: 18px;
    height: 18px;
  }
  .nav-item > b,
  body[data-theme="brick"] .nav-item > b,
  body[data-theme="bauhaus"] .nav-item > b {
    display: none;
  }
  .sidebar-bottom {
    display: none;
  }
  .workspace-header,
  body[data-theme="bauhaus"] .workspace-header {
    height: 56px;
    padding: 0 20px;
  }
  .workspace-header > div:first-child {
    font-size: 12px;
  }
  .workspace-header > div {
    gap: 12px;
  }
  .header-date {
    font-size: 12px;
  }
  .notification-button {
    width: 31px;
    height: 31px;
    border-width: 1px;
  }
  .notification-button .icon {
    width: 17px;
  }
  .user-avatar {
    width: 29px;
    height: 29px;
    border-width: 1px;
    font-size: 12px;
  }
  .overview-top,
  body[data-theme="bauhaus"] .overview-top {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .welcome,
  body[data-theme="brick"] .welcome,
  body[data-theme="bauhaus"] .welcome {
    min-height: 318px;
    padding: 28px 24px;
  }
  .welcome-copy {
    max-width: 66%;
  }
  .welcome h1 {
    font-size: 63px;
    line-height: 0.94;
  }
  .welcome-copy > p {
    font-size: 12px;
    max-width: 245px;
  }
  .hero-art {
    width: 39%;
    right: 5px;
    height: 95%;
  }
  .comic-caption {
    font-size: 12px;
    right: 13px;
    bottom: 24px;
  }
  .comic-burst {
    width: 220px;
    height: 220px;
    top: 40px;
    right: -30px;
  }
  .next-reminder,
  body[data-theme="brick"] .next-reminder,
  body[data-theme="bauhaus"] .next-reminder {
    border-left: 0;
    border-top: var(--border) solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    padding: 21px 24px;
    justify-content: unset;
  }
  .reminder-title,
  body[data-theme="bauhaus"] .reminder-title {
    font-size: 12px;
    grid-column: 1;
    grid-row: 1;
  }
  .next-reminder h2,
  body[data-theme="brick"] .next-reminder h2,
  body[data-theme="bauhaus"] .next-reminder h2 {
    font-size: 31px;
    margin: 5px 0 0;
    grid-column: 1;
    grid-row: 2;
  }
  .next-reminder > .reminder-for {
    font-size: 12px;
    margin: 0;
    grid-column: 1;
    grid-row: 3;
  }
  .reminder-facts,
  body[data-theme="bauhaus"] .next-reminder .reminder-facts {
    grid-column: 2;
    grid-row: 1/3;
    padding: 10px 0;
    margin: 0;
    gap: 8px;
    align-self: center;
  }
  .reminder-facts b {
    font-size: 19px;
  }
  .reminder-facts span {
    font-size: 12px;
  }
  .reminder-summary {
    grid-column: 1;
    grid-row: 4;
    font-size: 12px;
    margin: 7px 0 0;
  }
  .next-reminder .button,
  body[data-theme="brick"] .next-reminder .button,
  body[data-theme="bauhaus"] .next-reminder .button {
    grid-column: 2;
    grid-row: 3/5;
    align-self: center;
    min-height: 39px;
    font-size: 12px;
    margin: 0;
  }
  .section-toolbar {
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
  }
  .section-toolbar h2 {
    font-size: 30px;
  }
  .filter-row button {
    font-size: 12px;
  }
  .matches-section {
    padding: 26px 21px;
  }
  .auction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .auction-grid > .auction-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .auction-grid > .auction-card:last-child:nth-child(odd) .auction-image {
    height: 100%;
    border: 0;
    border-right: var(--border) solid var(--line);
  }
  .auction-image {
    height: 165px;
  }
  .auction-content {
    padding: 16px;
  }
  .auction-title {
    font-size: 17px;
  }
  .auction-specs {
    font-size: 12px;
  }
  .price-row strong {
    font-size: 25px;
  }
  .time-label {
    font-size: 12px;
  }
  .match-line {
    font-size: 12px;
  }
  .auction-content > .button {
    font-size: 12px;
    min-height: 39px;
  }
  .bottom-workspace {
    grid-template-columns: 1fr;
    padding: 0 21px 26px;
    gap: 20px;
  }
  .search-board {
    padding: 20px;
  }
  .search-board h2 {
    font-size: 28px;
  }
  .search-entry h3 {
    font-size: 14px;
  }
  .search-entry p {
    font-size: 12px;
  }
  .search-entry {
    padding: 16px 0;
  }
  .message-board {
    padding: 24px;
  }
  .message-board h2 {
    font-size: 30px;
  }
  .message-board p {
    font-size: 13px;
  }
  .message-board footer {
    font-size: 12px;
  }
  .workspace-footer {
    padding: 17px 21px;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    font-size: 12px;
  }
  .design-notes {
    padding: 24px 21px;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .note-actions {
    gap: 24px;
  }
  .note-actions button {
    font-size: 12px;
  }
  .design-notes p {
    font-size: 12px;
  }
  body[data-theme="brick"] .brand {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    min-width: 72px;
  }
  body[data-theme="brick"] .brand-symbol {
    width: 24px;
    height: 29px;
    padding: 4px;
    gap: 2px;
    margin: 0;
    border-width: 1px;
  }
  body[data-theme="brick"] .brand-symbol i,
  body[data-theme="brick"] .brand-symbol:after {
    border-width: 1px;
  }
  body[data-theme="brick"] .brand-word {
    font-size: 25px;
  }
  body[data-theme="brick"] .brand-word > span {
    font-size: 12px;
    margin-top: 5px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 50px;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 67%;
  }
  body[data-theme="brick"] .hero-art {
    width: 42%;
    height: 98%;
    right: 0;
    bottom: 0;
  }
  body[data-theme="brick"] .brick-parts {
    display: none;
  }
  body[data-theme="brick"] .next-reminder h2 {
    font-size: 26px;
  }
  body[data-theme="brick"] .section-toolbar h2 {
    font-size: 24px;
  }
  body[data-theme="brick"] .auction-image {
    height: 165px;
  }
  body[data-theme="brick"] .auction-content {
    padding: 16px;
  }
  body[data-theme="bauhaus"] .brand {
    align-items: start;
    min-width: 65px;
  }
  body[data-theme="bauhaus"] .brand-symbol {
    gap: 4px;
    margin: 0 0 7px;
  }
  body[data-theme="bauhaus"] .brand-symbol > i {
    width: 12px;
    height: 12px;
  }
  body[data-theme="bauhaus"] .brand-word {
    font-size: 24px;
  }
  body[data-theme="bauhaus"] .brand-word > span {
    display: inline;
    font-size: 12px;
    margin-left: 4px;
  }
  body[data-theme="bauhaus"] .nav-item {
    padding: 7px;
    min-width: 49px;
  }
  body[data-theme="bauhaus"] .welcome h1 {
    font-size: 55px;
  }
  body[data-theme="bauhaus"] .welcome-copy {
    max-width: 70%;
  }
  body[data-theme="bauhaus"] .hero-art {
    width: 29%;
    height: 192px;
    right: 25px;
    bottom: 75px;
  }
  .geo-circle {
    width: 128px;
    height: 128px;
  }
  .geo-square {
    width: 78px;
    height: 78px;
  }
  .geo-triangle {
    width: 90px;
    height: 87px;
  }
  .geo-rule {
    bottom: 57px;
  }
  .geo-rule-vertical {
    right: 41px;
  }
  body[data-theme="bauhaus"] .next-reminder h2 {
    font-size: 27px;
  }
  body[data-theme="bauhaus"] .auction-grid {
    display: flex;
  }
  body[data-theme="bauhaus"] .auction-card,
  body[data-theme="bauhaus"]
    .auction-grid
    > .auction-card:last-child:nth-child(odd) {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 18px 0;
  }
  body[data-theme="bauhaus"] .auction-image,
  body[data-theme="bauhaus"]
    .auction-grid
    > .auction-card:last-child:nth-child(odd)
    .auction-image {
    height: 126px;
    border: 0;
  }
  body[data-theme="bauhaus"] .auction-content {
    grid-template-columns: 1fr 114px;
    padding-left: 17px;
    gap: 5px 9px;
  }
  body[data-theme="bauhaus"] .auction-title {
    font-size: 17px;
    grid-row: 2;
  }
  body[data-theme="bauhaus"] .price-row {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  body[data-theme="bauhaus"] .auction-specs {
    font-size: 12px;
    grid-row: 3;
  }
  body[data-theme="bauhaus"] .match-line {
    grid-column: 1;
    grid-row: 4;
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .auction-content > .button {
    grid-column: 2;
    grid-row: 3/5;
    min-height: 35px;
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .location-label {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .message-board h2,
  body[data-theme="bauhaus"] .search-board h2 {
    font-size: 25px;
  }
  .collection-page {
    padding: 28px 21px;
  }
  .collection-page > header {
    flex-wrap: wrap;
  }
  .collection-page h1 {
    font-size: 40px;
  }
  .collection-page header p {
    font-size: 12px;
  }
  .activity-entry {
    flex-wrap: wrap;
  }
  .activity-entry > div {
    min-width: 75%;
  }
  .activity-status {
    margin-left: 35px;
  }
  .plan-workflow {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plan-workflow article {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 0 12px;
  }
  .plan-workflow h3 {
    margin: 0;
    align-self: center;
  }
  .plan-workflow p {
    grid-column: 2;
  }
  .plan-lead {
    font-size: 19px;
  }
  .searches-full {
    padding: 0 16px;
  }
  .searches-full .search-entry {
    flex-wrap: wrap;
  }
  .searches-full .search-entry > div {
    min-width: 60%;
  }
}
@media (max-width: 440px) {
  .design-bar {
    padding: 9px 12px;
    gap: 5px;
  }
  .design-switcher {
    width: 100%;
    flex: auto;
  }
  .design-switcher button {
    font-size: 12px;
    padding: 7px 5px;
  }
  .design-label {
    display: block;
    width: auto;
    font-size: 12px;
    order: 2;
  }
  .design-label b {
    font-size: 16px;
  }
  .plan-link {
    order: 3;
    font-size: 12px;
  }
  .design-switcher {
    order: 1;
  }
  .sidebar,
  body[data-theme="brick"] .sidebar,
  body[data-theme="bauhaus"] .sidebar {
    padding: 12px 15px;
    gap: 9px;
  }
  .workspace-nav,
  body[data-theme="bauhaus"] .workspace-nav {
    gap: 4px;
  }
  .nav-item,
  body[data-theme="brick"] .nav-item,
  body[data-theme="bauhaus"] .nav-item {
    min-width: 48px;
    padding: 7px 5px;
    font-size: 12px;
  }
  .brand {
    min-width: 48px;
  }
  .brand-word {
    font-size: 39px;
  }
  .brand-word > span {
    font-size: 12px;
  }
  .header-date {
    display: none;
  }
  .workspace-header {
    padding: 0 19px;
  }
  .welcome,
  body[data-theme="brick"] .welcome,
  body[data-theme="bauhaus"] .welcome {
    padding: 27px 21px;
    min-height: 326px;
  }
  .welcome h1 {
    font-size: 57px;
    line-height: 0.97;
  }
  .welcome-copy {
    max-width: 72%;
  }
  .welcome-copy > p {
    max-width: 207px;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 16px;
  }
  .welcome .button {
    font-size: 12px;
    min-height: 42px;
    margin-top: 20px;
  }
  .hero-art {
    width: 42%;
    height: 76%;
    right: -12px;
    bottom: 9px;
    align-items: center;
  }
  .hero-art img {
    height: 100%;
  }
  .comic-burst {
    width: 190px;
    height: 190px;
    right: -44px;
    top: 35px;
  }
  .comic-caption {
    right: 11px;
    bottom: 20px;
    font-size: 12px;
  }
  .next-reminder,
  body[data-theme="brick"] .next-reminder,
  body[data-theme="bauhaus"] .next-reminder {
    padding: 20px 21px;
    gap: 5px 18px;
    grid-template-columns: 1.05fr 1fr;
  }
  .next-reminder h2 {
    font-size: 31px;
  }
  .next-reminder > .reminder-for {
    font-size: 12px;
  }
  .reminder-facts b {
    font-size: 16px;
  }
  .reminder-facts {
    gap: 6px;
    padding: 9px 0;
  }
  .reminder-facts span {
    font-size: 12px;
  }
  .reminder-title,
  body[data-theme="bauhaus"] .reminder-title {
    font-size: 12px;
    gap: 6px;
  }
  .reminder-title .icon {
    width: 16px;
  }
  .reminder-summary {
    font-size: 12px;
  }
  .next-reminder .button,
  body[data-theme="brick"] .next-reminder .button,
  body[data-theme="bauhaus"] .next-reminder .button {
    font-size: 12px;
    gap: 8px;
    padding: 8px 10px;
  }
  .auction-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .auction-grid > .auction-card:last-child:nth-child(odd) {
    display: block;
  }
  .auction-grid > .auction-card:last-child:nth-child(odd) .auction-image {
    height: 191px;
    border-right: 0;
    border-bottom: var(--border) solid var(--line);
  }
  .auction-image {
    height: 191px;
  }
  .auction-content {
    padding: 18px;
  }
  .auction-title {
    font-size: 20px;
  }
  .location-label {
    font-size: 12px;
  }
  .auction-specs {
    font-size: 12px;
  }
  .price-row {
    flex-wrap: nowrap;
    margin-top: 18px;
  }
  .price-row strong {
    font-size: 29px;
  }
  .price-row small {
    font-size: 12px;
  }
  .price-row .time-label {
    font-size: 12px;
  }
  .match-line {
    font-size: 12px;
    padding: 12px 0;
    margin-top: 13px;
  }
  .auction-content > .button {
    font-size: 12px;
    min-height: 43px;
  }
  .auction-tag {
    font-size: 12px;
    left: 10px;
    top: 10px;
  }
  .save-heart {
    width: 32px;
    height: 32px;
    right: 10px;
    top: 10px;
  }
  .section-toolbar {
    gap: 14px;
  }
  .section-toolbar h2 {
    font-size: 32px;
  }
  .filter-row {
    gap: 4px;
  }
  .filter-row button {
    font-size: 12px;
    min-height: 32px;
    padding: 5px 9px;
  }
  .matches-section {
    padding: 25px 20px;
  }
  .search-board {
    padding: 19px;
  }
  .search-board h2 {
    font-size: 26px;
  }
  .search-entry h3 {
    font-size: 13px;
  }
  .search-entry p {
    font-size: 12px;
  }
  .message-board {
    padding: 22px;
  }
  .message-board p {
    font-size: 13px;
  }
  .note-actions {
    gap: 21px;
    flex-wrap: wrap;
  }
  .note-actions button {
    font-size: 12px;
  }
  .design-notes p {
    font-size: 12px;
  }
  body[data-theme="brick"] .brand {
    min-width: 66px;
    gap: 5px;
  }
  body[data-theme="brick"] .brand-word {
    font-size: 22px;
  }
  body[data-theme="brick"] .brand-symbol {
    width: 22px;
    height: 26px;
    padding: 3px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 43px;
    line-height: 1.02;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 75%;
  }
  body[data-theme="brick"] .welcome-copy > p {
    max-width: 195px;
  }
  body[data-theme="brick"] .hero-art {
    width: 47%;
    height: 76%;
    right: -6px;
    bottom: 8px;
  }
  body[data-theme="brick"] .next-reminder h2 {
    font-size: 24px;
  }
  body[data-theme="brick"] .section-toolbar h2 {
    font-size: 23px;
  }
  body[data-theme="brick"] .auction-image {
    height: 191px;
  }
  body[data-theme="brick"] .auction-content {
    padding: 18px;
  }
  body[data-theme="bauhaus"] .brand {
    min-width: 58px;
  }
  body[data-theme="bauhaus"] .welcome h1 {
    font-size: 47px;
    line-height: 1.04;
  }
  body[data-theme="bauhaus"] .welcome-copy {
    max-width: 76%;
  }
  body[data-theme="bauhaus"] .welcome-copy > p {
    max-width: 200px;
  }
  body[data-theme="bauhaus"] .hero-art {
    width: 27%;
    height: 145px;
    right: 14px;
    bottom: 95px;
  }
  .geo-circle {
    width: 80px;
    height: 80px;
    top: 3px;
  }
  .geo-square {
    width: 58px;
    height: 58px;
    right: 0;
  }
  .geo-triangle {
    width: 68px;
    height: 67px;
    right: -2px;
    top: 26px;
  }
  .geo-rule {
    bottom: 41px;
    left: -4px;
    right: -3px;
  }
  .geo-rule-vertical {
    right: 28px;
    top: -7px;
    bottom: -8px;
  }
  body[data-theme="bauhaus"] .next-reminder h2 {
    font-size: 25px;
  }
  body[data-theme="bauhaus"] .next-reminder .button {
    padding: 9px 0 0;
  }
  body[data-theme="bauhaus"] .section-toolbar h2 {
    font-size: 25px;
  }
  body[data-theme="bauhaus"] .auction-card,
  body[data-theme="bauhaus"]
    .auction-grid
    > .auction-card:last-child:nth-child(odd) {
    grid-template-columns: 87px minmax(0, 1fr);
    gap: 0;
    padding: 17px 0;
  }
  body[data-theme="bauhaus"] .auction-image,
  body[data-theme="bauhaus"]
    .auction-grid
    > .auction-card:last-child:nth-child(odd)
    .auction-image {
    height: 147px;
    border: 0;
  }
  body[data-theme="bauhaus"] .auction-content {
    padding-left: 13px;
    grid-template-columns: 1fr;
    gap: 3px;
  }
  body[data-theme="bauhaus"] .location-label {
    grid-column: 1;
    grid-row: 1;
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .auction-title {
    grid-column: 1;
    grid-row: 2;
    font-size: 17px;
  }
  body[data-theme="bauhaus"] .auction-specs {
    grid-column: 1;
    grid-row: 3;
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .price-row {
    grid-column: 1;
    grid-row: 4;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 5px;
    margin-top: 5px;
  }
  body[data-theme="bauhaus"] .price-row small {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .price-row strong {
    font-size: 23px;
  }
  body[data-theme="bauhaus"] .price-row .time-label {
    font-size: 12px;
  }
  body[data-theme="bauhaus"] .match-line {
    display: none;
  }
  body[data-theme="bauhaus"] .auction-content > .button {
    grid-column: 1;
    grid-row: 5;
    min-height: 29px;
    font-size: 12px;
    padding: 5px;
    margin-top: 3px;
  }
  body[data-theme="bauhaus"] .auction-tag {
    font-size: 12px;
    left: 3px;
    bottom: 6px;
    padding: 3px;
  }
  body[data-theme="bauhaus"] .auction-tag .icon {
    display: none;
  }
  .editor-head {
    padding: 21px;
  }
  .editor-head h2 {
    font-size: 28px;
  }
  #editor-body {
    padding: 21px;
  }
  .form-row {
    gap: 13px;
  }
  .form-actions {
    gap: 11px;
  }
  .form-actions .button {
    font-size: 12px;
    padding: 9px 12px;
  }
  .onboard-top {
    padding: 21px;
  }
  .steps {
    padding: 0 21px;
    gap: 7px;
  }
  .steps > span {
    padding: 6px 8px;
    gap: 5px;
  }
  .steps small {
    font-size: 12px;
  }
  .steps > i {
    min-width: 7px;
  }
  #onboarding-form {
    padding: 26px 21px 0;
  }
  #onboard-body h2 {
    font-size: 36px;
  }
  .category-options {
    gap: 10px;
  }
  .category-choice {
    padding: 14px 10px;
    font-size: 12px;
    gap: 8px;
  }
  .category-choice .icon {
    width: 19px;
    height: 19px;
  }
  .demo-form-note {
    padding: 18px 21px 22px;
    font-size: 12px;
  }
  .form-fineprint {
    font-size: 12px;
  }
  .rule-sentence {
    font-size: 13px;
    padding: 14px;
  }
  .plan-lead {
    padding: 21px;
    font-size: 18px;
  }
  .plan-workflow {
    padding: 0 21px;
  }
  .plan-dialog > h3 {
    margin-left: 21px;
  }
  .plan-delivery {
    padding: 0 35px;
  }
  .plan-dialog > .button {
    margin: 0 21px;
    font-size: 12px;
  }
  .plan-caveat {
    margin: 20px 21px;
  }
  .toast {
    font-size: 12px;
    width: max-content;
  }
  .editor-listing h3 {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Keep functional text legible at every breakpoint. */
.sidebar-tip p,
.search-entry p,
.message-board footer,
.reminder-summary,
.next-reminder > .reminder-for,
.auction-specs,
.form-fineprint,
.demo-form-note {
  font-size: 12px;
}
@media (max-width: 900px) and (min-width: 701px) {
  .app-layout {
    --sidebar-width: 100px;
  }
  .nav-item {
    font-size: 12px;
  }
  .sidebar-bottom {
    font-size: 12px;
  }
  .sidebar-bottom small {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .workspace-nav {
    flex: 1;
    min-width: 0;
  }
  .nav-item,
  body[data-theme="brick"] .nav-item,
  body[data-theme="bauhaus"] .nav-item {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    line-height: 1.15;
    min-height: 55px;
    justify-content: center;
  }
  .nav-item > span:not([data-icon]) {
    text-align: center;
  }
  .brand,
  body[data-theme="brick"] .brand,
  body[data-theme="bauhaus"] .brand {
    min-width: 48px;
  }
  .steps small {
    font-size: 12px;
  }
  .reminder-summary {
    font-size: 12px;
  }
  .next-reminder > .reminder-for {
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  body[data-theme="comic"] .hero-art {
    width: 38%;
    right: 3px;
  }
  body[data-theme="brick"] .hero-art {
    width: 45%;
    right: 5px;
  }
}
/* The selected Brick by Brick product shell. */
body[data-theme="brick"] {
  --sidebar-width: 194px;
  --body: "Space Grotesk", sans-serif;
  --display: "Space Grotesk", sans-serif;
  font-size: 14px;
}
body[data-theme="brick"] .app-layout {
  min-height: calc(100vh - 39px);
}
.local-status {
  background: #ffe047;
  border-bottom: 1px solid #121b21;
  min-height: 39px;
  padding: 9px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #121b21;
}
.local-status > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
body[data-theme="brick"] .sidebar {
  padding: 23px 15px;
  gap: 0;
}
body[data-theme="brick"] .app-brand {
  display: block;
  padding: 0;
  margin: 0 auto 26px;
  max-width: 152px;
  width: 100%;
}
.app-brand img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #121b21;
  background: #fffdf5;
}
body[data-theme="brick"] .workspace-nav {
  gap: 10px;
}
body[data-theme="brick"] .nav-item {
  flex-direction: row;
  text-align: left;
  justify-content: flex-start;
  min-height: 49px;
  font-size: 12px;
  padding: 10px;
  gap: 10px;
}
body[data-theme="brick"] .nav-item b {
  position: static;
  margin-left: auto;
}
body[data-theme="brick"] .sidebar-tip {
  margin-top: 28px;
  padding: 17px 12px;
}
body[data-theme="brick"] .sidebar-tip h3 {
  font-size: 25px;
}
body[data-theme="brick"] .sidebar-tip button {
  flex-direction: row;
}
.signout-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 6px 0;
  margin-top: auto;
  font-size: 12px;
  text-align: left;
}
body[data-theme="brick"] .overview-top {
  min-height: 325px;
  grid-template-columns: minmax(0, 1fr) 260px;
}
body[data-theme="brick"] .welcome {
  min-height: 325px;
  padding: 30px;
}
body[data-theme="brick"] .welcome h1 {
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
body[data-theme="brick"] .welcome-copy {
  max-width: 65%;
}
body[data-theme="brick"] .hero-art {
  width: 43%;
  right: 0;
}
body[data-theme="brick"] .next-reminder {
  padding: 25px 21px;
}
body[data-theme="brick"] .next-reminder h2 {
  margin-top: 0;
  font-size: 28px;
}
.reminder-summary .delivery-note {
  font-size: 12px;
  display: inline-block;
  margin-top: 8px;
}
body[data-theme="brick"] .next-reminder .button {
  margin-top: 15px;
  min-height: 40px;
}
body[data-theme="brick"] .auction-content > .button {
  min-height: 43px;
}
.match-button {
  margin-top: 8px;
  font-size: 12px;
}
.match-button .icon {
  width: 14px;
}
.search-entry {
  gap: 12px;
  align-items: start;
}
.search-entry > div {
  flex: 1;
  min-width: 0;
}
.search-entry h3,
.search-entry p {
  overflow-wrap: anywhere;
}
.bottom-workspace .delete-search {
  display: none;
}
.search-entry .toggle-search {
  flex-shrink: 0;
  margin-top: 5px;
}
.clear-filter {
  margin-bottom: 18px;
  font-size: 13px;
}
.form-actions {
  flex-wrap: wrap;
}
.form-error {
  color: #8b1520;
  background: #fff3ec;
  padding: 10px;
  border: 1px solid #8b1520;
  font-size: 13px;
}
.settings-section {
  border-top: 1px solid #121b2150;
  padding: 28px 0;
  max-width: 850px;
}
.settings-section h2 {
  font-size: 24px;
  margin-bottom: 13px;
}
.settings-section > p {
  max-width: 70ch;
  line-height: 1.7;
}
.connection-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #121b2133;
  font-size: 14px;
}
.connection-row span {
  text-align: right;
}
.testing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.settings-section .form-fineprint {
  font-size: 12px;
  max-width: 75ch;
}
.status-simulated {
  background: #ffe047;
}
.status-held {
  background: #fffbee;
}
.activity-entry small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}
.activity-entry h2 {
  overflow-wrap: anywhere;
}
.connection-error {
  padding: 16px 28px;
  background: #fff3ec;
  color: #8b1520;
  border-bottom: 1px solid #8b1520;
}
.confirm-body {
  padding: 25px;
}
.confirm-body > p {
  line-height: 1.7;
}
.detail-photo + .detail-text {
  margin-top: 18px;
}
.detail-text + .detail-text {
  margin-top: 12px;
}
.loading-message {
  padding: 40px;
  font-size: 20px;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1600px;
  margin: auto;
}
.auth-story {
  position: relative;
  padding: 36px 9% 80px;
  background: #91d0ef;
  border-right: 2px solid #121b21;
  overflow: hidden;
  min-height: 760px;
}
.auth-logo {
  width: 166px;
  height: 166px;
  object-fit: contain;
  background: #fffdf5;
  border: 1px solid #121b21;
  border-radius: 8px;
  margin-bottom: 28px;
}
.auth-story h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4.1vw, 65px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 570px;
}
.auth-story > p {
  font-size: 15px;
  max-width: 37ch;
  line-height: 1.7;
  margin-top: 24px;
}
.auth-house {
  width: 240px;
  margin: 15px 0 0 auto;
}
.auth-local {
  position: absolute;
  bottom: 25px;
  left: 9%;
  font-size: 12px;
  line-height: 1.7;
}
.auth-entry {
  background: #d2edfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10%;
}
.auth-form-wrap {
  max-width: 390px;
  width: 100%;
}
.auth-entry h2 {
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.auth-entry p {
  line-height: 1.7;
  font-size: 14px;
}
.auth-entry form {
  margin-top: 27px;
}
.auth-entry label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 17px;
}
.auth-entry input {
  background: #f5fbfe;
  min-height: 49px;
}
.auth-entry .auth-submit {
  margin-top: 24px;
  width: 100%;
  min-height: 48px;
}
.auth-switch {
  font-size: 13px;
  padding: 16px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.auth-entry .auth-footnote {
  font-size: 12px;
  margin-top: 22px;
  color: #26343d;
}
.auth-entry .form-error {
  margin-top: 14px;
}
.auth-house,
.hero-art img {
  user-select: none;
}
.price-row strong,
.reminder-facts b,
.detail-money b {
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1150px) {
  body[data-theme="brick"] {
    --sidebar-width: 158px;
  }
  body[data-theme="brick"] .app-brand {
    max-width: 124px;
  }
  body[data-theme="brick"] .nav-item {
    font-size: 12px;
    gap: 7px;
    padding: 10px 7px;
  }
  body[data-theme="brick"] .welcome {
    padding: 24px;
  }
  body[data-theme="brick"] .overview-top {
    grid-template-columns: minmax(0, 1fr) 235px;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 69%;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 39px;
  }
  body[data-theme="brick"] .hero-art {
    width: 40%;
    right: -8px;
  }
  body[data-theme="brick"] .welcome-copy > p {
    max-width: 245px;
  }
  .section-toolbar {
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  body[data-theme="brick"] {
    --sidebar-width: 138px;
  }
  body[data-theme="brick"] .overview-top {
    grid-template-columns: 1fr;
  }
  body[data-theme="brick"] .next-reminder {
    border-left: 0;
    border-top: 1px solid #121b21;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
  }
  body[data-theme="brick"] .next-reminder h2 {
    grid-column: 1;
    grid-row: 1;
  }
  body[data-theme="brick"] .next-reminder .reminder-for {
    grid-column: 1;
    grid-row: 2;
  }
  body[data-theme="brick"] .next-reminder .reminder-summary {
    grid-column: 1;
    grid-row: 3;
  }
  body[data-theme="brick"] .next-reminder .reminder-facts {
    grid-column: 2;
    grid-row: 1/3;
  }
  body[data-theme="brick"] .next-reminder .button {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 47px;
  }
  body[data-theme="brick"] .welcome-copy > p {
    max-width: 280px;
  }
  .auth-story {
    min-height: 740px;
  }
  .auth-entry {
    padding: 45px 7%;
  }
  .auth-story h1 {
    font-size: 44px;
  }
  .auth-house {
    width: 200px;
  }
  .local-status {
    font-size: 12px;
    padding: 8px 16px;
  }
  .auth-entry h2 {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .local-status {
    display: block;
    padding: 9px 16px;
  }
  .local-status > span:last-child {
    display: block;
    margin-top: 2px;
  }
  body[data-theme="brick"] .app-layout {
    display: block;
  }
  body[data-theme="brick"] .sidebar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 14px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid #121b21;
    gap: 9px;
  }
  body[data-theme="brick"] .app-brand {
    width: 69px;
    max-width: 69px;
    min-width: 0;
    margin: 0;
  }
  body[data-theme="brick"] .workspace-nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }
  body[data-theme="brick"] .nav-item {
    flex-direction: column;
    min-width: 0;
    min-height: 58px;
    gap: 4px;
    padding: 7px 2px;
    font-size: 12px;
    text-align: center;
    justify-content: center;
  }
  body[data-theme="brick"] .nav-item > b {
    display: none;
  }
  .signout-button {
    display: none;
  }
  body[data-theme="brick"] .sidebar-tip {
    display: none;
  }
  body[data-theme="brick"] .welcome {
    min-height: 310px;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 67%;
  }
  body[data-theme="brick"] .hero-art {
    width: 43%;
    right: 0;
  }
  body[data-theme="brick"] .next-reminder {
    padding: 22px;
  }
  .auth-layout {
    display: block;
  }
  .auth-story {
    min-height: 0;
    padding: 25px 24px 28px;
    border-right: 0;
    border-bottom: 2px solid #121b21;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px 20px;
  }
  .auth-logo {
    width: 90px;
    height: 90px;
    margin: 0;
    grid-column: 1;
    grid-row: 1/3;
  }
  .auth-story h1 {
    font-size: 34px;
    grid-column: 2;
  }
  .auth-story > p {
    font-size: 12px;
    margin: 0;
    grid-column: 2;
  }
  .auth-house {
    display: none;
  }
  .auth-local {
    position: static;
    grid-column: 1/-1;
    font-size: 12px;
    margin-top: 5px;
  }
  .auth-entry {
    padding: 32px 25px;
  }
  .auth-entry h2 {
    font-size: 30px;
  }
  .connection-row {
    flex-direction: column;
    gap: 6px;
  }
  .connection-row span {
    text-align: left;
  }
  .settings-section h2 {
    font-size: 22px;
  }
  .auth-form-wrap {
    max-width: 460px;
  }
  .activity-entry {
    gap: 12px;
    flex-wrap: wrap;
  }
  .activity-entry > div {
    min-width: 0;
  }
  .searches-full .search-entry {
    flex-wrap: wrap;
  }
  .searches-full .search-entry > div {
    min-width: 65%;
  }
  .searches-full .delete-search {
    margin-left: auto;
  }
  .search-entry .toggle-search {
    margin-left: auto;
  }
  .settings-page .testing-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 440px) {
  body[data-theme="brick"] .sidebar {
    padding: 8px 10px;
    gap: 6px;
  }
  body[data-theme="brick"] .app-brand {
    width: 58px;
    max-width: 58px;
  }
  body[data-theme="brick"] .workspace-nav {
    gap: 3px;
  }
  body[data-theme="brick"] .nav-item {
    font-size: 12px;
    border-width: 1px;
    line-height: 1.2;
  }
  body[data-theme="brick"] .nav-item .icon {
    width: 18px;
    height: 18px;
  }
  body[data-theme="brick"] .welcome {
    padding: 25px 20px;
    min-height: 340px;
  }
  body[data-theme="brick"] .welcome h1 {
    font-size: 42px;
  }
  body[data-theme="brick"] .welcome-copy {
    max-width: 76%;
  }
  body[data-theme="brick"] .welcome-copy > p {
    max-width: 185px;
  }
  body[data-theme="brick"] .hero-art {
    width: 43%;
    height: 62%;
    bottom: 25px;
    right: 2px;
  }
  body[data-theme="brick"] .next-reminder h2 {
    font-size: 25px;
  }
  .auth-story h1 {
    font-size: 29px;
  }
  .auth-story {
    grid-template-columns: 78px 1fr;
    gap: 10px 16px;
    padding: 22px 20px;
  }
  .auth-logo {
    width: 78px;
    height: 78px;
  }
  .auth-entry {
    padding: 28px 20px;
  }
  .auth-story > p {
    line-height: 1.6;
  }
  body[data-theme="brick"] .collection-page {
    padding: 26px 20px;
  }
  .settings-page .collection-page h1 {
    font-size: 31px;
  }
  .local-status {
    font-size: 12px;
  }
  .activity-entry .activity-status {
    margin-left: 32px;
  }
  .search-entry > svg {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.settings-signout {
  margin-top: 18px;
}
@media (max-width: 440px) {
  body[data-theme="brick"] .nav-item {
    font-size: 12px;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 700px) {
  body[data-theme="brick"] .nav-item {
    font-size: 11px;
  }
}
/* Keep the bid and limit aligned when their Portuguese labels wrap. */
@media (max-width: 440px) {
  html[lang="pt-PT"] .reminder-facts span {
    min-height: 2.8em;
  }
}
/* MVP operations retain the selected Brick by Brick visual language. */
.catalog-tools {
  display: flex;
  gap: 16px;
  align-items: end;
  margin: 16px 0 24px;
}
.catalog-tools label {
  flex: 1;
  min-width: 0;
}
.catalog-tools input,
.catalog-tools select {
  margin-top: 8px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 28px 0;
}
.pagination span {
  font-variant-numeric: tabular-nums;
}
.reminder-times {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.reminder-times legend {
  font-weight: 700;
  margin-bottom: 12px;
}
.reminder-times .checkbox-label {
  margin: 10px 0;
}
.source-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  margin: 24px 0;
}
.source-facts dt {
  font-size: 14px;
  color: #355266;
}
.source-facts dd {
  margin: 7px 0 0;
  font-weight: 600;
}
.settings-section form {
  max-width: 660px;
}
.settings-section .form-row {
  margin-top: 24px;
}
.settings-section .connection-row {
  gap: 16px;
  flex-wrap: wrap;
}
.search-entry > div {
  min-width: 0;
}
.search-entry h3,
.auction-title,
.activity-entry h2 {
  overflow-wrap: anywhere;
}
.activity-entry > div {
  min-width: 0;
}
.activity-entry p {
  overflow-wrap: anywhere;
}
.activity-status {
  white-space: normal;
  text-align: center;
  max-width: 140px;
}
.status-delivered {
  color: #20523c;
  background: #e1f1e3;
}
.status-failed,
.status-uncertain {
  color: #88242b;
  background: #f9e4df;
}
.status-queued,
.status-accepted {
  color: #284b67;
  background: #e1edf7;
}
.status-cancelled {
  color: #49575d;
  background: #edf0ef;
}
.recovery-page {
  max-width: 520px;
  margin: 40px auto;
  padding: 28px;
}
.recovery-page h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 24px 0;
}
.recovery-page .auth-logo {
  width: 130px;
}
.recovery-page form {
  margin-top: 28px;
}
.recovery-page button {
  margin-top: 12px;
}
.connection-error {
  position: relative;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
input,
select,
textarea {
  font-size: 16px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #ad302f;
  outline-offset: 4px;
}
::selection {
  background: #f3d558;
  color: #172f43;
}
input {
  caret-color: #17364e;
}
.search-entry .plain-link {
  font-size: 14px;
}
.searches-full .search-entry {
  grid-template-columns: 24px minmax(0, 1fr) auto auto auto;
}
.bottom-workspace .search-entry [data-edit-search] {
  display: none;
}
@media (max-width: 700px) {
  .catalog-tools {
    flex-wrap: wrap;
    gap: 16px;
  }
  .catalog-tools label:first-child {
    flex-basis: 100%;
  }
  .catalog-tools button {
    min-height: 48px;
  }
  .pagination {
    gap: 12px;
    font-size: 14px;
  }
  .pagination .button {
    padding: 12px;
  }
  .source-facts {
    grid-template-columns: 1fr;
  }
  .searches-full .search-entry {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }
  .searches-full .search-entry > svg {
    display: none;
  }
  .search-entry > div {
    grid-column: 1/-1;
  }
  .searches-full .search-entry .toggle-search {
    grid-column: 1;
    justify-self: start;
  }
  .activity-entry {
    gap: 12px;
  }
  .activity-status {
    font-size: 12px;
    max-width: 90px;
  }
  .recovery-page {
    margin: 0 auto;
    padding: 24px;
  }
  .recovery-page h1 {
    font-size: 32px;
  }
  .settings-section .form-actions {
    flex-wrap: wrap;
  }
  .local-status {
    gap: 8px;
    line-height: 1.5;
  }
  .catalog-tools select {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.settings-section form > p {
  margin-block: 14px;
}
.settings-section form > small {
  display: block;
  margin-block: 12px;
}
.match-explanation {
  margin-block: 24px;
  padding-block: 18px;
  border-block: 1px solid #648b9f;
}
.match-explanation h3 {
  margin-bottom: 14px;
}
.match-explanation p {
  margin-top: 12px;
  line-height: 1.6;
}
/* Keep selected navigation legible on hover and during route changes. */
body[data-theme="brick"] .nav-item {
  transition: background 160ms;
}
body[data-theme="brick"] .nav-item.active:hover {
  background: var(--accent);
  color: var(--accent-ink);
}
body[data-theme="brick"] .nav-item {
  transition: none;
}

.photo-gallery {
  margin: 1rem 0;
}
.photo-gallery summary,
.source-description summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.75rem 0;
}
.photo-gallery > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-height: 32rem;
  overflow: auto;
  padding: 0.25rem;
}
.photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink, #222);
  border-radius: 8px;
}
.detail-text {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.location-picker {
  padding: 0;
  border: 0;
  min-width: 0;
  margin: 0 0 1.5rem;
}
.location-picker legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.75rem;
  margin: 0.75rem 0;
}
.location-row label {
  min-width: 0;
  margin: 0;
}
.location-row select {
  width: 100%;
  text-overflow: ellipsis;
}
.location-row .icon-button {
  margin-bottom: 0.3rem;
}
.location-picker .plain-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}
.location-picker .plain-link:disabled {
  opacity: 0.55;
  cursor: default;
}
.saved-search-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 1rem 0;
}
.saved-search-context .clear-filter {
  margin: 0;
}
@media (max-width: 600px) {
  .location-row {
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.75rem;
  }
  .location-row label {
    grid-column: 1;
  }
  .location-row .icon-button {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

.auth-back {
  display: inline-block;
  margin-bottom: 24px;
  min-height: 44px;
}
body[data-theme="brick"] .guest-workspace #user-avatar {
  width: auto;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 7px;
  min-height: 44px;
}
.guest-onboarding [data-step-marker="2"],
.guest-onboarding .steps i:last-of-type {
  display: none;
}
body[data-theme="brick"] .guest-workspace .search-entry .plain-link {
  margin-right: 16px;
}
@media (max-width: 700px) {
  body[data-theme="brick"] .guest-workspace .overview-top {
    display: block;
  }
  body[data-theme="brick"] .guest-workspace .next-reminder,
  body[data-theme="brick"] .guest-workspace .hero-art {
    display: none;
  }
  body[data-theme="brick"] .guest-workspace .welcome {
    min-height: 0;
    display: block;
    padding: 28px 20px;
  }
  body[data-theme="brick"] .guest-workspace .welcome-copy {
    width: 100%;
    max-width: none;
  }
  body[data-theme="brick"] .guest-workspace .welcome h1 {
    font-size: 34px;
    max-width: 17ch;
  }
  body[data-theme="brick"] .guest-workspace .welcome p {
    font-size: 15px;
    line-height: 1.6;
  }
  .auth-layout .auth-story {
    display: none;
  }
  .auth-layout .auth-entry {
    min-height: 100vh;
    padding-top: 24px;
    align-items: flex-start;
  }
}
