:root {
	--nja-auction-ink: #171713;
	--nja-auction-charcoal: #24231f;
	--nja-auction-gold: #ad7f2b;
	--nja-auction-gold-light: #d9b76f;
	--nja-auction-paper: #fffdf8;
	--nja-auction-sand: #f2ece0;
	--nja-auction-muted: #716b60;
	--nja-auction-line: rgba(50, 43, 31, .14);
	--nja-auction-success: #1f7151;
}

.nja-auctions,
.nja-auctions * {
	box-sizing: border-box;
}

.nja-auctions {
	color: var(--nja-auction-ink);
	background: var(--nja-auction-paper);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}

.nja-auction-float {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 9997;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 64px;
	padding: 12px 22px 12px 13px;
	border: 1px solid rgba(217,183,111,.7);
	border-right: 0;
	border-radius: 12px 0 0 12px;
	color: #fff !important;
	background: #1d1c18;
	box-shadow: 0 14px 36px rgba(0,0,0,.24);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	letter-spacing: .05em;
	text-decoration: none !important;
	text-transform: uppercase;
	transform: translateY(-50%);
	transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}

.nja-auction-float span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	color: #1d1c18;
	background: #d9b76f;
	font-size: 18px;
}

.nja-auction-float:hover,
.nja-auction-float:focus {
	color: #fff !important;
	background: #ad7f2b;
	box-shadow: 0 18px 42px rgba(99,68,17,.3);
	padding-right: 28px;
}

.nja-account-bids {
	--nja-auction-ink: #171713;
	--nja-auction-gold: #ad7f2b;
	--nja-auction-paper: #fffdf8;
	--nja-auction-sand: #f2ece0;
	--nja-auction-muted: #716b60;
	--nja-auction-line: rgba(50, 43, 31, .14);
	color: var(--nja-auction-ink);
}

.nja-account-bids__head {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: flex-end;
	margin-bottom: 25px;
}

.nja-account-bids__head h2 {
	margin: 0 0 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 500;
}

.nja-account-bids__head p { margin: 0; color: var(--nja-auction-muted); }

.nja-account-notice {
	margin-bottom: 18px;
	padding: 12px 15px;
	border-left: 4px solid #1f7151;
	background: #edf7f2;
	font-weight: 700;
}

.nja-bid-notifications {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 18px;
	align-items: center;
	margin-bottom: 24px;
	padding: 18px 20px;
	border: 1px solid var(--nja-auction-line);
	background: var(--nja-auction-sand);
}

.nja-bid-notifications strong,
.nja-bid-notifications small { display: block; }
.nja-bid-notifications small { margin-top: 3px; color: var(--nja-auction-muted); }
.nja-bid-notifications label { margin: 0; font-weight: 700; white-space: nowrap; }
.nja-bid-notifications button {
	min-height: 42px;
	padding: 9px 16px;
	border: 0;
	border-radius: 2px;
	color: #fff;
	background: var(--nja-auction-ink);
	font-weight: 700;
	cursor: pointer;
}

.nja-account-catalogue,
.nja-account-bid__button {
	display: inline-flex;
	justify-content: center;
	padding: 11px 16px;
	border-radius: 2px;
	color: #fff !important;
	background: var(--nja-auction-ink);
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
}

.nja-account-empty {
	padding: 28px;
	border: 1px solid var(--nja-auction-line);
	background: var(--nja-auction-paper);
}

.nja-account-bid-list { display: grid; gap: 14px; }

.nja-account-bid {
	display: grid;
	grid-template-columns: 84px minmax(160px, 1.1fr) minmax(280px, 1.8fr) auto;
	gap: 18px;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--nja-auction-line);
	border-left: 4px solid #8a8478;
	background: #fff;
}

