* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--ss-bg);
  color: var(--ss-body);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* .ss-container {
  max-width: 1280px;
} */

.section-padding {
  padding: 70px;
}

.section-padding2 {
  padding: 60px 0;
}

@media (max-width:1200px) {
  .section-padding {
    padding: 48px 35px;
  }
}

@media (max-width:767px) {
  .section-padding {
    padding: 48px 14px;
  }
}

.section-space {
  padding: 48px 0;
}

.ss-header {
  padding: 14px 70px;
  background: var(--ss-primary);
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease, transform 0.3s ease-in-out;
}

.ss-header.is-scrolled {
  background: var(--ss-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.ss-header .navbar-toggler {
  color: var(--ss-white);
  border: 1px solid var(--ss-white);
}

.ss-header .navbar-toggler img {
  filter: brightness(0) invert(1);
}

.ss-header .offcanvas .brand__text-wrap {
  color: var(--ss-primary);
}

/* ---- Reusable Inner Page Hero Banner ---- */
.ss-inner-hero {
  position: relative;
  min-height: 250px;
  padding-top: 92px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ss-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ss-hero-bg, url('../imgs/banner/hero-banner.png')) center center / cover no-repeat;
  z-index: 0;
}

.ss-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(40, 14, 16, 0.52) 0%,
      rgba(40, 14, 16, 0.22) 50%,
      rgba(40, 14, 16, 0.06) 100%);
  z-index: 1;
}

.ss-inner-hero .ss-container {
  position: relative;
  z-index: 2;
}

.ss-inner-hero__content {
  padding: 56px 0 32px;
  color: var(--ss-white);
  max-width: 420px;
}

.ss-inner-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--ss-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* Legacy hero selector fallback */
.ss-auctions-hero {
  position: relative;
  min-height: 235px;
  margin-top: 115px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ss-auctions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imgs/banner/hero-banner.png') center center / cover no-repeat;
  z-index: 0;
  background-size: 100% 100%;
}

.ss-auctions-hero .ss-container {
  position: relative;
  z-index: 2;
}

.ss-page-hero__content {
  /* padding-top: 68px; */
  color: var(--ss-white);
  max-width: 420px;
}

.ss-auctions-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ss-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* ---- Floating Card Architecture (Global Standard) ---- */
.ss-auction-card--floating {
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.ss-auction-card--floating .ss-auction-card__media {
  border-radius: 8px;
  overflow: hidden;
  background: #e8e4e4;
}

.ss-auction-card--floating .ss-auction-card__media img {
  width: 100%;
  aspect-ratio: 377 / 520;
  object-fit: cover;
  display: block;
}

.ss-auction-card--floating .ss-auction-card__body {
  background: var(--ss-white);
  border-radius: 8px;
  padding: 14px 14px 16px;
  margin-top: 12px;
  flex: 1;
}

.ss-auction-card--floating .ss-auction-card__body .ss-status {
  background: transparent;
  padding: 0px;
  font-size: 12px;
  margin-bottom: 6px;
}

/* Swiper floating cards */
.ss-auction-swiper .ss-auction-card--floating {
  height: 100%;
}

.ss-auction-swiper .ss-auction-card--floating .ss-auction-card__media img {
  aspect-ratio: 377 / 520;
}

.ss-breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.ss-breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.ss-breadcrumbs a:hover {
  color: rgba(255, 255, 255, 1);
}

.ss-breadcrumbs span {
  color: rgba(255, 255, 255, 1);
}

.ss-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ss-white);
}

.ss-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f6dd92 0%, #d6af53 38%, #9d6b11 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
  flex: 0 0 auto;
}

.ss-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ss-header .brand {
  color: var(--ss-white);
}

.ss-brand-copy strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .08em;
}

.ss-brand-copy small {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  letter-spacing: .28em;
  margin-top: 4px;
}

.navbar-nav {
  gap: 18px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 4px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--ss-white);
}

.ss-btn {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
}

