.rr-auction-page {
	display: block;
}

.rr-auction-header {
	margin-bottom: 20px;
}

.rr-auction-card {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-auction-card__image img,
.rr-auction-no-image {
	width: 100%;
	min-height: 220px;
	object-fit: cover;
	border-radius: 10px;
	background: #202533;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	font-weight: 700;
	color: #fff;
}

.rr-auction-badge {
	display: inline-block;
	padding: 4px 10px;
	margin-bottom: 10px;
	border-radius: 99px;
	background: #ffb300;
	color: #1d1d1d;
	font-weight: 700;
}

.rr-auction-description {
	margin: 12px 0 18px;
}

.rr-auction-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.rr-auction-stats div {
	padding: 12px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.18);
}

.rr-auction-stats span,
.rr-auction-history__row small,
.rr-auction-archive__row small {
	display: block;
	opacity: .7;
	font-size: 12px;
}

.rr-auction-bid-form {
	display: flex;
	gap: 10px;
}

.rr-auction-bid-form input {
	max-width: 180px;
}

.rr-auction-history__row,
.rr-auction-archive__row {
	display: grid;
	grid-template-columns: 1fr 160px 120px 180px;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	margin-bottom: 6px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
}

.rr-auction-history__row {
	grid-template-columns: 1fr 120px 180px;
}

.rr-auction-empty {
	padding: 18px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
}

.rr-auction-success {
	color: #4caf50;
}

.rr-auction-error {
	color: #ff5252;
}

.rr-auction-result {
	margin-top: 10px;
}

@media (max-width: 760px) {
	.rr-auction-card,
	.rr-auction-stats,
	.rr-auction-history__row,
	.rr-auction-archive__row {
		display: block;
	}

	.rr-auction-stats div,
	.rr-auction-history__row,
	.rr-auction-archive__row {
		margin-bottom: 8px;
	}
}