.nja-account-bid.is-winning { border-left-color: #1f7151; }
.nja-account-bid.is-outbid { border-left-color: var(--nja-auction-gold); }

.nja-account-bid__image {
	display: grid;
	width: 84px;
	height: 84px;
	overflow: hidden;
	place-items: center;
	color: #fff;
	background: #27251f;
	text-decoration: none;
}

.nja-account-bid__image img { width: 100%; height: 100%; object-fit: contain; }
.nja-account-bid__title small { color: var(--nja-auction-muted); text-transform: uppercase; }
.nja-account-bid__title h3 { margin: 3px 0 8px; font-size: 17px; }
.nja-account-bid__title h3 a { color: var(--nja-auction-ink) !important; text-decoration: none; }

.nja-account-status {
	display: inline-flex;
	padding: 4px 8px;
	border-radius: 999px;
	color: #fff;
	background: #8a8478;
	font-size: 11px;
	font-weight: 800;
}

.is-winning .nja-account-status { background: #1f7151; }
.is-outbid .nja-account-status { background: var(--nja-auction-gold); }

.nja-account-bid dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}

.nja-account-bid dl div { padding-left: 12px; border-left: 1px solid var(--nja-auction-line); }
.nja-account-bid dt { color: var(--nja-auction-muted); font-size: 11px; text-transform: uppercase; }
.nja-account-bid dd { margin: 4px 0 0; font-weight: 800; }

.nja-auction-shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.nja-auction-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 80px;
	color: #fff;
	background:
		radial-gradient(circle at 88% 18%, rgba(213, 179, 111, .24), transparent 31%),
		linear-gradient(125deg, #141411 0%, #25231c 58%, #342b1c 100%);
}

.nja-auction-hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
}

.nja-auction-hero__glow {
	position: absolute;
	right: 7%;
	top: -160px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(217,183,111,.28);
	border-radius: 50%;
	box-shadow: inset 0 0 0 50px rgba(217,183,111,.025), inset 0 0 0 100px rgba(217,183,111,.025);
}

.nja-auction-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(290px, .7fr);
	gap: 64px;
	align-items: end;
}

.nja-pilot-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 8px 13px;
	border: 1px solid rgba(217,183,111,.48);
	border-radius: 999px;
	color: #f4dfb3;
	background: rgba(255,255,255,.055);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.nja-pilot-badge::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nja-auction-gold-light);
	box-shadow: 0 0 0 5px rgba(217,183,111,.12);
	content: "";
}