.ss-btn-outline {
  color: var(--ss-white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}

.ss-btn-login {
  color: var(--ss-white);
  background: transparent;
  border: 1px solid var(--ss-white);
}

.ss-btn-login:hover,
.ss-btn-login:focus,
.ss-btn-login:active,
.ss-btn-login.show {
  color: var(--ss-primary);
  background: var(--ss-white);

}

.ss-btn-light {
  color: var(--ss-primary);
  background: var(--ss-white);
  border: 1px solid var(--ss-white);
}

.ss-btn-dark {
  color: var(--ss-white);
  background: var(--ss-primary);
  border: 1px solid var(--ss-primary);
}

.ss-btn-outline-light {
  color: var(--ss-white);
  border: 1.2px solid rgba(255, 255, 255, .9);
  background: transparent;
  min-width: 170px;
}

.ss-btn-outline {
  color: var(--ss-white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}

.ss-btn-outline:hover,
.ss-btn-outline:focus,
.ss-btn-outline:active,
.ss-btn-outline.show {
  color: var(--ss-white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  opacity: 1;
}

.ss-btn-light {
  color: var(--ss-primary);
  background: var(--ss-white);
  border: 1px solid var(--ss-white);
}

.ss-btn-light:hover,
.ss-btn-light:focus,
.ss-btn-light:active {
  color: var(--ss-primary);
  background: var(--ss-white);
  border: 1px solid var(--ss-white);
  opacity: 1;
}

.ss-btn-dark {
  color: var(--ss-white);
  background: var(--ss-primary);
  border: 1px solid var(--ss-primary);
}

.ss-btn-dark:hover,
.ss-btn-dark:focus,
.ss-btn-dark:active {
  color: var(--ss-white);
  background: var(--ss-primary);
  border: 1px solid var(--ss-primary);
  opacity: 1;
}

.ss-btn-outline-light {
  color: var(--ss-white);
  border: 1.2px solid rgba(255, 255, 255, .9);
  background: transparent;
  min-width: 170px;
}

.ss-btn-outline-light:hover,
.ss-btn-outline-light:focus,
.ss-btn-outline-light:active {
  color: var(--ss-white);
  border: 1.2px solid rgba(255, 255, 255, .9);
  background: transparent;
  opacity: 1;
}

.ss-btn-outline,
.ss-btn-outline:hover,
.ss-btn-outline:focus,
.ss-btn-outline:focus-visible,
.ss-btn-outline:active,
.ss-btn-outline.show {
  color: var(--ss-white) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  background: rgba(255, 255, 255, .2) !important;
}

.ss-btn-light,
.ss-btn-light:hover,
.ss-btn-light:focus,
.ss-btn-light:focus-visible,
.ss-btn-light:active {
  color: var(--ss-primary) !important;
  background: var(--ss-white) !important;
  border: 1px solid var(--ss-white) !important;
}

.ss-btn-dark,
.ss-btn-dark:hover,
.ss-btn-dark:focus,
.ss-btn-dark:focus-visible,
.ss-btn-dark:active {
  color: var(--ss-white) !important;
  background: var(--ss-primary) !important;
  border: 1px solid var(--ss-primary) !important;
}

.ss-btn-outline-light,
.ss-btn-outline-light:hover,
.ss-btn-outline-light:focus,
.ss-btn-outline-light:focus-visible,
.ss-btn-outline-light:active {
  color: var(--ss-white) !important;
  border: 1.2px solid rgba(255, 255, 255, .9) !important;
  background: transparent !important;
}


.ss-section-head {
  margin-bottom: 28px;
}

.ss-section-head--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ss-section-head h2,
.ss-sell-card h2,
.ss-legacy-bar h2 {
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 600;
}

.ss-bid-grid {
  border: 2px solid var(--ss-border);
  background: transparent;
}

.ss-bid-card {
  min-height: 212px;
  padding: 22px 18px 20px;
  border-right: 2px solid var(--ss-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.ss-bid-grid .col-lg-3:last-child .ss-bid-card {
  border-right: 0;
}

html[dir="rtl"] .ss-bid-grid .col-lg-3:last-child .ss-bid-card{
 border-right: 2px solid var(--ss-border);
}

html[dir="rtl"] .ss-bid-grid .col-lg-3:first-child .ss-bid-card{
border-right: 0;
}

.ss-bid-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ss-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(40, 14, 16, 0.12);
  color: var(--ss-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 16px;
}

.ss-icon img {
  width: 20px;
  height: 20px;
}

.ss-bid-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.ss-bid-card p {
  margin: auto 0 0;
  color: var(--ss-muted);
  font-size: 12px;
  line-height: 1.65;
  max-width: 350px;
}

.ss-bid-card--primary h3 {
  font-size: 23px;
}

.ss-sell-kicker-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ss-sell-icon {
  width: 52px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--ss-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  font-size: 17px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ss-sell-icon i {
  line-height: 1;
}

.ss-kicker {
  display: block;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ss-white);
}

/* .ss-bid-card--primary .ss-btn-dark {
  max-width: 130px;
} */

.ss-sell-card {
  position: relative;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  background: url('../imgs/banner/Frame57.png') center/cover no-repeat;
}

.ss-sell-card__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(13, 19, 63, .92) 0%, rgba(13, 19, 63, .7) 34%, rgba(13, 19, 63, .14) 100%); */
}

.ss-sell-card__content {
  position: relative;
  z-index: 1;
  color: var(--ss-white);
  max-width: 500px;
  padding: 44px 0px;
  padding-left: 55px;
  /* padding-top: 100px; */
}

html[dir="rtl"] .ss-sell-card__content {
    padding: 44px 0px;
  padding-right: 55px;
}
  

.ss-kicker,
.ss-kicker-dark {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}

.ss-kicker-dark {
  color: var(--ss-primary);
}

.ss-sell-card p,
.ss-newsletter-box p,
.ss-footer-copy {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #FFFFFF82;
}

.ss-sell-card .ss-btn-outline-light {
  margin-top: 20px;
}

.ss-featured-scroller {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.ss-featured-scroller::-webkit-scrollbar {
  display: none;
}

/* ---- Swiper Auction Slider ---- */
.ss-auction-swiper {
  overflow: hidden;
}

.ss-auction-swiper .swiper-slide {
  height: auto;
}

.ss-auction-swiper .ss-auction-card {
  height: 100%;
}

.ss-auction-swiper .ss-auction-card--featured {
  border-radius: 8px;
  overflow: hidden;
}

.ss-carousel-arrows {
  gap: 10px;
}

.ss-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ss-primary);
  background: rgba(40, 14, 16, 0.12);
  color: var(--ss-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html[dir="rtl"] .ss-arrow {
  transform: rotate(180deg);
}
  

.ss-auction-card {
  color: var(--ss-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ss-auction-card__media {
  position: relative;
  background: #14090b;
}

.ss-auction-card__media img {
  width: 100%;
  aspect-ratio: 377 / 520;
  object-fit: cover;
  display: block;
}

.ss-auction-card--brand .ss-auction-card__media img {
  object-fit: cover;
}

.ss-card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  color: var(--ss-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  font-size: 0.75rem;
  z-index: 5;
  transition: all 0.2s ease;
}

.ss-card-fav.is-active,
.ss-card-fav.active {
  background: var(--ss-white);
  color: var(--ss-primary);
  border-color: var(--ss-white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.ss-auction-card__body {
  padding: 10px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ss-status {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  width: 100%;
  /* margin-bottom: 16px; */
  background: #2c1819;
}

.ss-status--available {
  color: var(--ss-success);
}

.ss-status--coming {
  color: var(--ss-danger);
}

.ss-status--closed {
  color: var(--ss-muted);
}

.ss-auction-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
  color: var(--ss-primary);
}

.ss-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #9b9495;
  font-size: 11px;
  margin-top: auto;
}

.ss-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ss-legacy-bar {
  background: linear-gradient(135deg, #fff7e3, #f6efdf);
  border: 1px solid #ebdcc4;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ss-legacy-bar>div:first-child {
  max-width: 360px;
}

.ss-stat-box {
  height: 100%;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #ecdab3;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.ss-stat-box strong {
  display: block;
  font-size: 30px;
  color: var(--ss-primary);
}

.ss-stat-box span {
  display: block;
  margin-top: 6px;
  color: var(--ss-muted);
  font-size: 12px;
}

.ss-newsletter-box {
  background: var(--ss-white);
  border-radius: 12px;
  text-align: center;
  padding: 42px 24px;
}

.ss-newsletter-box p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ss-muted);
}

.ss-newsletter-form {
  max-width: 560px;
  margin: 28px auto 0;
}

.ss-newsletter-form .input-group {
  background: var(--ss-white);
  border: 1px solid #c7b9bb;
  border-radius: 999px;
  padding: 6px;
}

.ss-newsletter-form .input-group-text,
.ss-newsletter-form .form-control {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ss-newsletter-form .input-group-text {
  color: #aa9ea0;
  padding-left: 14px;
}

.ss-newsletter-form .form-control {
  min-height: 42px;
  font-size: 13px;
}

.ss-footer {
  background: var(--ss-footer);
  color: rgba(255, 255, 255, .88);
  padding: 54px 0 30px;
}

.ss-brand--footer {
  margin-bottom: 18px;
}

.ss-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ss-socials a,
.ss-contact-item>span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--ss-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ss-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ss-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ss-contact-item small {
  display: block;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 2px;
}

.ss-contact-item strong {
  font-size: 14px;
  font-weight: 500;
}

.ss-accreditation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 14px;
}

.ss-badge {
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .92);
}

.ss-disclaimer {
  margin-top: 34px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.ss-footer-bottom {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, .56);
}

@media (max-width: 1199.98px) {
  .ss-featured-scroller {
    grid-template-columns: repeat(4, minmax(280px, 280px));
  }

  .ss-legacy-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .ss-header {
    padding: 14px 35px;
  }
}

@media (max-width: 991.98px) {
  .ss-header {
    background: rgba(40, 14, 16, .96);
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px 0 6px;
  }

  .ss-header-actions {
    flex-wrap: wrap;
  }

  .ss-auctions-hero,
  .ss-inner-hero {
    min-height: 170px;
    padding-top: 82px;
  }



  .ss-auctions-hero h1,
  .ss-inner-hero h1 {
    font-size: 34px;
  }

  .ss-bid-card {
    border-right: 0;
    border-bottom: 1px solid var(--ss-border);
    min-height: auto;
    gap: 22px;
  }

  .ss-bid-grid .col-lg-3:last-child .ss-bid-card,
  .ss-bid-grid .col-md-6:last-child .ss-bid-card {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 32px 0;
  }

  .ss-header {
    padding: 14px 14px;
  }

  .ss-brand-copy strong {
    font-size: 18px;
  }

  .ss-brand-copy small {
    font-size: 10px;
  }


  .ss-inner-hero {
    min-height: 150px;
  }

  .ss-auctions-hero h1,
  .ss-inner-hero h1 {
    font-size: 28px;
  }

  .ss-section-head {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ss-section-head h2,
  .ss-sell-card h2,
  .ss-legacy-bar h2,
  .ss-newsletter-box h2 {
    font-size: 24px;
  }

  .ss-bid-card,
  .ss-sell-card__content,
  .ss-newsletter-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ss-featured-scroller {
    grid-template-columns: repeat(4, minmax(240px, 240px));
  }

  .ss-meta {
    flex-direction: column;
    gap: 4px;
  }

  .ss-newsletter-form .input-group {
    border-radius: 18px;
    padding: 10px;
    gap: 8px;
  }

  .ss-newsletter-form .input-group>* {
    width: 100%;
    border-radius: 999px !important;
  }

  .ss-disclaimer {
    border-radius: 18px;
    align-items: flex-start;
  }

  .ss-sell-card .ss-btn-outline-light {
    width: 100%;
  }


  .ss-inner-hero__content {
    padding-top: 32px;
  }

  .ss-sell-card {
    background: url(../imgs/banner/auctions-banner-mobile.png);
  }

  .ss-auctions-hero::before {
    background-image: url(../imgs/banner/banner-mobile.png);
  }
}

@media (max-width: 575.98px) {
  .ss-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ss-header {
    padding: 10px 14px;
  }

  .ss-brand-mark {
    width: 34px;
    height: 34px;
  }

  .ss-brand-copy strong {
    font-size: 16px;
  }

  .ss-brand-copy small {
    font-size: 8px;
  }

  .ss-btn {
    min-height: 38px;
  }


  .ss-inner-hero {
    min-height: 132px;
  }


  .ss-inner-hero__content {
    padding-top: 22px;
  }

  .ss-breadcrumbs {
    font-size: 12px;
  }

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

  .ss-bid-card--primary h3 {
    font-size: 16px;
  }

  .ss-sell-card {
    min-height: 246px;
    background-position: 72% center;
  }

  /* .ss-sell-card__overlay {
    background: linear-gradient(180deg, rgba(13, 19, 63, .86) 0%, rgba(13, 19, 63, .86) 100%);
  } */

  .ss-sell-card p {
    max-width: 250px;
    font-size: 11px;
  }

  .ss-auction-card h3 {
    font-size: 18px;
  }

  .ss-stat-box strong {
    font-size: 24px;
  }

  .ss-footer {
    padding-top: 42px;
  }

  .ss-accreditation-grid {
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }
}

.ss-grid-auctions,
.ss-upcoming,
.ss-sell,
.ss-how-bid,
.sa-detail,
.sa-title-bar,
.sa-other,
.ss-listing {
  background-color: #EBE6E6;
}