.aj-live {
  min-height: 60vh;
  padding: 20px 0 48px;
  background: #cecece;
  color: #111;
}

.aj-live > .container {
  width: min(1180px, calc(100% - 30px));
  max-width: 1180px;
  padding-right: 0;
  padding-left: 0;
}

.aj-live h1,
.aj-live h2 {
  letter-spacing: 0;
}

.aj-live__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 0 22px;
  padding: 30px 28px;
  background: #fff;
  box-shadow: 0 0 20px #666;
  flex-direction: column;
}

.aj-live__heading h1 {
  margin: 0 0 12px;
  color: #111;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
}

.aj-live__heading p {
  max-width: 850px;
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.45;
}

.aj-live__heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .aj-live__heading__actions .btn {
    width: 100%;
  }
}

.aj-live-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 0 22px;
  padding: 28px 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.aj-live-proof__intro h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.aj-live-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.aj-live-proof__stats > div {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e5e8ec;
  border-radius: 12px;
  background: #f7f8fa;
}

.aj-live-proof__stats strong {
  display: block;
  color: #ff0025;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

.aj-live-proof__stats span {
  display: block;
  margin-top: 6px;
  color: #39414a;
  font-size: 15px;
  line-height: 1.3;
}

.aj-live-days {
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  overflow-x: auto;
  padding: 12px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .12);
}

.aj-live-days a {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #d5d9df;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 12px;
}

.aj-live-days a.is-active {
  border-color: #ff0029;
  background: #ff0029;
  color: #fff;
}

.aj-live-days strong {
  font-size: 13px;
}

.aj-live-days span {
  font-size: 13px;
}

.aj-live-filter {
  margin-bottom: 22px;
  padding: 36px 28px 28px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .18);
}

.aj-live-filter__primary,
.aj-live-filter__advanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 16px;
}

.aj-live-filter__field {
  position: relative;
  display: block;
  min-width: 0;
}

.aj-live-filter__field > span,
.aj-live-filter__range legend {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 9px;
  padding: 0;
  overflow: visible;
  color: #000;
  clip: auto;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  white-space: normal;
}

.aj-live-filter input:not([type="checkbox"]),
.aj-live-filter select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #dcdee0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
}

.aj-live-filter input:not([type="checkbox"])::placeholder {
  color: #7a8089;
  opacity: 1;
}

.aj-live-filter input:not([type="checkbox"]):hover,
.aj-live-filter select:hover {
  border-color: #d5d9df;
}

.aj-live-filter input:not([type="checkbox"]):focus,
.aj-live-filter select:focus {
  border-color: #ff0029;
  outline: 2px solid rgba(255, 0, 41, .12);
}

.aj-live-filter__field.has-value select {
  border-color: #ff0029;
  box-shadow: inset 3px 0 0 #ff0029;
}

.aj-live-filter__multiselect {
  position: relative;
}

.aj-live-filter__multiselect summary {
  position: relative;
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  padding: 0 42px 0 14px;
  border: 1px solid #dcdee0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
  list-style: none;
  user-select: none;
}

.aj-live-filter__multiselect summary::-webkit-details-marker {
  display: none;
}

.aj-live-filter__multiselect summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  content: "";
  transform: rotate(45deg);
}

.aj-live-filter__multiselect[open] summary::after {
  margin-top: -2px;
  transform: rotate(225deg);
}

.aj-live-filter__multiselect summary:hover {
  border-color: #d5d9df;
}

.aj-live-filter__multiselect summary:focus-visible {
  border-color: #ff0029;
  outline: 2px solid rgba(255, 0, 41, .12);
}

.aj-live-filter__field.has-value .aj-live-filter__multiselect summary {
  border-color: #ff0029;
  box-shadow: inset 3px 0 0 #ff0029;
}

.aj-live-filter__multiselect-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d9dce1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.aj-live-filter__multiselect:not([open]) .aj-live-filter__multiselect-options {
  display: none;
}

.aj-live-filter__multiselect-options label {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.aj-live-filter__multiselect-options label:hover {
  background: #f4f5f7;
}

.aj-live-filter__multiselect-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: #ff0029;
}

.aj-live-filter__multiselect-options span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.aj-live-filter__multiselect.is-disabled summary {
  background: #f2f3f5;
  color: #777e87;
  cursor: not-allowed;
}

.aj-live-filter__multiselect.is-disabled summary::after {
  border-color: #8b9199;
}

.aj-live-filter select:disabled {
  background: #f2f3f5;
  color: #777e87;
  cursor: not-allowed;
}

.aj-live-filter__hint {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  color: #6b727b;
  font-size: 12px;
  line-height: 1.3;
}

