.acr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 22px;
	max-width: 1100px;
	margin: 0 auto;
}

.acr-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 16px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	transition: transform 0.3s ease;
}

.acr-card:hover {
	transform: translateY(-4px);
}

.acr-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	background: #f1efe8;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.acr-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

.acr-card.acr-coming-soon .acr-image-wrap img {
	filter: grayscale(1);
	opacity: 0.35;
}

.acr-placeholder-icon {
	width: 46%;
	height: 46%;
	color: #c8c4b7;
}

.acr-placeholder-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.acr-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #2c2c2a;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 999px;
}

.acr-card.acr-available .acr-badge {
	background: #2E8B57;
}

.acr-name {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 2px;
	color: #2c2c2a;
}

.acr-card.acr-coming-soon .acr-name {
	color: #8a8a85;
}

.acr-status {
	font-size: 12px;
	margin: 0;
	color: #9a9890;
}

.acr-card.acr-available .acr-status {
	color: #2E8B57;
	font-weight: 600;
}

@media (max-width: 480px) {
	.acr-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}
