/* ─── VR Showcase Cards Widget ────────────────────────────────────────────── */

.hbc-vr-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* ── Card ── */

.hbc-vr-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 420px;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
	padding: 16px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hbc-vr-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ── Badge (左上角) ── */

.hbc-vr-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	border-radius: 20px;
	z-index: 2;
	letter-spacing: 0.5px;
}

.hbc-vr-badge::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #f5a623;
	flex-shrink: 0;
}

/* ── Info (右上角) ── */

.hbc-vr-info {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	z-index: 2;
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 500;
	font-family: 'Courier New', Courier, monospace;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ── Content overlay (底部浮动毛玻璃块) ── */

.hbc-vr-content {
	--overlay-opacity: 0.45;
	position: relative;
	z-index: 2;
	padding: 20px 24px;
	background-color: rgba(80, 80, 80, var(--overlay-opacity));
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.hbc-vr-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.hbc-vr-desc {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.hbc-vr-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hbc-vr-card {
		height: 360px;
		padding: 14px;
	}
}

@media (max-width: 767px) {
	.hbc-vr-grid {
		grid-template-columns: 1fr;
	}

	.hbc-vr-card {
		height: 320px;
		padding: 12px;
	}

	.hbc-vr-content {
		padding: 16px 18px;
	}

	.hbc-vr-title {
		font-size: 18px;
	}

	.hbc-vr-desc {
		font-size: 13px;
	}
}