.aj-live-filter__catalog-feedback {
  grid-column: 1 / -1;
  margin: -18px 0 -10px;
}

.aj-live-filter__catalog-status {
  display: none;
  margin: 0;
  color: #5f6670;
  font-size: 13px;
  line-height: 1.35;
}

.aj-live-filter__catalog-status:not(:empty) {
  display: block;
}

.aj-live-filter__catalog-status.is-error {
  color: #b00020;
}

.aj-live-filter button.aj-live-filter__retry {
  width: auto;
  height: auto;
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b00020;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: underline;
}

.aj-live-filter__noscript {
  margin: 16px 0 0;
  color: #5f6670;
  font-size: 13px;
  line-height: 1.4;
}

.aj-live-filter__range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.aj-live-filter__range legend {
  grid-column: 1 / -1;
}

.aj-live-filter__range input {
  border-radius: 8px 0 0 8px;
}

.aj-live-filter__range input:last-child {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.aj-live-filter__range > span {
  display: none;
}

.aj-live-filter button {
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.aj-live-filter__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.aj-live-filter__actions a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}

.aj-live-filter__more {
  margin-top: 22px;
  border-top: 1px solid #e0e2e6;
}

.aj-live-filter__more summary {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 12px 22px 8px 0;
  color: #30343a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.aj-live-filter__more summary::-webkit-details-marker {
  display: none;
}

.aj-live-filter__more summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(50%);
  transition: transform 160ms ease;
}

.aj-live-filter__more[open] summary::after {
  margin-top: -2px;
  transform: rotate(225deg) translateY(-50%);
}

.aj-live-filter__advanced {
  padding-top: 12px;
}

.aj-live__summary,
.aj-live__empty,
.aj-live__notice {
  margin: 24px 0;
}

.aj-live__summary {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .1);
  font-size: 16px;
}

.aj-live__notice {
  padding: 16px;
  border-left: 4px solid #ff0029;
  background: #fff1f3;
}

.aj-live__empty {
  padding: 36px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .12);
  color: #5f6671;
}

.aj-live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.aj-live-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aj-live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.aj-live-card__tap {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: #111;
  text-decoration: none;
}

.aj-live-card__media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  background: #eef0f3;
}

.aj-live-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.aj-live-card__tap:hover .aj-live-card__media img,
.aj-live-card__tap:focus-visible .aj-live-card__media img {
  transform: scale(1.02);
}

.aj-live-card__tap:focus-visible {
  outline: 2px solid #ff0029;
  outline-offset: 4px;
}

.aj-live-card__rate {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #ffb11a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.aj-live-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #737a85;
  font-size: 13px;
}

.aj-live-card__body {
  display: grid;
  min-height: 178px;
  flex: 1 1 auto;
  align-content: start;
  padding: 16px;
}

.aj-live-card__body h2 {
  display: -webkit-box;
  min-height: 38px;
  margin: 12px 0 7px;
  overflow: hidden;
  color: #111;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aj-live-card__tap:hover h2 {
  color: #ff0029;
}

.aj-live-card__body p {
  margin: 0;
  color: #5f6671;
  font-size: 13px;
  line-height: 1.45;
}

.aj-live-card__body .aj-live-card__grade {
  min-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aj-live-card__body .aj-live-card__specs {
  min-height: 38px;
  margin-top: 8px;
}

.aj-live-card__price {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 4px 9px;
  border-radius: 10px;
  background: #333;
}

.aj-live-card__price span {
  color: #fff;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.aj-live-card__price strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.aj-live-card__price strong.is-muted {
  color: #fff;
  font-size: 14px;
}

.aj-live-card__footer {
  margin-top: auto;
  padding: 10px 16px 16px;
  border: 0;
  background: #fff;
}

.aj-live-card__footer .btn {
  min-height: 40px;
  border-radius: 8px;
  font-weight: 700;
}

.aj-live-promo {
  grid-column: 1 / -1;
}

.aj-live-promo .banner_instok {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr) minmax(210px, .55fr); */
  min-height: 210px;
  /* align-items: center; */
  gap: 24px;
  /* padding: 30px; */
  border-radius: 7px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .18);
  position: relative;
}

/* .aj-live-promo .banner_instok_title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
} */

/* .aj-live-promo .banner_instok_text {
  grid-column: 1;
  margin: -54px 0 0;
  font-size: 17px;
  line-height: 1.35;
} */

.aj-live-promo .img_wrapper {
  /* grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end; */
  margin-right: -20px;
  position: absolute;
  right: 0;
  top: 20px;
}