.nja-auction-kicker,
.nja-eyebrow {
	margin: 0 0 12px;
	color: var(--nja-auction-gold-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.nja-auction-hero h1 {
	max-width: 770px;
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 78px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: .98;
}

.nja-auction-intro {
	max-width: 710px;
	margin-top: 27px;
	color: rgba(255,255,255,.73);
	font-size: 18px;
}

.nja-auction-intro p {
	margin: 0;
}

.nja-auction-clock {
	padding: 28px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.055);
	backdrop-filter: blur(12px);
}

.nja-auction-clock span,
.nja-countdown-compact span {
	display: block;
	margin-bottom: 9px;
	color: var(--nja-auction-gold-light);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.nja-auction-clock strong {
	display: block;
	margin-bottom: 10px;
	font-size: clamp(24px, 3vw, 37px);
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
}

.nja-auction-clock small {
	color: rgba(255,255,255,.62);
}

.nja-auction-catalogue {
	padding: 76px 0 40px;
}

.nja-auction-toolbar {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: end;
	margin-bottom: 32px;
}

.nja-auction-toolbar h2 {
	margin: 0;
	color: var(--nja-auction-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 500;
}

.nja-catalogue-count {
	margin: 8px 0 0;
	color: var(--nja-auction-muted);
	font-size: 13px;
}

.nja-catalogue-count strong { color: var(--nja-auction-ink); }

.nja-catalogue-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.nja-category-sidebar {
	position: sticky;
	top: 28px;
	padding: 20px;
	border: 1px solid var(--nja-auction-line);
	background: #fff;
	box-shadow: 0 10px 35px rgba(39,31,18,.045);
}

.nja-category-sidebar__title {
	display: block;
	margin-bottom: 13px;
	color: var(--nja-auction-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.nja-category-list {
	display: grid;
	gap: 6px;
}

.nja-category-list button {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
	padding: 11px 12px;
	border: 0;
	border-left: 3px solid transparent;
	color: var(--nja-auction-ink);
	background: var(--nja-auction-paper);
	font: inherit;
	font-size: 13px;
	text-align: left;
	cursor: pointer;
}

.nja-category-list button strong {
	display: grid;
	min-width: 27px;
	height: 27px;
	place-items: center;
	border-radius: 50%;
	color: var(--nja-auction-muted);
	background: var(--nja-auction-sand);
	font-size: 11px;
}

.nja-category-list button:hover,
.nja-category-list button.is-active {
	border-left-color: var(--nja-auction-gold);
	color: #fff;
	background: var(--nja-auction-ink);
}

.nja-category-list button.is-active strong {
	color: var(--nja-auction-ink);
	background: var(--nja-auction-gold-light);
}

.nja-catalogue-results { min-width: 0; }

.nja-auction-filters {
	display: flex;
	gap: 10px;
}

.nja-auction-filters input,
.nja-auction-filters button {
	min-height: 46px;
	border: 1px solid var(--nja-auction-line);
	border-radius: 3px;
	font: inherit;
}

.nja-auction-filters input {
	width: min(320px, 48vw);
	padding: 10px 14px;
	color: var(--nja-auction-ink);
	background: #fff;
}

.nja-auction-filters button {
	padding: 10px 16px;
	color: var(--nja-auction-ink);
	background: var(--nja-auction-sand);
	cursor: pointer;
}

.nja-auction-filters button.is-active {
	color: #fff;
	background: var(--nja-auction-ink);
}

.nja-lot-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.nja-lot-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--nja-auction-line);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 10px 35px rgba(39,31,18,.045);
	transition: transform .25s ease, box-shadow .25s ease;
}

.nja-lot-card__categories,
.nja-single-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.nja-lot-card__categories { margin-bottom: 10px; }
.nja-single-categories { margin-bottom: 15px; }

.nja-lot-card__categories span,
.nja-single-categories span {
	display: inline-flex;
	padding: 4px 8px;
	border-radius: 999px;
	color: #73521b;
	background: #f3e7ca;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.nja-lot-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(39,31,18,.10);
}

.nja-lot-card[hidden] {
	display: none;
}

.nja-lot-card__media {
	position: relative;
	display: grid;
	height: 310px;
	overflow: hidden;
	place-items: center;
	background:
		radial-gradient(circle at 50% 45%, rgba(255,255,255,.82), transparent 39%),
		linear-gradient(145deg, #ede7db, #d9cfbb);
}

.nja-lot-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .45s ease;
}

.nja-lot-card:hover .nja-lot-card__media img {
	transform: scale(1.035);
}

.nja-coin-placeholder {
	position: relative;
	display: grid;
	width: 182px;
	height: 182px;
	place-items: center;
	border: 2px solid rgba(75,59,30,.42);
	border-radius: 50%;
	background:
		radial-gradient(circle at 38% 30%, #f6e6b8 0%, #be9449 32%, #78551f 70%, #d2ad66 100%);
	box-shadow: inset 0 0 0 8px rgba(255,255,255,.18), inset 0 0 0 13px rgba(63,43,16,.18), 0 20px 30px rgba(49,34,13,.23);
	color: rgba(40,27,10,.64);
	font-family: Georgia, serif;
	font-size: 50px;
}

.nja-coin-placeholder::before,
.nja-coin-placeholder::after {
	position: absolute;
	inset: 24px;
	border: 1px dotted rgba(58,39,12,.38);
	border-radius: 50%;
	content: "";
}

.nja-coin-placeholder::after {
	inset: 47px;
	border-style: solid;
	opacity: .45;
}

.nja-coin-placeholder i {
	font-style: normal;
}

.nja-lot-number,
.nja-featured {
	position: absolute;
	top: 16px;
	padding: 7px 10px;
	border-radius: 2px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nja-lot-number {
	left: 16px;
	color: #fff;
	background: var(--nja-auction-ink);
}

.nja-featured {
	right: 16px;
	color: #33250e;
	background: var(--nja-auction-gold-light);
}

.nja-lot-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 25px;
}

.nja-estimate {
	margin: 0 0 8px;
	color: var(--nja-auction-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.nja-lot-card h3 {
	margin: 0 0 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.12;
}

.nja-lot-card h3 a {
	color: var(--nja-auction-ink);
	text-decoration: none;
}

.nja-lot-card__body > p:not(.nja-estimate) {
	margin: 0 0 20px;
	color: var(--nja-auction-muted);
	font-size: 14px;
}

.nja-lot-card__bid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1px 16px;
	margin-top: auto;
	padding: 17px 0;
	border-top: 1px solid var(--nja-auction-line);
}

.nja-lot-card__bid span,
.nja-lot-card__bid small {
	color: var(--nja-auction-muted);
	font-size: 12px;
}

.nja-lot-card__bid strong {
	grid-row: span 2;
	font-family: Georgia, serif;
	font-size: 23px;
}

.nja-lot-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 15px;
	border: 1px solid var(--nja-auction-ink);
	border-radius: 2px;
	color: #fff !important;
	background: var(--nja-auction-ink);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
}

.nja-lot-button:hover {
	border-color: var(--nja-auction-gold);
	background: var(--nja-auction-gold);
}

.nja-no-results,
.nja-auction-empty {
	padding: 40px;
	border: 1px solid var(--nja-auction-line);
	background: var(--nja-auction-sand);
	text-align: center;
}

.nja-pilot-explainer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 45px;
	margin-bottom: 80px;
	border-top: 1px solid var(--nja-auction-line);
	border-bottom: 1px solid var(--nja-auction-line);
}

.nja-pilot-explainer > div {
	position: relative;
	padding: 34px;
}

.nja-pilot-explainer > div + div {
	border-left: 1px solid var(--nja-auction-line);
}

.nja-pilot-explainer span {
	position: absolute;
	top: 24px;
	right: 28px;
	color: rgba(173,127,43,.22);
	font-family: Georgia, serif;
	font-size: 42px;
}

.nja-pilot-explainer h3 {
	margin: 0 0 7px;
	font-family: Georgia, serif;
	font-size: 23px;
}

.nja-pilot-explainer p {
	margin: 0;
	color: var(--nja-auction-muted);
}

/* Single lot */
.nja-single-lot {
	padding: 46px 0 90px;
}

.nja-lot-breadcrumb {
	display: flex;
	justify-content: space-between;
	margin-bottom: 28px;
	font-size: 13px;
}

.nja-lot-breadcrumb a {
	color: var(--nja-auction-ink);
	font-weight: 700;
	text-decoration: none;
}

.nja-lot-breadcrumb span {
	color: var(--nja-auction-gold);
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.nja-single-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
	gap: 44px;
	align-items: start;
}

.nja-lot-visual__main {
	position: sticky;
	top: 24px;
	display: grid;
	min-height: 610px;
	overflow: hidden;
	place-items: center;
	border: 1px solid var(--nja-auction-line);
	background:
		radial-gradient(circle at 50% 44%, rgba(255,255,255,.92), transparent 38%),
		linear-gradient(145deg, #eee8dc, #d5cab5);
}

.nja-lot-visual__main img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 760px;
	object-fit: contain;
}

.nja-coin-placeholder--large {
	width: min(360px, 66vw);
	height: min(360px, 66vw);
	font-size: 90px;
}

.nja-lot-video {
	margin-top: 18px;
}

.nja-lot-video iframe,
.nja-lot-video video {
	width: 100%;
	min-height: 350px;
}

.nja-lot-panel {
	padding: 36px;
	border: 1px solid var(--nja-auction-line);
	background: #fff;
	box-shadow: 0 20px 55px rgba(45,35,18,.075);
}

.nja-lot-panel .nja-pilot-badge {
	color: #6f531d;
	background: #f8f1e4;
}

.nja-lot-panel .nja-auction-kicker {
	margin-top: 8px;
	color: var(--nja-auction-gold);
}

.nja-lot-panel h1 {
	margin: 0 0 12px;
	color: var(--nja-auction-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 4.3vw, 58px);
	font-weight: 500;
	line-height: 1.03;
}

.nja-live-price {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2px 20px;
	margin: 28px 0 0;
	padding: 25px 0;
	border-top: 1px solid var(--nja-auction-line);
	border-bottom: 1px solid var(--nja-auction-line);
}

.nja-live-price span,
.nja-live-price small {
	color: var(--nja-auction-muted);
}

.nja-live-price strong {
	grid-row: span 2;
	font-family: Georgia, serif;
	font-size: 36px;
	font-variant-numeric: tabular-nums;
}

.nja-countdown-compact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 0;
	border-bottom: 1px solid var(--nja-auction-line);
}

.nja-countdown-compact span {
	margin: 0;
	color: var(--nja-auction-muted);
}

.nja-countdown-compact strong {
	font-variant-numeric: tabular-nums;
}

.nja-winning {
	margin-top: 18px;
	padding: 11px 14px;
	border-left: 3px solid var(--nja-auction-success);
	color: var(--nja-auction-success);
	background: #edf8f2;
	font-weight: 800;
}

.nja-reserve-status {
	margin-top: 12px;
	color: var(--nja-auction-muted);
	font-size: 12px;
	font-weight: 700;
}

.nja-reserve-status::before {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 7px;
	border-radius: 50%;
	background: #a4483d;
	content: "";
}

.nja-reserve-status.is-met {
	color: var(--nja-auction-success);
}

.nja-reserve-status.is-met::before {
	background: var(--nja-auction-success);
}

.nja-bid-form {
	margin-top: 22px;
}

.nja-bid-form > label:first-child {
	display: block;
	font-weight: 800;
}

.nja-bid-form input[type="number"] {
	display: block;
	width: 100%;
	height: 54px;
	margin-top: 8px;
	padding: 10px 14px;
	border: 1px solid var(--nja-auction-line);
	border-radius: 2px;
	color: var(--nja-auction-ink);
	background: var(--nja-auction-paper);
	font-size: 20px;
}

.nja-bid-form > p {
	margin: 8px 0 18px;
	color: var(--nja-auction-muted);
	font-size: 12px;
}

.nja-accept {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	margin-bottom: 17px;
	color: var(--nja-auction-muted);
	font-size: 13px;
}

.nja-bid-form button,
.nja-login-callout a {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	padding: 15px 18px;
	border: 1px solid var(--nja-auction-ink);
	border-radius: 2px;
	color: #fff !important;
	background: var(--nja-auction-ink);
	font: inherit;
	font-weight: 800;
	text-decoration: none !important;
	cursor: pointer;
}

.nja-bid-form button:hover,
.nja-login-callout a:hover {
	border-color: var(--nja-auction-gold);
	background: var(--nja-auction-gold);
}

.nja-bid-form button[disabled] {
	opacity: .55;
	cursor: wait;
}

.nja-bid-feedback {
	min-height: 22px;
	margin-top: 11px;
	color: var(--nja-auction-success);
	font-size: 13px;
	font-weight: 700;
}

.nja-bid-feedback.is-error {
	color: #9c3028;
}

.nja-login-callout,
.nja-total-preview {
	margin-top: 22px;
	padding: 19px;
	background: var(--nja-auction-sand);
}

.nja-login-callout p {
	margin: 4px 0 14px;
	color: var(--nja-auction-muted);
}

.nja-total-preview {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4px 15px;
}

.nja-total-preview strong {
	color: var(--nja-auction-gold);
}

.nja-total-preview small {
	grid-column: 1 / -1;
	color: var(--nja-auction-muted);
}

.nja-lot-information {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
	gap: 44px;
	margin-top: 55px;
}

.nja-lot-information article,
.nja-lot-information aside {
	padding-top: 25px;
	border-top: 1px solid var(--nja-auction-line);
}

.nja-lot-information .nja-eyebrow {
	display: block;
	color: var(--nja-auction-gold);
}

.nja-lot-information aside > p {
	color: var(--nja-auction-muted);
	font-size: 12px;
}

.nja-bid-history {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nja-bid-history li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0;
	border-bottom: 1px solid var(--nja-auction-line);
}

.nja-bid-history span,
.nja-bid-history small {
	display: block;
}

.nja-bid-history small {
	color: var(--nja-auction-muted);
	font-size: 11px;
}

.nja-history-empty {
	padding: 20px;
	background: var(--nja-auction-sand);
}

.nja-admin-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 20px;
}

.nja-admin-grid label,
.nja-admin-grid input,
.nja-admin-grid select {
	display: block;
	width: 100%;
}

.nja-admin-grid input,
.nja-admin-grid select {
	margin-top: 7px;
}

@media (max-width: 960px) {
	.nja-auction-hero__grid,
	.nja-single-grid,
	.nja-lot-information {
		grid-template-columns: 1fr;
	}
	.nja-lot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.nja-catalogue-layout { grid-template-columns: 1fr; }
	.nja-category-sidebar { position: static; }
	.nja-category-list { display: flex; overflow-x: auto; padding-bottom: 4px; }
	.nja-category-list button { width: auto; min-width: max-content; border-bottom: 3px solid transparent; border-left: 0; }
	.nja-category-list button:hover,
	.nja-category-list button.is-active { border-bottom-color: var(--nja-auction-gold); border-left: 0; }
	.nja-lot-visual__main {
		position: relative;
		top: auto;
		min-height: 520px;
	}
}

@media (max-width: 680px) {
	.nja-auction-float {
		right: 0;
		top: 48%;
		min-height: 56px;
		padding: 9px 14px 9px 10px;
		font-size: 12px;
	}
	.nja-auction-float span {
		width: 32px;
		height: 32px;
	}
	.nja-account-bids__head { align-items: stretch; flex-direction: column; }
	.nja-bid-notifications { grid-template-columns: 1fr; gap: 13px; }
	.nja-bid-notifications button { width: 100%; }
	.nja-account-bid { grid-template-columns: 66px 1fr; gap: 12px; }
	.nja-account-bid__image { width: 66px; height: 66px; }
	.nja-account-bid dl { grid-column: 1 / -1; grid-template-columns: 1fr; }
	.nja-account-bid dl div { padding: 8px 0 0; border-top: 1px solid var(--nja-auction-line); border-left: 0; }
	.nja-account-bid__button { grid-column: 1 / -1; }
	.nja-auction-shell {
		width: min(100% - 28px, 1180px);
	}
	.nja-auction-hero {
		padding: 68px 0 48px;
	}
	.nja-auction-hero__grid {
		gap: 36px;
	}
	.nja-auction-hero h1 {
		font-size: 43px;
	}
	.nja-auction-toolbar {
		align-items: stretch;
		flex-direction: column;
	}
	.nja-category-sidebar { padding: 15px; }
	.nja-auction-filters,
	.nja-auction-filters label,
	.nja-auction-filters input {
		width: 100%;
	}
	.nja-auction-filters {
		flex-direction: column;
	}
	.nja-lot-grid,
	.nja-pilot-explainer {
		grid-template-columns: 1fr;
	}
	.nja-lot-card__media {
		height: 285px;
	}
	.nja-pilot-explainer > div + div {
		border-top: 1px solid var(--nja-auction-line);
		border-left: 0;
	}
	.nja-single-lot {
		padding-top: 24px;
	}
	.nja-lot-breadcrumb {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
	.nja-lot-visual__main {
		min-height: 390px;
	}
	.nja-lot-panel {
		padding: 25px 20px;
	}
	.nja-live-price strong {
		font-size: 30px;
	}
	.nja-admin-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nja-lot-card,
	.nja-lot-card__media img {
		transition: none;
	}
}
