/* Phase 2 auction and dealer catalog surfaces */
.auction-hero-banner {
  position: relative;
  overflow: hidden;
  padding-top: clamp(26px, 4vw, 44px) !important;
  padding-bottom: clamp(18px, 3vw, 28px) !important;
  background: #fff !important;
}

.hero-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto -3px;
}

.hero-banner-header .eyebrow {
  margin: 0;
  min-width: 0;
  color: #111;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .32em;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-banner-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 186px;
  min-height: 0;
  margin: 0 auto 10px;
  padding: 0;
  border: 0;
  background: #fff;
  overflow: visible;
  touch-action: pan-y;
  transition: background .24s ease, border-color .24s ease, color .24s ease;
}

.hero-banner-top {
  display: none;
}

.hero-banner-top .eyebrow {
  display: none;
}

.hero-see-all {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  color: #686868;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-see-all::after {
  content: " →";
}

.hero-banner-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 26px 32px;
  border: 0;
  background: #fff;
  overflow: hidden;
  will-change: transform, opacity;
  transition: background .24s ease, border-color .24s ease, color .24s ease;
}

.hero-banner-content > * {
  position: relative;
  z-index: 1;
}

.hero-banner-content.is-archive {
  padding: 4px 0;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-frame {
  background: #fff;
  color: #111;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content {
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 11px;
  background: #3b3936;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .12);
  color: #fff;
  text-align: left;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content::before,
.auction-hero-banner[data-banner-type="auction"] .hero-banner-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content::before {
  background-image: var(--banner-bg);
  background-size: var(--banner-bg-size, cover);
  background-position: var(--banner-bg-position, center);
  filter: var(--banner-bg-filter, none);
  opacity: var(--banner-bg-opacity, .92);
  transform: scale(var(--banner-bg-scale, 1.015)) rotate(var(--banner-bg-rotate, 0deg));
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content::after {
  background:
    linear-gradient(90deg, rgba(42, 41, 39, .84) 0%, rgba(42, 41, 39, .66) 42%, rgba(42, 41, 39, .25) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .12), rgba(255, 255, 255, .04));
}

.auction-hero-banner[data-banner-clickable="true"] .hero-banner-frame {
  cursor: pointer;
}

.auction-hero-banner[data-banner-clickable="true"] .hero-banner-frame:active {
  transform: translateY(1px);
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1,
.auction-hero-banner[data-banner-type="auction"] .hero-banner-content > p,
.auction-hero-banner[data-banner-type="auction"] .hero-banner-meta,
.auction-hero-banner[data-banner-type="auction"] .hero-banner-meta span:first-child {
  color: #fff !important;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content > p,
.auction-hero-banner[data-banner-type="auction"] .hero-banner-meta {
  opacity: 1;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-status {
  align-self: flex-start;
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, .86);
  color: #fff !important;
  background: rgba(255, 255, 255, .14);
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1 {
  width: 100%;
  min-height: 0;
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-medium {
  font-size: clamp(20px, 2.7vw, 30px);
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-long {
  font-size: clamp(18px, 2.35vw, 26px);
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-xlong {
  font-size: clamp(16px, 2vw, 22px);
}

.auction-hero-banner[data-banner-type="auction"] .hero-banner-content > p {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-banner-content h1 {
  font-family: var(--sans);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 520;
  letter-spacing: -.08em;
  line-height: 1.18;
}

.hero-banner-content h1 em {
  font-style: normal;
  font-weight: 520;
}

.hero-title-keep {
  white-space: nowrap;
}

.hero-banner-content > p,
.hero-banner-content .hero-banner-meta {
  max-width: 720px;
}

.hero-banner-content > p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.62;
}

.hero-banner-preview,
.hero-banner-date {
  width: 100%;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-banner-date {
  margin-top: 2px;
}

.hero-banner-content.is-archive > p {
  font-size: 17px;
  line-height: 1.58;
}

.hero-banner-content.banner-enter-next {
  animation: bannerSlideNext .42s cubic-bezier(.22, .74, .2, 1) both;
}

.hero-banner-content.banner-enter-prev {
  animation: bannerSlidePrev .42s cubic-bezier(.22, .74, .2, 1) both;
}

.hero-banner-status {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 25px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid #111;
  color: #111;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: -.04em;
}

.hero-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 12px;
  color: #747474;
  font-size: 11px;
  font-weight: 620;
  letter-spacing: -.03em;
}

.hero-banner-meta span:first-child {
  color: #111;
  letter-spacing: .18em;
}

.hero-banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 29px;
  position: relative;
  z-index: 2;
}

.auction-hero-banner .search-wrap {
  width: 95%;
  max-width: 751px;
  height: 50px !important;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px !important;
}

.auction-hero-banner .search-wrap input {
  padding-left: 11px !important;
}

.auction-hero-banner .search-wrap button {
  height: 34px;
}

.auction-hero-banner .popular {
  width: 95%;
  max-width: 751px;
  margin-top: 5px !important;
  margin-left: auto;
  margin-right: auto;
}

.auction-hero-banner + .workspace {
  padding-top: 30px;
}

.hero-banner-dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: #cfcfcf;
  padding: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.hero-banner-dots button.active {
  background: #4b4945;
  transform: scale(1.18);
}

@keyframes bannerSlideNext {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bannerSlidePrev {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.auction-list-page,
.dealer-view {
  padding-bottom: calc(132px + env(safe-area-inset-bottom));
}

.auction-list-page {
  padding-top: 45px;
}

.auction-update-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 14px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.auction-update-notice span {
  color: #111;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .22em;
}

.auction-update-notice p {
  margin: 0;
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -.04em;
}

.auction-list-hero,
.dealer-hero,
.dealer-access-card,
.dealer-board,
.dealer-auction-form-panel {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 34px;
}

.auction-list-page .auction-list-hero {
  padding-bottom: 17px;
}

.auction-list-hero h1,
.dealer-hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 7vw, 66px);
  font-weight: 520;
  letter-spacing: -.08em;
  line-height: 1.18;
}

.auction-list-hero p,
.dealer-hero p:not(.section-kicker),
.dealer-access-card p,
.dealer-board p,
.dealer-auction-form-panel p {
  color: #707070;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: -.04em;
  line-height: 1.62;
}

.auction-list-page .auction-list-hero p {
  margin: 12px 0 0;
}

.auction-list-tools,
.dealer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 30px 0 22px;
}

.auction-list-page .auction-list-tools {
  margin-top: 15px;
}

.auction-list-tabs,
.dealer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 720px) {
  .auction-list-page {
    padding-top: 30px;
  }

  .auction-list-page .auction-list-hero {
    padding-bottom: 14px;
  }

  .auction-list-page .auction-list-tools {
    margin-top: 14px;
  }
}

.auction-list-tabs button,
.dealer-tabs button {
  min-height: 38px;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #747474;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: -.04em;
}

.auction-list-tabs button.active,
.dealer-tabs button.active {
  border-color: #3b3936;
  color: #111;
}

.auction-list-count,
.dealer-list-count {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: -.03em;
}

.auction-list-grid,
.dealer-auction-list {
  display: grid;
  gap: 14px;
}

.auction-list-grid.is-banner-list {
  gap: 13px;
}

.auction-banner-list-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  background: #3b3936;
  color: #fff;
  isolation: isolate;
}

.auction-banner-list-card::before,
.auction-banner-list-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.auction-banner-list-card::before {
  z-index: 0;
  background-image: var(--banner-bg);
  background-size: var(--banner-bg-size, cover);
  background-position: var(--banner-bg-position, center);
  filter: var(--banner-bg-filter, none);
  opacity: var(--banner-bg-opacity, .92);
  transform: scale(var(--banner-bg-scale, 1.015)) rotate(var(--banner-bg-rotate, 0deg));
}

.auction-banner-list-card::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(42, 41, 39, .86) 0%, rgba(42, 41, 39, .66) 46%, rgba(42, 41, 39, .22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .10), rgba(255, 255, 255, .03));
}

.auction-banner-list-card button {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 7px;
  width: 100%;
  min-height: 154px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 24px 54px 24px 25px;
  text-align: left;
  cursor: pointer;
}

.auction-banner-list-status {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .11);
  color: #fff;
  padding: 0 10px;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
}

.auction-banner-list-card strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(20px, 4.8vw, 31px);
  font-weight: 680;
  letter-spacing: -.075em;
  line-height: 1.08;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.auction-banner-list-card strong.is-title-medium {
  font-size: clamp(18px, 4.1vw, 27px);
}

.auction-banner-list-card strong.is-title-long {
  font-size: clamp(16px, 3.7vw, 23px);
}

.auction-banner-list-card strong.is-title-xlong {
  font-size: clamp(14px, 3.2vw, 20px);
}

.auction-banner-list-line {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1.22;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.auction-banner-list-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 24px;
  font-weight: 360;
  line-height: 1;
}

.auction-public-card,
.dealer-auction-card,
.auction-detail-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid #e3e3e3;
  background: #fff;
}