.aj-live-promo .banner_instok img {
  display: block;
  /* width: 100%; */
  max-height: 180px;
  margin: 0;
  object-fit: contain;
}

.aj-live-promo .banner_instok_btn {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  margin-top: 30px;
  width: max-content;
}

.aj-live-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.aj-live-pagination a,
.aj-live-pagination span[aria-current="page"] {
  min-width: 44px;
  min-height: 42px;
  border-radius: 8px;
}

.aj-live__back {
  display: inline-block;
  margin: 8px 0 22px;
  color: #30343a;
  font-weight: 600;
}

.aj-live-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  padding: 22px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .18);
}

.aj-live-detail > *,
.aj-live-detail__media,
.aj-live-detail__specs {
  min-width: 0;
  width: 100%;
}

.aj-live-detail__main {
  display: block;
}

.aj-live-detail__main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #eef0f3;
}

.aj-live-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.aj-live-detail__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #eef0f3;
  cursor: pointer;
}

.aj-live-detail__thumb:hover,
.aj-live-detail__thumb:focus-visible {
  border-color: #777;
}

.aj-live-detail__thumb.is-active {
  border-color: #ff1d2f;
}

.aj-live-detail__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aj-live-detail__thumb--sheet img {
  object-fit: contain;
  background: #fff;
}

.aj-live-detail__thumb--sheet span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  padding: 4px 5px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.aj-live-detail__media-status {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f4f5f7;
  color: #4c535c;
  font-size: 14px;
  line-height: 1.4;
}

.aj-live-detail__media-status[hidden] {
  display: none;
}

.aj-live-detail__specs {
  margin: 0;
  border-top: 1px solid #dfe2e7;
}

.aj-live-detail__specs > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #dfe2e7;
}

.aj-live-detail__specs dt {
  color: #6a717c;
}

.aj-live-detail__specs dd {
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 600;
}

.aj-live-detail__specs .aj-live-detail__cta {
  margin-top: 14px;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: #f7f8fa;
  grid-template-columns: 1fr;
  gap: 10px;
}
dt#aj-turnkey-label {
    text-align: right;
}

.aj-live-detail__cta dd {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aj-live-detail__cta strong {
  color: #ff0029;
  font-size: 24px;
  line-height: 1.15;
}

.aj-live-detail__cta small {
  color: #6a717c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.aj-live-detail__specs .aj-live-detail__request {
  display: block;
  padding-top: 16px;
  border-bottom: 0;
}

.aj-live-detail__request dt,
.aj-live-detail__request dd {
  text-align: left;
}

.aj-live-detail__request dd {
  margin-top: 12px;
  color: #6a717c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.aj-live-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: #ff0029;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.aj-sold-statistics {
  margin-top: 28px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .14);
}

.aj-sold-statistics__heading {
  margin-bottom: 18px;
}

.aj-sold-statistics__heading h2 {
  margin: 0 0 8px;
  color: #17191c;
  font-size: 28px;
  line-height: 1.2;
}

.aj-sold-statistics__heading p {
  margin: 0;
  color: #626a74;
  font-size: 15px;
  line-height: 1.45;
}

.aj-sold-statistics__scroll {
  overflow-x: auto;
  border: 1px solid #dfe2e7;
  border-radius: 7px;
  scrollbar-width: thin;
}

.aj-sold-statistics__list {
  min-width: 1280px;
}

.aj-sold-statistics__labels,
.aj-sold-statistics__row {
  display: grid;
  grid-template-columns: 150px 92px 132px 90px 100px minmax(160px, 1fr) 112px 75px 128px 128px;
  align-items: center;
}

