:root {
  color-scheme: light;
  font-family: var(--font-family, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  background: #f7f5ef;
  color: var(--color-text, #171713);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 245, 239, 0) 300px),
    var(--color-surface, #f7f5ef);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img {
  max-width: 100%;
}

section {
  scroll-margin-top: 92px;
}

.tenant-site {
  min-height: 100vh;
  color: var(--color-text, #171713);
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  background: rgba(247, 245, 239, 0.86);
  border-bottom: 1px solid rgba(31, 31, 27, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.account-control {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: transparent;
  color: var(--color-text);
  min-height: 36px;
  padding: 0 14px;
  font: inherit;
  cursor: pointer;
}

.account-control:hover,
.account-control:focus-visible {
  background: var(--color-text);
  color: var(--color-surface);
}

.brand {
  gap: 12px;
  color: #111111;
  font-size: 15px;
  font-weight: 650;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
}

.site-header nav {
  gap: 6px;
  color: rgba(23, 23, 19, 0.72);
  font-size: 14px;
}

.site-header nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 11px;
  transition: background 160ms ease, color 160ms ease;
}

.site-header nav a:hover {
  background: rgba(23, 23, 19, 0.06);
  color: #111111;
}

.landing,
.landing-modules,
.search-results,
.groups-section,
.detail-page,
.asset-detail,
.state-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 28px;
}

.landing {
  min-height: min(680px, calc(100vh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: start;
  gap: 52px;
  padding-top: 48px;
  padding-bottom: 32px;
}

.landing-copy {
  display: grid;
  align-content: center;
}

.landing-summary {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(23, 23, 19, 0.72);
  font-size: 18px;
  line-height: 1.45;
}

.landing-actions,
.featured-actions,
.page-actions,
.card-actions,
.asset-command-bar,
.asset-command-bar > div,
.search-heading-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.landing-actions {
  margin-top: 14px;
}

.primary-link,
.secondary-link,
.featured-actions button,
.page-actions button,
.card-actions button,
.asset-command-bar button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 7px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 650;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-link {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.primary-link:hover {
  background: #0f7a5f;
  border-color: #0f7a5f;
  transform: translateY(-1px);
}

.primary-link.inverted {
  color: #111111;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}

.primary-link.inverted:hover {
  color: #ffffff;
  background: #0f7a5f;
  border-color: #0f7a5f;
}

.secondary-link,
.featured-actions button,
.page-actions button,
.card-actions button,
.asset-command-bar button {
  color: rgba(23, 23, 19, 0.76);
  background: rgba(255, 255, 255, 0.7);
}

.featured-actions button {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.secondary-link:hover,
.featured-actions button:hover,
.page-actions button:hover,
.card-actions button:hover,
.asset-command-bar button:hover {
  color: #111111;
  background: #ffffff;
  border-color: rgba(23, 23, 19, 0.22);
}

.watch-button.is-active,
.featured-actions .watch-button.is-active,
.page-actions .watch-button.is-active,
.card-actions .watch-button.is-active,
.asset-command-bar .watch-button.is-active {
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.1);
  border-color: rgba(15, 122, 95, 0.24);
}

.featured-actions .watch-button.is-active {
  color: #b9f0de;
  background: rgba(185, 240, 222, 0.12);
  border-color: rgba(185, 240, 222, 0.28);
}

.landing-stats {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 0;
  border-top: 1px solid rgba(23, 23, 19, 0.12);
  border-bottom: 1px solid rgba(23, 23, 19, 0.12);
}

.landing-stats div {
  padding: 16px 18px 16px 0;
}

.landing-stats div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(23, 23, 19, 0.12);
}

.confidence-strip {
  width: min(100%, 620px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.confidence-strip span,
.quick-filter-row a,
.due-diligence-checklist span,
.card-watchers {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(23, 23, 19, 0.7);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 23, 19, 0.1);
  font-size: 12px;
  font-weight: 620;
}

.landing-modules,
.search-results,
.groups-section {
  display: grid;
  gap: 24px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.state-panel {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(23, 23, 19, 0.7);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  color: #111111;
  font-size: 64px;
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: #111111;
  font-size: 32px;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: #111111;
  font-size: 19px;
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: 0;
}

.search-box {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 30px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(27, 26, 22, 0.08);
}

.search-box label {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 6px 8px 6px 12px;
}

.search-box span,
.sort-control span {
  color: rgba(23, 23, 19, 0.55);
  font-size: 12px;
}

.search-box input {
  width: 100%;
  min-height: 32px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111111;
  font-size: 16px;
}

.search-box input::placeholder {
  color: rgba(23, 23, 19, 0.44);
}

.search-box button,
.bid-form button {
  min-height: 46px;
  border: 1px solid #111111;
  border-radius: 7px;
  padding: 0 18px;
  background: #111111;
  color: #ffffff;
  font-weight: 620;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.search-box button:hover,
.bid-form button:hover {
  background: #30302b;
  border-color: #30302b;
}

.bid-form button:disabled,
.bid-form button:disabled:hover {
  cursor: not-allowed;
  background: #dedbd2;
  border-color: #dedbd2;
  color: rgba(23, 23, 19, 0.54);
}

.featured-card,
.auction-card,
.group-card,
.group-lot-card,
.bid-panel,
.empty-state {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.featured-card img,
.auction-card img,
.group-lot-card img,
.asset-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card {
  display: grid;
  grid-template-rows: auto auto;
  background: #111111;
  color: #ffffff;
}

.featured-media {
  height: 470px;
  min-height: 0;
  overflow: hidden;
}

.featured-card.empty-state {
  grid-template-rows: 1fr;
  min-height: 260px;
  align-content: center;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
}

.featured-content {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.featured-content h2 {
  color: #ffffff;
}

.featured-content .card-topline {
  color: rgba(255, 255, 255, 0.68);
}

.auction-card-body,
.group-card,
.bid-panel,
.asset-copy {
  padding: 18px;
}

.status,
.pill {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(23, 23, 19, 0.08);
  color: rgba(23, 23, 19, 0.76);
  font-size: 12px;
  font-weight: 650;
  text-transform: capitalize;
  white-space: nowrap;
}

.featured-card .status {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.status-live {
  background: rgba(15, 122, 95, 0.12);
  color: var(--color-live, #0f7a5f);
}

.status-future {
  background: rgba(71, 87, 138, 0.12);
  color: #44547f;
}

.status-past {
  background: rgba(107, 98, 85, 0.13);
  color: #6b6255;
}

.featured-card .status-live,
.featured-card .status-future,
.featured-card .status-past {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.bid-metrics,
.detail-grid,
.summary-grid,
.group-card dl,
.landing-stats {
  display: grid;
}

.bid-metrics,
.summary-grid,
.group-card dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bid-metrics,
.detail-grid,
.summary-grid,
.group-card dl {
  gap: 12px;
  margin: 16px 0 0;
}

dt {
  color: rgba(23, 23, 19, 0.68);
  font-size: 12px;
  font-weight: 620;
}

dd {
  margin: 4px 0 0;
  color: #111111;
  font-size: 15px;
  font-weight: 610;
}

.featured-card dt,
.featured-card dd {
  color: #ffffff;
}

.featured-card dt {
  color: rgba(255, 255, 255, 0.6);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}

.section-subcopy {
  max-width: 620px;
  margin-top: 7px;
  color: rgba(23, 23, 19, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.quick-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-filter-row a:hover {
  color: #0f4e3f;
  border-color: rgba(15, 122, 95, 0.22);
  background: rgba(15, 122, 95, 0.07);
}

.search-heading-actions {
  justify-content: flex-end;
}

.save-search-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 7px;
  padding: 0 12px;
  color: rgba(23, 23, 19, 0.76);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.save-search-button:hover {
  color: #111111;
  background: #ffffff;
  border-color: rgba(23, 23, 19, 0.22);
}

.saved-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: -4px;
}

.saved-search-row > span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.saved-search-row a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  padding: 0 11px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.07);
  font-size: 12px;
  font-weight: 650;
}

.saved-search-row a:hover {
  border-color: rgba(15, 122, 95, 0.28);
  background: rgba(15, 122, 95, 0.11);
}

.view-toggle,
.filter-bar,
.field-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.view-toggle,
.filter-bar {
  margin-bottom: 2px;
}

.filter-bar,
.field-filters {
  padding: 10px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
}

.view-toggle {
  padding: 3px;
  background: rgba(23, 23, 19, 0.07);
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
}

.view-toggle button,
.filter-bar button,
.field-filter select,
.sort-control select {
  min-height: 34px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 6px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(23, 23, 19, 0.72);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.view-toggle button {
  border-color: transparent;
  background: transparent;
}

.view-toggle button[aria-pressed="true"],
.filter-bar button[aria-pressed="true"] {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.field-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.field-filter span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 560;
}

.text-link,
.inline-link {
  color: #111111;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  font-size: 14px;
}

.text-link::after {
  content: "";
  width: 16px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  transition: width 160ms ease;
}

.text-link:hover::after {
  width: 24px;
}

.auction-grid,
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(23, 23, 19, 0.62);
  text-align: center;
}

.auction-card {
  min-width: 0;
  display: grid;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.auction-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 23, 19, 0.2);
  box-shadow: 0 18px 52px rgba(26, 25, 21, 0.08);
}

.auction-card-media {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #e7e2d9;
}

.auction-card img {
  transition: transform 260ms ease;
}

.auction-card:hover img {
  transform: scale(1.025);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(23, 23, 19, 0.56);
  font-size: 12px;
}

.card-field-list,
.auction-card p,
.asset-copy p,
.bid-panel p {
  margin-top: 10px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.card-field-list {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.09);
}

.card-field-list span {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 23, 19, 0.72);
  overflow-wrap: anywhere;
}

.card-field-list strong {
  color: rgba(23, 23, 19, 0.86);
  font-weight: 640;
}

.card-actions {
  justify-content: space-between;
  margin-top: 14px;
}

.card-actions .text-link {
  margin-top: 0;
}

.card-essentials {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.card-essentials > div:first-child {
  display: grid;
  gap: 3px;
}

.card-essentials span,
.card-timer > span {
  color: rgba(23, 23, 19, 0.7);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.card-essentials strong {
  color: #111111;
  font-size: 21px;
  font-weight: 660;
  line-height: 1;
}

.card-watchers {
  min-height: 26px;
  padding: 0;
  border: 0;
  color: rgba(23, 23, 19, 0.68);
  background: transparent;
  font-size: 11px;
  white-space: nowrap;
}

.card-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  margin-top: 13px;
  padding: 0 0 0 10px;
  border: 0;
  border-left: 3px solid rgba(15, 122, 95, 0.52);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(15, 122, 95, 0.07), rgba(15, 122, 95, 0));
}

.card-timer strong {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: #111111;
  font-size: 14px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.card-timer em {
  color: rgba(23, 23, 19, 0.58);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.card-timer [data-countdown-seconds] {
  color: #0f7a5f;
}

.card-timer.is-static strong {
  font-size: 13px;
  font-weight: 650;
}

.featured-card .card-timer {
  margin-top: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.featured-card .card-timer > span,
.featured-card .card-timer em {
  color: rgba(255, 255, 255, 0.58);
}

.featured-card .card-timer strong {
  color: #ffffff;
}

.featured-card .card-timer [data-countdown-seconds] {
  color: #b9f0de;
}

.asset-detail {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.asset-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.group-detail {
  display: grid;
  gap: 24px;
}

.detail-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.group-event-panel,
.group-campaign-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.group-campaign-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  align-items: stretch;
  padding: 20px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 10%, rgba(15, 122, 95, 0.13), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(238, 216, 134, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 246, 0.78));
  box-shadow: 0 20px 70px rgba(26, 25, 21, 0.06);
}

.group-campaign-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 250px;
}

.group-campaign-copy h3 {
  max-width: 760px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.group-campaign-copy p {
  max-width: 620px;
  color: rgba(23, 23, 19, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.group-campaign-clock,
.group-registration-state {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.group-campaign-clock {
  align-self: center;
  min-height: 176px;
}

.group-campaign-clock span,
.group-registration-state span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.group-campaign-clock strong {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #111111;
  font-size: 28px;
  line-height: 1;
}

.group-campaign-clock em {
  align-self: end;
  color: rgba(23, 23, 19, 0.54);
  font-size: 14px;
  font-style: normal;
}

.group-campaign-clock [data-countdown-seconds] {
  color: var(--color-live, #0f7a5f);
}

.group-campaign-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.group-campaign-metrics div {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.group-campaign-metrics strong {
  display: block;
  color: #111111;
  font-size: 21px;
  font-weight: 680;
  line-height: 1.1;
}

.group-campaign-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 23, 19, 0.56);
  font-size: 12px;
}

.group-registration-state strong {
  color: #111111;
  font-size: 24px;
  line-height: 1.05;
}

.group-registration-state small {
  color: rgba(23, 23, 19, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.group-registration-approved {
  border-color: rgba(15, 122, 95, 0.2);
  background: rgba(238, 249, 244, 0.76);
}

.group-registration-approved strong {
  color: var(--color-live, #0f7a5f);
}

.group-registration-deposit_required,
.group-registration-pending_approval {
  border-color: rgba(159, 106, 0, 0.18);
  background: rgba(255, 249, 231, 0.72);
}

.group-registration-not_registered {
  border-color: rgba(71, 87, 138, 0.16);
  background: rgba(246, 248, 255, 0.72);
}

.group-event-panel > div {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 243, 0.64)),
    rgba(255, 255, 255, 0.68);
}

.group-event-panel strong {
  color: #111111;
  font-size: 22px;
  font-weight: 620;
  line-height: 1.05;
}

.group-event-panel span,
.group-card p {
  color: rgba(23, 23, 19, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.group-resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.8fr) minmax(220px, 0.75fr);
  gap: 12px;
  align-items: stretch;
}

.group-lot-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.group-lot-header h3 {
  font-size: 28px;
  line-height: 1.05;
}

.group-lot-header h3 span {
  display: inline;
  color: rgba(23, 23, 19, 0.55);
  font-size: 18px;
  font-weight: 520;
}

.group-lot-header > span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 14px;
  white-space: nowrap;
}

.group-lot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.group-lot-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.group-lot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 23, 19, 0.2);
  box-shadow: 0 18px 52px rgba(26, 25, 21, 0.08);
}

.group-lot-media {
  min-height: 100%;
  overflow: hidden;
  background: rgba(23, 23, 19, 0.05);
}

.group-lot-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.group-lot-body h3 {
  font-size: 19px;
  line-height: 1.15;
}

.group-lot-price {
  display: grid;
  gap: 3px;
}

.group-lot-price span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.group-lot-price strong {
  color: #111111;
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
}

.group-lot-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(23, 23, 19, 0.66);
  font-size: 13px;
}

.group-lot-facts span {
  white-space: nowrap;
}

.group-lot-facts strong {
  color: #111111;
  font-weight: 650;
}

.group-documents,
.group-media-strip,
.group-support-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.resource-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.resource-heading .eyebrow {
  margin-bottom: 4px;
}

.resource-heading > span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: rgba(23, 23, 19, 0.58);
  background: rgba(23, 23, 19, 0.05);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.group-document-list {
  display: grid;
  gap: 8px;
}

.group-document-link {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.group-document-link:first-child {
  border-top: 0;
  padding-top: 0;
}

.group-document-link > span {
  grid-row: span 2;
  min-width: 42px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.09);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.group-document-link strong {
  min-width: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group-document-link small,
.group-support-card p,
.group-support-card span,
.group-support-card small {
  color: rgba(23, 23, 19, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.group-media-strip > div:last-child {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 88px);
  gap: 8px;
}

.group-media-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.group-media-strip img:first-child {
  grid-row: span 2;
}

.group-support-card h3 {
  margin-top: -4px;
}

.group-support-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.group-support-card a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 7px;
  padding: 0 11px;
  color: #111111;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 650;
}

.asset-hero,
.asset-copy {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.asset-hero {
  position: relative;
  height: 560px;
  background: #e7e2d9;
}

.asset-gallery {
  height: auto;
  margin: 0;
}

.asset-gallery-main {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #e7e2d9;
}

.asset-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.asset-gallery-nav {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.18);
  transform: translateY(-50%);
}

.asset-gallery-nav:hover {
  color: #111111;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.86);
}

.asset-gallery-nav.previous {
  left: 14px;
}

.asset-gallery-nav.next {
  right: 14px;
}

.asset-gallery-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.asset-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.asset-gallery-thumbs button {
  height: 70px;
  min-height: 70px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #e7e2d9;
  opacity: 0.72;
}

.asset-gallery-thumbs button:hover,
.asset-gallery-thumbs button[aria-selected="true"] {
  border-color: #0f7a5f;
  opacity: 1;
}

.asset-gallery-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.asset-copy {
  display: grid;
  align-content: start;
  padding: 34px;
}

.asset-command-bar {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.watch-preferences {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: -2px 0 22px;
  padding: 10px;
  border: 1px solid rgba(15, 122, 95, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.watch-preferences > div {
  min-width: min(100%, 240px);
  margin-right: auto;
}

.watch-preferences .eyebrow {
  margin-bottom: 3px;
  color: #0f7a5f;
}

.watch-preferences span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.watch-preferences label {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(23, 23, 19, 0.72);
}

.watch-preferences input {
  width: 14px;
  height: 14px;
  accent-color: #0f7a5f;
}

.watch-pref-copy {
  display: grid;
  gap: 1px;
}

.watch-pref-copy strong {
  color: rgba(23, 23, 19, 0.76);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.1;
}

.watch-pref-copy small {
  max-width: 170px;
  color: rgba(23, 23, 19, 0.5);
  font-size: 10.5px;
  font-weight: 520;
  line-height: 1.2;
}

.asset-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.asset-title-row .eyebrow {
  margin: 0;
}

.asset-title-row .status {
  min-height: 28px;
}

.detail-back-link {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 12px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  color: rgba(23, 23, 19, 0.78);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.detail-back-link:hover {
  color: #111111;
  border-color: rgba(23, 23, 19, 0.22);
  background: #ffffff;
}

.detail-back-link span[aria-hidden="true"] {
  font-size: 15px;
  line-height: 1;
}

.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.asset-fact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.asset-fact-panel section {
  display: grid;
  gap: 12px;
}

.asset-fact-panel .eyebrow {
  margin: 0;
}

.asset-fact-panel dl {
  display: grid;
  gap: 12px;
}

.asset-fact-panel dl div {
  display: grid;
  grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1.4fr);
  gap: 16px;
  align-items: baseline;
  min-width: 0;
}

.asset-fact-panel dt {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 620;
}

.asset-fact-panel dd {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.asset-fact-panel strong {
  color: #111111;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.asset-fact-panel span {
  color: rgba(23, 23, 19, 0.68);
  font-size: 11px;
  line-height: 1.4;
}

.condition-provenance {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.condition-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.condition-heading .eyebrow {
  margin-bottom: 5px;
}

.condition-heading h3 {
  font-size: 16px;
}

.condition-heading > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
}

.condition-provenance > p {
  margin: 0;
  color: rgba(23, 23, 19, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.condition-provenance > small,
.condition-list span,
.condition-list small,
.provenance-list span,
.provenance-list small {
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.condition-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.condition-list div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.condition-list strong,
.provenance-list strong {
  color: #111111;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.provenance-list {
  display: grid;
  gap: 0;
  padding-left: 13px;
  border-left: 1px solid rgba(23, 23, 19, 0.12);
}

.provenance-list div {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 0 0 12px;
}

.provenance-list div:last-child {
  padding-bottom: 0;
}

.provenance-list div::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid #f7f6f1;
  border-radius: 999px;
  background: #0f7a5f;
}

.location-insight {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.location-map-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 62% 44%, rgba(15, 122, 95, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(15, 122, 95, 0.1), rgba(159, 106, 0, 0.08)),
    #f7f6f1;
}

.location-map-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  opacity: 0.5;
}

.location-map-grid span {
  border-right: 1px solid rgba(23, 23, 19, 0.08);
  border-bottom: 1px solid rgba(23, 23, 19, 0.08);
}

.location-pin {
  position: absolute;
  inset: 50% auto auto 56%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 122, 95, 0.12);
}

.location-pin span {
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #0f7a5f;
  box-shadow: 0 10px 28px rgba(15, 122, 95, 0.28);
}

.location-copy {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 0;
}

.location-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.location-heading .eyebrow {
  margin-bottom: 5px;
}

.location-heading h3 {
  font-size: 16px;
}

.location-heading > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 12px;
  font-weight: 680;
}

.location-copy p {
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.location-copy > strong {
  color: #111111;
  font-size: 13px;
}

.landmark-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.landmark-list div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.landmark-list span {
  color: #111111;
  font-size: 12px;
  font-weight: 650;
}

.landmark-list small {
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.seller-profile {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.seller-profile-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
}

.seller-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 13px;
  font-weight: 760;
}

.seller-profile-head .eyebrow {
  margin-bottom: 4px;
}

.seller-profile-head h3 {
  color: #111111;
  font-size: 16px;
}

.seller-profile-head span,
.seller-profile p,
.seller-policy-list span {
  color: rgba(23, 23, 19, 0.62);
  font-size: 12px;
}

.seller-profile-head > strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
}

.seller-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.seller-metrics div,
.seller-policy-list div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.seller-metrics span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
}

.seller-metrics strong {
  color: #111111;
  font-size: 14px;
}

.seller-profile p {
  margin: 0;
  line-height: 1.45;
}

.seller-policy-list {
  display: grid;
  gap: 10px;
}

.seller-policy-list strong {
  color: rgba(23, 23, 19, 0.82);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.45;
}

.auction-logistics {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.logistics-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.logistics-heading .eyebrow {
  margin-bottom: 5px;
}

.logistics-heading h3 {
  font-size: 16px;
}

.logistics-heading > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
}

.logistics-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.logistics-timeline div,
.logistics-checklist div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.logistics-timeline span,
.logistics-checklist span,
.logistics-contact span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
  font-weight: 620;
}

.logistics-timeline strong,
.logistics-checklist strong {
  color: #111111;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.logistics-access {
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.logistics-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.logistics-contact div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.logistics-contact > div:last-child {
  justify-items: end;
}

.logistics-contact strong {
  color: #111111;
  font-size: 14px;
}

.logistics-contact small,
.logistics-checklist small {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.logistics-contact a {
  color: rgba(23, 23, 19, 0.74);
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
}

.logistics-contact a:hover {
  color: #0f7a5f;
}

.logistics-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.auction-qa-panel {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.qa-heading,
.qa-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.qa-heading .eyebrow {
  margin-bottom: 5px;
}

.qa-heading h3 {
  font-size: 16px;
}

.qa-heading > span,
.qa-action-row span,
.qa-thread small {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
}

.qa-thread-list {
  display: grid;
  gap: 13px;
  margin-top: 14px;
}

.qa-thread {
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.08);
}

.qa-thread:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.qa-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(23, 23, 19, 0.6);
  font-size: 12px;
}

.qa-question span {
  color: rgba(23, 23, 19, 0.72);
  font-weight: 650;
}

.qa-thread h4 {
  margin-top: 6px;
  color: #111111;
  font-size: 14px;
  line-height: 1.35;
}

.qa-thread p {
  margin-top: 6px;
  color: rgba(23, 23, 19, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.qa-action-row {
  margin-top: 16px;
}

.qa-action-row button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
}

.due-diligence-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
}

.due-diligence-checklist span {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f4e3f;
  font-size: 12px;
  font-weight: 650;
}

.specialist-slots {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.specialist-slots-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.specialist-slots-heading .eyebrow {
  margin-bottom: 5px;
}

.specialist-slots-heading h3 {
  font-size: 16px;
}

.specialist-slots-heading > span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.specialist-slot-list {
  display: grid;
  gap: 8px;
}

.specialist-slot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 0;
  border-top: 1px solid rgba(23, 23, 19, 0.08);
  color: inherit;
  text-decoration: none;
}

.specialist-slot:hover .specialist-slot-copy strong {
  color: #0f7a5f;
}

.specialist-slot-kind {
  min-width: 52px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 999px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 11px;
  font-weight: 760;
}

.specialist-slot-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.specialist-slot-copy strong {
  color: #111111;
  font-size: 13px;
  transition: color 160ms ease;
}

.specialist-slot-copy small {
  overflow: hidden;
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.specialist-slot-status {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(23, 23, 19, 0.64);
  background: rgba(23, 23, 19, 0.06);
  font-size: 11px;
  font-weight: 680;
  white-space: nowrap;
}

.specialist-slot-status.status-available {
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
}

.specialist-slot-status.status-restricted {
  color: #6b4b00;
  background: rgba(159, 106, 0, 0.1);
}

.specialist-slot-status.status-pending {
  color: rgba(23, 23, 19, 0.58);
  background: rgba(23, 23, 19, 0.06);
}

.specialist-slot em {
  color: rgba(23, 23, 19, 0.68);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

.summary-grid {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
}

.attachment-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.attachment-heading .eyebrow {
  margin-bottom: 5px;
}

.attachment-heading h3 {
  font-size: 16px;
}

.attachment-heading > span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
}

.attachment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.attachment-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(23, 23, 19, 0.11);
  border-radius: 8px;
  padding: 9px 10px;
  color: rgba(23, 23, 19, 0.62);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.attachment-item:hover {
  border-color: rgba(15, 122, 95, 0.26);
  background: rgba(255, 255, 255, 0.86);
}

.attachment-type {
  min-width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.1);
  font-size: 11px;
  font-weight: 760;
}

.attachment-item strong,
.attachment-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-item strong {
  color: #111111;
  font-size: 13px;
}

.attachment-item small {
  margin-top: 2px;
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
}

.document-viewer {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.document-viewer[hidden] {
  display: none;
}

.document-viewer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.document-viewer h3 {
  margin: 2px 0 0;
  font-size: 15px;
  letter-spacing: 0;
}

.document-viewer iframe {
  width: 100%;
  height: 360px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.bid-panel {
  position: sticky;
  top: 96px;
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 16px;
  color: #171713;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 243, 0.72)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 23, 19, 0.13);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 28px 80px rgba(26, 25, 21, 0.13);
}

.bid-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 0%, rgba(15, 122, 95, 0.2), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(248, 214, 109, 0.24), transparent 30%);
  pointer-events: none;
}

.bid-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  position: relative;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(240, 248, 242, 0.72)),
    rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.bid-timer::before {
  content: none;
}

.timer-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timer-topline .eyebrow {
  margin: 0;
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
}

.timer-digits {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.timer-digits div {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.timer-digits span {
  min-width: 0;
  color: rgba(17, 17, 17, 0.9);
  font-size: 18px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.timer-digits em {
  color: rgba(23, 23, 19, 0.56);
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
  transform: none;
}

.timer-digits .seconds {
  background: transparent;
  box-shadow: none;
}

.timer-digits .seconds span {
  color: #0f7a5f;
}

.timer-track {
  display: none;
}

.timer-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f7a5f, #d2a43f, #0f7a5f);
  background-size: 180% 100%;
  box-shadow: 0 0 22px rgba(15, 122, 95, 0.2);
  transition: width 260ms ease;
  animation: timer-track-flow 2.8s linear infinite;
}

.bid-timer.is-ending .timer-digits span {
  color: #b45309;
  animation: timer-urgent 1s ease infinite;
}

.bid-timer.is-ended .timer-digits span {
  color: rgba(23, 23, 19, 0.44);
  animation: none;
}

.bid-panel.is-closed::before {
  background:
    radial-gradient(circle at 20% 0%, rgba(23, 23, 19, 0.08), transparent 34%),
    radial-gradient(circle at 100% 10%, rgba(15, 122, 95, 0.12), transparent 30%);
}

.bid-panel.is-closed .bid-timer {
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.bid-current {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3px 12px;
  padding: 1px 0;
}

.bid-current .eyebrow {
  color: rgba(23, 23, 19, 0.55);
}

.bid-current .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.bid-delta {
  flex: 0 0 auto;
  position: absolute;
  left: calc(100% + 12px);
  bottom: calc(100% + 6px);
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 999px;
  color: #0f7a5f;
  background: rgba(15, 122, 95, 0.08);
  font-size: 12px;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bid-price-line {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-width: 0;
}

.bid-current strong {
  color: #111111;
  font-size: 38px;
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.bid-current > span:not(.bid-delta) {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

.bid-counts {
  display: flex;
  align-items: center;
  gap: 0 6px;
  white-space: nowrap;
}

.bid-counts span + span::before {
  content: "·";
  margin-right: 6px;
}

.bid-current span,
.bid-feedback,
.bid-history-row small,
.bid-history-head span {
  color: rgba(23, 23, 19, 0.65);
  font-size: 12px;
}

.bid-form {
  display: grid;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.bid-form-label {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.bid-action {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: stretch;
}

.bid-form .bid-adjust {
  width: 44px;
  min-width: 44px;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: rgba(23, 23, 19, 0.76);
  background: rgba(247, 245, 239, 0.76);
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  box-shadow: none;
  font-size: 20px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

.bid-form .bid-adjust:hover {
  color: #ffffff;
  background: #0f7a5f;
  border-color: #0f7a5f;
  transform: none;
}

.bid-form .bid-submit {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding-inline: 14px;
  color: #ffffff;
  background: #111111;
  border-color: #111111;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.bid-form .bid-submit:hover {
  color: #ffffff;
  background: #0f7a5f;
  border-color: #0f7a5f;
  transform: translateY(-1px);
}

.bid-requirement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(15, 122, 95, 0.18);
  border-radius: 8px;
  background: rgba(15, 122, 95, 0.07);
}

.bid-requirement .eyebrow {
  margin: 0;
  color: #0f7a5f;
  font-size: 10px;
}

.bid-requirement h3 {
  margin: 2px 0 0;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0;
}

.bid-requirement p,
.bid-requirement small {
  display: block;
  margin: 4px 0 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.bid-requirement-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(15, 122, 95, 0.22);
  border-radius: 7px;
  color: #0f4e3f;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.bid-requirement-action:hover {
  color: #ffffff;
  background: #0f7a5f;
  border-color: #0f7a5f;
}

.bid-commitments {
  padding: 8px 10px;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.bid-commitments summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  color: rgba(23, 23, 19, 0.78);
  font-size: 12px;
  font-weight: 720;
}

.bid-commitments summary::-webkit-details-marker {
  display: none;
}

.bid-commitments summary::after {
  content: "+";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 50%;
  color: rgba(23, 23, 19, 0.62);
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1;
}

.bid-commitments[open] summary::after {
  content: "-";
}

.bid-commitments summary small {
  margin-left: auto;
  color: rgba(23, 23, 19, 0.46);
  font-size: 11px;
  font-weight: 580;
}

.bid-commitments ul {
  display: grid;
  gap: 7px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.bid-commitments li {
  display: grid;
  gap: 2px;
  padding-top: 7px;
  border-top: 1px solid rgba(23, 23, 19, 0.07);
}

.bid-commitments li strong {
  color: rgba(23, 23, 19, 0.82);
  font-size: 11.5px;
  font-weight: 720;
}

.bid-commitments li span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 11px;
  line-height: 1.3;
}

.bid-timing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-radius: 8px;
  color: rgba(23, 23, 19, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 248, 214, 0.72), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.bid-timing-note strong {
  color: #8a4d05;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.bid-timing-note span {
  min-width: 0;
  text-align: right;
}

.max-bid-education {
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(36, 113, 163, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 113, 163, 0.07), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.58);
}

.max-bid-copy {
  min-width: 0;
}

.max-bid-education .eyebrow {
  margin: 0 0 3px;
  color: #1d5f8b;
}

.max-bid-education strong {
  display: block;
  color: rgba(23, 23, 19, 0.86);
  font-size: 13px;
  line-height: 1.2;
}

.max-bid-education span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 23, 19, 0.62);
  font-size: 11.5px;
  line-height: 1.35;
}

.max-bid-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.max-bid-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: rgba(23, 23, 19, 0.54);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.max-bid-form input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(23, 23, 19, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(23, 23, 19, 0.88);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
}

.max-bid-form input:focus {
  outline: 2px solid rgba(15, 122, 95, 0.2);
  border-color: rgba(15, 122, 95, 0.42);
}

.max-bid-form button {
  height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: #11110f;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  white-space: nowrap;
}

.max-bid-form button:disabled,
.max-bid-form input:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.max-bid-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px;
  align-items: center;
}

.max-bid-status-row span {
  margin: 0;
  color: #0f7a5f;
  font-size: 11px;
  font-weight: 760;
}

.max-bid-status-row button {
  padding: 3px 8px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(23, 23, 19, 0.58);
  font: inherit;
  font-size: 10.5px;
  font-weight: 720;
  cursor: pointer;
}

.max-bid-status-row button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.max-bid-status-row small {
  grid-column: 1 / -1;
  color: rgba(23, 23, 19, 0.52);
  font-size: 10.5px;
  line-height: 1.35;
}

.max-bid-feedback {
  margin: 0;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.35;
}

.max-bid-feedback.success {
  color: #0f7a5f;
}

.max-bid-feedback.error {
  color: #9b2c2c;
}

.max-bid-education dl {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  margin: 0;
}

.max-bid-education dl div {
  min-width: 0;
  padding-top: 7px;
  border-top: 1px solid rgba(36, 113, 163, 0.12);
}

.max-bid-education dt {
  margin-bottom: 3px;
  color: rgba(23, 23, 19, 0.46);
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.max-bid-education dd {
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-size: 10.5px;
  font-weight: 640;
  line-height: 1.25;
}

.bid-extension {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 122, 95, 0.22);
  border-radius: 8px;
  color: rgba(23, 23, 19, 0.72);
  background:
    linear-gradient(90deg, rgba(15, 122, 95, 0.12), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.58);
  font-size: 12px;
  animation: bid-extension-enter 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bid-extension strong {
  color: #0f7a5f;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.bid-extension span {
  min-width: 0;
  text-align: right;
}

.bid-extension-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
  color: rgba(23, 23, 19, 0.66);
  background: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.bid-extension-rule strong {
  color: rgba(23, 23, 19, 0.82);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.bid-extension-rule span {
  min-width: 0;
  text-align: right;
}

.bid-outcome {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 122, 95, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 122, 95, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.62);
}

.bid-outcome .eyebrow {
  margin: 0;
  color: #0f7a5f;
}

.bid-outcome h3 {
  margin: 3px 0 0;
  color: #111111;
  font-size: 18px;
  letter-spacing: 0;
}

.bid-outcome p {
  margin: 6px 0 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.settlement-deadline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(15, 122, 95, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.settlement-deadline span {
  color: rgba(23, 23, 19, 0.58);
  font-size: 12px;
  font-weight: 720;
}

.settlement-deadline strong {
  color: #111111;
  font-size: 13px;
}

.post-auction-workflow {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.post-auction-workflow .eyebrow {
  margin: 0;
  color: rgba(23, 23, 19, 0.54);
}

.post-auction-workflow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-auction-workflow li {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 3px solid rgba(23, 23, 19, 0.12);
}

.post-auction-workflow li.is-active {
  border-top-color: #0f7a5f;
}

.post-auction-workflow li strong {
  color: rgba(23, 23, 19, 0.82);
  font-size: 11px;
  font-weight: 760;
}

.post-auction-workflow li span {
  color: rgba(23, 23, 19, 0.52);
  font-size: 10px;
  line-height: 1.2;
}

.bid-outcome ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bid-outcome li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: rgba(23, 23, 19, 0.72);
  font-size: 12px;
}

.bid-outcome li strong {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #0f7a5f;
  font-size: 11px;
}

.settlement-task-list {
  gap: 8px;
}

.settlement-task span {
  display: grid;
  gap: 2px;
}

.settlement-task small {
  color: rgba(23, 23, 19, 0.5);
  font-size: 11px;
  font-weight: 680;
}

.settlement-task.is-completed strong {
  background: #0f7a5f;
}

.settlement-task.is-in_progress strong {
  color: #111111;
  background: #f2d36b;
}

.settlement-task.is-blocked strong {
  background: #b4533f;
}

.bid-feedback {
  margin: 0;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.3;
}

.bid-feedback:empty {
  display: none;
}

.bid-feedback:not(:empty) {
  display: flex;
}

.bid-panel.is-winning .bid-feedback {
  color: #0f4e3f;
  background: rgba(15, 122, 95, 0.08);
  font-weight: 650;
}

.bid-panel.has-warning .bid-feedback {
  color: #6f4600;
  background: rgba(159, 106, 0, 0.1);
  border: 1px solid rgba(159, 106, 0, 0.16);
}

.bid-feedback.is-flashing {
  animation: feedback-pop 820ms ease both;
}

.bid-panel.just-bid {
  animation: bid-pop 680ms ease both;
}

.bid-panel.just-bid .bid-delta {
  animation: bid-delta-pop 1200ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.bid-panel.just-bid .bid-history-row:first-child {
  animation: bid-card-enter 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bid-history {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  overflow: hidden;
}

.bid-history-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.bid-history h3 {
  margin: 2px 0 0;
  font-size: 14px;
  letter-spacing: 0;
}

.bid-history ol {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.bid-history ol::-webkit-scrollbar {
  display: none;
}

.bid-history ol.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.bid-history-row {
  position: relative;
  flex: 0 0 154px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 7px;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  scroll-snap-align: start;
}

.bid-history-row.is-leading {
  border-color: rgba(15, 122, 95, 0.24);
  background: linear-gradient(135deg, rgba(15, 122, 95, 0.09), rgba(255, 255, 255, 0.78));
}

.bid-history-row.is-auto {
  border-color: rgba(36, 113, 163, 0.18);
  background: linear-gradient(135deg, rgba(36, 113, 163, 0.08), rgba(255, 255, 255, 0.78));
}

.bid-history-row.is-extension {
  border-color: rgba(159, 106, 0, 0.22);
  background: linear-gradient(135deg, rgba(242, 211, 107, 0.18), rgba(255, 255, 255, 0.8));
}

.bid-history-row.is-empty {
  flex-basis: 220px;
  grid-template-columns: minmax(0, 1fr);
}

.bid-history-row.is-empty b {
  color: #77746d;
  font-weight: 500;
}

.bid-history-row.is-you {
  color: #ffffff;
  border-color: rgba(15, 122, 95, 0.72);
  background:
    linear-gradient(135deg, rgba(15, 122, 95, 0.98), rgba(14, 95, 76, 0.92)),
    #0f7a5f;
  box-shadow: 0 12px 32px rgba(15, 122, 95, 0.24);
  animation: history-arrive 760ms ease both;
}

.bidder-avatar {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #171713;
  font-size: 9px;
  font-weight: 760;
}

.bidder-avatar svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bid-history-row.is-leading .bidder-avatar {
  background: #0f7a5f;
  box-shadow: 0 0 0 5px rgba(15, 122, 95, 0.12);
}

.bid-history-row.is-auto .bidder-avatar {
  background: #2471a3;
  box-shadow: 0 0 0 5px rgba(36, 113, 163, 0.1);
}

.bid-history-row.is-extension .bidder-avatar {
  color: #735100;
  background: rgba(242, 211, 107, 0.5);
  box-shadow: 0 0 0 5px rgba(242, 211, 107, 0.18);
}

.bid-history-row.is-you .bidder-avatar {
  color: #0f7a5f;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.bidder-meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.bidder-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.bidder-meta strong {
  color: rgba(17, 17, 17, 0.84);
  font-size: 10px;
  font-weight: 630;
}

.bid-history-row.is-you .bidder-meta strong,
.bid-history-row.is-you b {
  color: #ffffff;
}

.bid-history-row.is-you small {
  color: rgba(255, 255, 255, 0.76);
}

.bid-history-row small {
  white-space: nowrap;
}

.bid-history-kind {
  width: fit-content;
  padding: 2px 6px;
  border-radius: 999px;
  color: rgba(23, 23, 19, 0.62);
  background: rgba(23, 23, 19, 0.05);
  font-size: 9px;
  font-weight: 720;
  line-height: 1.1;
}

.bid-history-row.is-auto .bid-history-kind {
  color: #1d5f8b;
  background: rgba(36, 113, 163, 0.1);
}

.bid-history-row.is-extension .bid-history-kind {
  color: #735100;
  background: rgba(242, 211, 107, 0.42);
}

.bid-history-row.is-you .bid-history-kind {
  color: #0f4e3f;
  background: rgba(255, 255, 255, 0.82);
}

.bidder-meta strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-history-row b {
  color: rgba(17, 17, 17, 0.66);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  text-align: left;
}

.bid-history-note {
  overflow: hidden;
  color: rgba(23, 23, 19, 0.52);
  font-size: 10px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-history-row.is-you .bid-history-note {
  color: rgba(255, 255, 255, 0.74);
}

.bid-history-details {
  border-top: 1px solid rgba(23, 23, 19, 0.08);
  padding-top: 8px;
}

.bid-history-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  color: rgba(23, 23, 19, 0.76);
  font-size: 12px;
  font-weight: 680;
}

.bid-history-details summary::-webkit-details-marker {
  display: none;
}

.bid-history-details summary::after {
  content: "+";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 50%;
  color: rgba(23, 23, 19, 0.64);
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1;
}

.bid-history-details[open] summary::after {
  content: "-";
}

.bid-history-details summary small {
  margin-left: auto;
  color: rgba(23, 23, 19, 0.46);
  font-size: 11px;
  font-weight: 580;
}

.bid-history-table-wrap {
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.bid-history-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 11px;
}

.bid-history-table-wrap th,
.bid-history-table-wrap td {
  padding: 8px 7px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.07);
  color: rgba(23, 23, 19, 0.66);
  text-align: left;
  white-space: nowrap;
}

.bid-history-table-wrap th {
  color: rgba(23, 23, 19, 0.48);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.bid-history-table-wrap td:nth-child(2),
.bid-history-table-wrap td:nth-child(3) {
  color: rgba(23, 23, 19, 0.8);
  font-weight: 660;
}

.bid-history-table-wrap td:last-child {
  white-space: normal;
}

@keyframes bid-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.018); }
  100% { transform: scale(1); }
}

@keyframes feedback-pop {
  0% { transform: translateY(4px); }
  45% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

@keyframes bid-delta-pop {
  0% { opacity: 0; transform: translateY(6px) scale(0.92); }
  18% { opacity: 1; transform: translateY(-2px) scale(1.04); }
  55% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0.86; transform: translateY(0) scale(1); }
}

@keyframes bid-card-enter {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.96);
    filter: saturate(1.2);
  }
  45% {
    opacity: 1;
    transform: translateX(5px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes timer-urgent {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

@keyframes timer-shine {
  0%, 54% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes timer-track-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 180% 50%; }
}

@keyframes bid-extension-enter {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes history-arrive {
  0% { opacity: 0; transform: translateY(-8px) scale(0.98); }
  55% { opacity: 1; transform: translateY(2px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.group-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.group-card p {
  margin-top: 10px;
}

.group-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 23, 19, 0.2);
  box-shadow: 0 18px 52px rgba(26, 25, 21, 0.08);
}

@media (max-width: 940px) {
  .landing,
  .asset-detail {
    grid-template-columns: 1fr;
  }

  .group-event-panel,
  .group-campaign-panel,
  .group-lot-grid,
  .group-resource-panel,
  .asset-fact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-campaign-copy {
    min-height: 210px;
  }

  .group-campaign-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-card {
    grid-template-rows: auto auto;
  }

  .featured-media {
    height: 420px;
  }

  .bid-panel {
    position: static;
  }

  .asset-copy {
    min-height: auto;
  }

  .asset-hero {
    height: 520px;
  }

  .asset-gallery {
    height: auto;
  }

  .asset-gallery-main {
    height: 480px;
  }

  .auction-grid,
  .group-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tenant-site {
    padding-bottom: 196px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }

  .landing,
  .landing-modules,
  .search-results,
  .groups-section,
  .detail-page,
  .asset-detail,
  .state-panel {
    padding: 26px 18px;
  }

  .landing {
    gap: 30px;
    padding-top: 34px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  h2 {
    font-size: 27px;
  }

  .landing-summary {
    font-size: 16px;
  }

  .section-heading,
  .detail-page-heading {
    align-items: start;
    flex-direction: column;
  }

  .search-box,
  .landing-stats,
  .auction-grid,
  .group-grid,
  .group-lot-grid,
  .compact-grid,
  .group-event-panel,
  .group-campaign-panel,
  .group-resource-panel,
  .asset-fact-panel,
  .attachment-list,
  .bid-metrics,
  .summary-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .group-campaign-copy {
    min-height: auto;
  }

  .group-campaign-copy h3 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .group-campaign-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-lot-header {
    align-items: start;
    flex-direction: column;
  }

  .group-lot-card {
    grid-template-columns: 1fr;
  }

  .group-lot-media {
    height: 220px;
  }

  .qa-heading,
  .qa-action-row,
  .condition-heading,
  .location-heading,
  .logistics-heading,
  .specialist-slots-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .specialist-slot {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .specialist-slot-status,
  .specialist-slot em {
    grid-column: 2;
    justify-self: start;
  }

  .condition-list,
  .location-insight,
  .landmark-list,
  .seller-metrics,
  .logistics-timeline,
  .logistics-checklist {
    grid-template-columns: 1fr;
  }

  .logistics-contact {
    grid-template-columns: 1fr;
  }

  .logistics-contact > div:last-child {
    justify-items: start;
  }

  .seller-profile-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .seller-profile-head > strong {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .landing-stats div,
  .landing-stats div + div {
    padding: 12px 0;
    border-left: 0;
  }

  .landing-stats div + div {
    border-top: 1px solid rgba(23, 23, 19, 0.12);
  }

  .featured-card {
    grid-template-rows: auto auto;
  }

  .featured-media {
    height: 300px;
  }

  .featured-content,
  .asset-copy,
  .bid-panel {
    padding: 18px;
  }

  .asset-command-bar,
  .attachment-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .bid-panel {
    position: fixed;
    top: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 30;
    gap: 7px;
    max-height: min(196px, calc(100dvh - 28px));
    padding: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(26, 25, 21, 0.2);
  }

  .bid-panel::before {
    background:
      radial-gradient(circle at 12% 10%, rgba(15, 122, 95, 0.12), transparent 34%),
      radial-gradient(circle at 100% 0%, rgba(248, 214, 109, 0.16), transparent 32%);
  }

  .bid-timer {
    min-height: 29px;
    padding: 0 8px;
  }

  .timer-topline .eyebrow {
    font-size: 10px;
  }

  .timer-digits {
    gap: 8px;
  }

  .timer-digits span {
    font-size: 14px;
  }

  .timer-digits em {
    font-size: 10px;
  }

  .bid-current {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 2px 8px;
    min-height: 52px;
    padding: 0;
  }

  .bid-current .eyebrow {
    display: block;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 10px;
    line-height: 1;
  }

  .bid-price-line {
    grid-column: 1;
    grid-row: 2;
    gap: 7px;
  }

  .bid-current strong {
    font-size: 30px;
    line-height: 1;
  }

  .bid-current > span:not(.bid-delta) {
    grid-column: 2;
    grid-row: 2;
    max-width: 108px;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: right;
  }

  .post-auction-workflow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bid-counts {
    display: grid;
    justify-items: end;
    gap: 1px;
    white-space: normal;
  }

  .bid-counts span {
    white-space: nowrap;
  }

  .bid-counts span + span::before {
    content: "";
    margin-right: 0;
  }

  .bid-delta {
    position: static;
    min-height: 21px;
    margin-top: 0;
    font-size: 11px;
  }

  .bid-form {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .bid-feedback {
    display: none;
  }

  .bid-form-label {
    display: none;
  }

  .bid-action {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 7px;
  }

  .bid-form .bid-adjust,
  .bid-form .bid-submit {
    min-height: 42px;
  }

  .bid-form .bid-adjust {
    width: 38px;
    min-width: 38px;
    font-size: 18px;
  }

  .bid-requirement {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 9px 10px;
  }

  .bid-requirement h3 {
    font-size: 13px;
  }

  .bid-requirement p,
  .bid-requirement small {
    font-size: 11px;
  }

  .bid-requirement-action {
    width: 100%;
    min-height: 30px;
  }

  .bid-commitments {
    padding: 7px 9px;
  }

  .bid-commitments summary {
    font-size: 10.5px;
  }

  .bid-commitments summary small,
  .bid-commitments li span {
    font-size: 10px;
  }

  .bid-commitments li strong {
    font-size: 10.5px;
  }

  .bid-timing-note {
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .bid-timing-note strong {
    font-size: 10.5px;
  }

  .max-bid-education {
    gap: 4px;
    padding: 7px 9px;
  }

  .max-bid-education strong {
    font-size: 11px;
  }

  .max-bid-education span {
    margin-top: 2px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .max-bid-education dl {
    display: none;
  }

  .bid-extension {
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .bid-extension strong {
    font-size: 10.5px;
  }

  .bid-extension-rule {
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .bid-extension-rule strong {
    font-size: 10.5px;
  }

  .bid-history {
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .bid-history-head {
    display: none;
  }

  .bid-history ol {
    gap: 6px;
  }

  .bid-history-row {
    flex-basis: 126px;
    min-height: 38px;
    gap: 5px;
    padding: 6px;
  }

  .bidder-avatar {
    width: 21px;
    height: 21px;
    font-size: 8px;
  }

  .bidder-avatar svg {
    width: 12px;
    height: 12px;
  }

  .bidder-line {
    gap: 5px;
  }

  .bidder-meta strong {
    font-size: 9px;
  }

  .bid-history-row small,
  .bid-history-row b {
    font-size: 10px;
  }

  .auction-card-media {
    height: 220px;
  }

  .asset-hero {
    height: 360px;
  }

  .asset-gallery {
    height: auto;
  }

  .asset-gallery-main {
    height: 320px;
  }

  .asset-gallery-thumbs {
    grid-template-columns: none;
    grid-auto-columns: 92px;
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .sort-control {
    width: 100%;
    margin-left: 0;
  }

  .sort-control select {
    flex: 1;
  }
}

@media (max-width: 430px) {
  .tenant-site {
    padding-bottom: 154px;
  }

  .bid-panel {
    max-height: 154px;
  }

  .bid-history {
    display: none;
  }
}