.auction-detail-mode .auction-list-tabs {
  display: none;
}

.auction-card-head,
.dealer-auction-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auction-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  background: #343434;
  color: #fff;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: -.04em;
}

.auction-status-pill[data-status="draft"] {
  background: #f3f3f3;
  color: #555;
}

.auction-status-pill[data-status="live"] {
  background: #3b3936;
  color: #fff;
}

.auction-card-head time,
.dealer-auction-card-head time {
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: -.03em;
}

.auction-public-card h2,
.auction-detail-card h2,
.dealer-auction-card h2 {
  margin: 0;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(22px, 4.8vw, 34px);
  font-weight: 640;
  letter-spacing: -.08em;
  line-height: 1.18;
}

.auction-public-card p,
.auction-detail-card p,
.dealer-auction-card p {
  margin: 0;
  color: #777;
  font-size: 13px;
  font-weight: 540;
  letter-spacing: -.04em;
}

.auction-card-meta,
.dealer-auction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auction-card-meta span,
.dealer-auction-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid #e2e2e2;
  padding: 0 9px;
  color: #686868;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: -.03em;
}

.auction-lot-preview {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid #efefef;
  list-style: none;
}

.auction-lot-preview li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  color: #111;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -.04em;
}

.auction-lot-preview em {
  color: #8a8a8a;
  font-style: normal;
  font-weight: 520;
}