.aj-sold-statistics__labels {
  min-height: 48px;
  background: #f4f5f7;
  color: #5f6670;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.aj-sold-statistics__labels > span,
.aj-sold-statistics__row > span,
.aj-sold-statistics__row > strong {
  min-width: 0;
  padding: 10px;
  overflow-wrap: anywhere;
}

.aj-sold-statistics__row {
  min-height: 116px;
  border-top: 1px solid #e5e7eb;
  color: #24282d;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color .15s ease;
}

.aj-sold-statistics__row:hover,
.aj-sold-statistics__row:focus-visible {
  background: #fff8f8;
  color: #24282d;
  text-decoration: none;
}

.aj-sold-statistics__row:focus-visible {
  outline: 2px solid #ff1d2f;
  outline-offset: -2px;
}

.aj-sold-statistics__row[hidden] {
  display: none;
}

.aj-sold-statistics__photo img {
  display: block;
  width: 128px;
  height: 96px;
  border-radius: 5px;
  background: #eef0f3;
  object-fit: cover;
}

.aj-sold-statistics__row > strong {
  color: #d90022;
  font-size: 15px;
}

.aj-sold-statistics__toggle {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 10px 22px;
  border: 1px solid #30343a;
  border-radius: 6px;
  background: #fff;
  color: #202328;
  font-weight: 700;
  cursor: pointer;
}

.aj-sold-statistics__toggle:hover,
.aj-sold-statistics__toggle:focus-visible {
  border-color: #ff1d2f;
  color: #d90022;
}

@media (max-width: 1180px) {
  .aj-live-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .aj-live__heading h1 {
    font-size: 34px;
  }

  .aj-live-filter__primary,
  .aj-live-filter__advanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .aj-live-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .aj-live-promo .banner_instok {
    grid-template-columns: minmax(0, 1fr) minmax(230px, .7fr);
  }

  .aj-live-promo .banner_instok_title,
  .aj-live-promo .banner_instok_text {
    grid-column: 1;
    width: 60%;
  }

  .aj-live-promo .img_wrapper {
    grid-column: 2;
  }

  .aj-live-promo .banner_instok_btn {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 600px) {
  .aj-live {
    padding: 15px 0 36px;
  }

  .aj-live > .container {
    width: min(100% - 30px, 1180px);
  }

  .aj-live__heading {
    padding: 20px 18px;
  }

  .aj-live__heading h1 {
    font-size: 30px;
  }

  .aj-live__heading p {
    font-size: 16px;
  }

  .aj-live-proof {
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
  }

  .aj-live-proof__intro h2 {
    font-size: 23px;
  }

  .aj-live-proof__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aj-live-proof__stats > div {
    padding: 14px;
  }

  .aj-live-proof__stats strong {
    font-size: 20px;
  }

  .aj-live-filter__primary,
  .aj-live-filter__advanced,
  .aj-live-grid {
    gap: 10px;
  }

  .aj-live-filter {
    padding: 22px 18px 18px;
  }

  .aj-live-filter__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aj-live-filter__actions a {
    width: 100%;
  }

  .aj-live-filter button {
    width: 100%;
  }

  .aj-live-card__media {
    height: auto;
  }

  .aj-live-promo .banner_instok {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 18px;
  }

  .aj-live-card__price strong.is-muted {
    font-size: 12px;
  }

  .aj-live-card__body {
    padding: 5px;
  }

  .aj-live-card__price {
    gap: 0px;
  }

  .aj-live-card__price  span {
    display: none;
  }

  .aj-live-card__price strong {
    font-size: 16px;
  }

  .aj-live-card__footer {
    padding: 10px 5px;
  }

  .aj-live-card__footer .row {
    flex-direction: column;
    margin: 0;
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
    gap: 5px;
  }
  .aj-live-card__footer .col-6 {
    width: 100%;
  }

  .aj-live-promo .banner_instok_title {
    font-size: 24px;
  }

  .aj-live-promo .banner_instok_text {
    margin: 0;
  }
  .aj-live-promo .banner_instok_title, .aj-live-promo .banner_instok_text {
    width: 100%;
  }

  .aj-live-promo .img_wrapper {
    /* max-height: 150px; */
    justify-content: flex-end;
    position: relative;
    top: 0;
  }

  /* .aj-live-promo .banner_instok img {
    max-height: 150px;
  } */
  .aj-live-promo .banner_instok_btn {
    margin-top: 0;
    width: 100%;
  }

  .aj-live-detail {
    padding: 14px;
  }

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

  .aj-sold-statistics {
    margin-top: 18px;
    padding: 16px;
  }

  .aj-sold-statistics__heading h2 {
    font-size: 23px;
  }

  .aj-sold-statistics__scroll {
    overflow: visible;
    border: 0;
  }

  .aj-sold-statistics__list {
    min-width: 0;
  }

  .aj-sold-statistics__labels {
    display: none;
  }

  .aj-sold-statistics__row {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 0;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #dfe2e7;
    border-radius: 7px;
    background: #fff;
    font-size: 13px;
  }

  .aj-sold-statistics__row > span,
  .aj-sold-statistics__row > strong {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid #eceef1;
  }

  .aj-sold-statistics__row > span::before,
  .aj-sold-statistics__row > strong::before {
    color: #6a717c;
    content: attr(data-label);
    font-weight: 400;
  }

  .aj-sold-statistics__row .aj-sold-statistics__photo {
    display: block;
    grid-column: 1 / -1;
    padding: 0 0 12px;
    border-top: 0;
  }

  .aj-sold-statistics__row .aj-sold-statistics__photo::before {
    display: none;
  }

  .aj-sold-statistics__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .aj-sold-statistics__toggle {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aj-live-card__media img {
    transition: none;
  }
}