.auction-detail-lots {
  gap: 11px;
  padding-top: 18px;
}

.auction-detail-lots li {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: baseline;
}

.auction-detail-lots b {
  color: #aaa;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
}

.auction-back-button {
  justify-self: start;
  border: 0;
  border-bottom: 1px solid #111;
  background: transparent;
  color: #111;
  padding: 0 0 4px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: -.04em;
  cursor: pointer;
}

.auction-card-actions,
.dealer-auction-actions,
.dealer-form-actions,
.dealer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auction-card-actions a,
.auction-card-actions button,
.dealer-auction-actions button,
.dealer-auction-actions a,
.dealer-form-actions button,
.dealer-primary-action,
.dealer-secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: -.04em;
  text-decoration: none;
  cursor: pointer;
}

.auction-card-actions button,
.dealer-auction-actions button[data-action="publish-catalog"],
.dealer-form-actions button[type="submit"],
.dealer-primary-action {
  background: #3b3936;
  color: #fff;
}

.dealer-dashboard {
  display: grid;
  gap: 24px;
}

.dealer-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dealer-summary-card {
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.dealer-summary-card strong {
  color: #111;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: 1;
}

.dealer-summary-card span {
  margin-top: 17px;
  color: #777;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: -.04em;
}

.dealer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dealer-form-grid label,
.dealer-auction-form-panel label {
  display: grid;
  gap: 7px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.dealer-form-grid input,
.dealer-form-grid select,
.dealer-auction-form-panel textarea {
  width: 100%;
  border: 1px solid #dedede;
  background: #fff;
  color: #111;
  padding: 12px;
  font-size: 14px;
  font-weight: 620;
}

.dealer-auction-form-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.dealer-empty,
.auction-empty {
  padding: 54px 20px;
  border: 1px solid #ececec;
  color: #777;
  text-align: center;
}

.dealer-empty strong,
.auction-empty strong {
  display: block;
  color: #111;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -.05em;
}

@media (max-width: 720px) {
  .hero-banner-content {
    padding: 0;
  }

  .hero-banner-frame {
    height: 166px;
    min-height: 0;
    margin-bottom: 9px;
    padding: 0;
  }

  .hero-banner-content {
    padding: 16px 17px;
  }

  .hero-banner-content.is-archive {
    padding: 2px 0;
  }

  .hero-banner-header {
    margin-bottom: -3px;
    gap: 10px;
  }

  .hero-banner-header .eyebrow {
    font-size: 9px;
    letter-spacing: .22em;
  }

  .hero-see-all {
    font-size: 9px;
    letter-spacing: .14em;
  }

  .hero-banner-content h1 {
    font-size: 26px;
    line-height: 1.16;
  }

  .hero-banner-content.is-archive h1 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -.075em;
  }

  .hero-banner-content > p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-banner-content.is-archive > p {
    font-size: 15px;
    line-height: 1.5;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1 {
    font-size: 23px;
    line-height: 1.15;
  }

  .hero-banner-dots {
    margin-bottom: 25px;
  }

  .auction-hero-banner .search-wrap {
    width: 95%;
    height: 44px !important;
    min-height: 44px;
    margin-left: auto;
    margin-right: auto;
  }

  .auction-hero-banner .search-wrap button {
    height: 31px;
  }

  .auction-hero-banner .popular {
    width: 95%;
    margin-top: 4px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .auction-hero-banner + .workspace {
    padding-top: 21px;
  }

  .hero-banner-status {
    min-height: 23px;
    margin-bottom: 9px;
    font-size: 9px;
  }

  .hero-banner-meta {
    gap: 7px 12px;
    margin-top: 10px;
    font-size: 10px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content {
    padding: 17px 18px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-status {
    min-height: 20px;
    margin-bottom: 10px;
    padding: 0 8px;
    font-size: 8.8px;
    letter-spacing: -.02em;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1 {
    min-height: 0;
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -.075em;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-medium {
    font-size: 16.5px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-long {
    font-size: 15px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-xlong {
    font-size: 13.5px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content > p {
    margin-top: 22px;
    font-size: 10.5px;
    line-height: 1.26;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content > .hero-banner-date {
    margin-top: 11px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-meta {
    gap: 4px 8px;
    margin-top: 6px;
    font-size: 8.8px;
    line-height: 1.28;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-meta span:first-child {
    letter-spacing: .12em;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-meta span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .auction-list-tools,
  .dealer-toolbar {
    align-items: flex-start;
  }

  .auction-update-notice {
    margin-bottom: 24px;
    padding: 12px 0;
  }

  .auction-update-notice p {
    font-size: 12px;
    line-height: 1.35;
  }

  .auction-banner-list-card {
    min-height: 136px;
  }

  .auction-banner-list-card button {
    min-height: 136px;
    padding: 18px 45px 18px 18px;
  }

  .auction-banner-list-status {
    min-height: 19px;
    padding: 0 8px;
    font-size: 8px;
  }

  .auction-banner-list-card strong {
    font-size: 17px;
  }

  .auction-banner-list-card strong.is-title-medium {
    font-size: 15.5px;
  }

  .auction-banner-list-card strong.is-title-long {
    font-size: 14px;
  }

  .auction-banner-list-card strong.is-title-xlong {
    font-size: 12.8px;
  }

  .auction-banner-list-line {
    font-size: 10.2px;
  }

  .auction-banner-list-arrow {
    right: 17px;
    bottom: 17px;
    font-size: 20px;
  }

  .dealer-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auction-detail-lots li {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .auction-detail-lots em {
    grid-column: 2;
  }

  .dealer-form-grid {
    grid-template-columns: 1fr;
  }

  .auction-public-card,
  .dealer-auction-card {
    padding: 20px 17px;
  }
}

@media (max-width: 430px) {
  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content {
    padding: 16px 17px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-status {
    min-height: 18px;
    margin-bottom: 8px;
    padding: 0 7px;
    font-size: 8px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1 {
    min-height: 0;
    font-size: 17px;
    line-height: 1.08;
    letter-spacing: -.07em;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-medium {
    font-size: 15.5px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-long {
    font-size: 14px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content h1.is-title-xlong {
    font-size: 12.8px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content > p {
    margin-top: 21px;
    font-size: 10px;
    line-height: 1.32;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-content > .hero-banner-date {
    margin-top: 10px;
  }

  .auction-hero-banner[data-banner-type="auction"] .hero-banner-meta {
    margin-top: 5px;
    font-size: 8px;
    line-height: 1.22;
  }
}

/* 2026-07-31: mobile home hero final override.
   This stays at the end because earlier auction banner rules are intentionally broad. */
@media (max-width: 720px) {
  .auction-hero-banner {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .auction-hero-banner .hero-banner-header {
    margin-bottom: 0 !important;
  }

  .auction-hero-banner .hero-banner-frame {
    height: auto !important;
    min-height: 126px !important;
    margin: 0 auto 4px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .auction-hero-banner .hero-banner-content.is-archive {
    justify-content: center !important;
    padding: 4px 0 0 !important;
  }

  .auction-hero-banner .hero-banner-content.is-archive h1 {
    max-width: 100% !important;
    font-size: clamp(24px, 6.35vw, 28px) !important;
    line-height: 1.23 !important;
    letter-spacing: -0.082em !important;
    font-weight: 470 !important;
  }

  .auction-hero-banner .hero-title-keep {
    display: inline-block !important;
    white-space: nowrap !important;
  }

  .auction-hero-banner .hero-banner-content.is-archive > p {
    max-width: 92% !important;
    margin-top: 13px !important;
    font-size: 14.4px !important;
    line-height: 1.46 !important;
    letter-spacing: -0.052em !important;
  }

  .auction-hero-banner .hero-banner-dots {
    min-height: 8px !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
  }

  .auction-hero-banner .search-wrap {
    width: 88% !important;
    height: 39px !important;
    min-height: 39px !important;
    margin-inline: auto !important;
    padding-left: 10px !important;
  }

  .auction-hero-banner .search-wrap input {
    font-size: 14.2px !important;
    padding-left: 8px !important;
  }

  .auction-hero-banner .search-wrap button {
    height: 28px !important;
    padding-inline: 15px !important;
    background: #3b3936 !important;
  }

  .auction-hero-banner .popular {
    width: 88% !important;
    margin-top: 1px !important;
  }
}

@media (max-width: 430px) {
  .auction-hero-banner .hero-banner-content.is-archive h1 {
    font-size: 25.5px !important;
  }

  .auction-hero-banner .hero-banner-content.is-archive > p {
    font-size: 14.2px !important;
  }

  .auction-hero-banner .search-wrap {
    height: 39px !important;
    min-height: 39px !important;
  }
}
