.pcgh-gdl-v2 {
	position: relative;
	width: min(100%, var(--pcgh-container-w, 1200px));
	max-width: var(--pcgh-container-w, 1200px);
	min-width: 0;
	margin: 0 auto 24px;
	color: var(--pcgh-text, #0f172a);
}

.pcgh-gdl-v2__crumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	overflow: hidden;
	color: var(--pcgh-text-3, #64748b);
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
}

.pcgh-gdl-v2__crumb a {
	color: var(--pcgh-text-2, #475569);
	text-decoration: none;
}

.pcgh-gdl-v2__crumb a:hover {
	color: var(--pcgh-primary, #2f6df6);
}

.pcgh-gdl-v2__grid {
	display: grid;
	width: 100%;
	min-width: 0;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
	gap: 18px;
	align-items: stretch;
	padding: 12px;
	border: 1px solid var(--pcgh-border, #e2e8f0);
	border-radius: 12px;
	background: var(--pcgh-surface, #fff);
	box-shadow: none;
}

.pcgh-gdl-v2__media,
.pcgh-gdl-v2__info {
	min-width: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.pcgh-gdl-v2__media {
	padding: 0;
}

.pcgh-gdl-v2__stage {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 2;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 10px;
	background: var(--pcgh-surface-2, #f1f5f9);
	cursor: zoom-in;
}

.pcgh-gdl-v2__stage-bg,
.pcgh-gdl-v2__thumb {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pcgh-gdl-v2__stage-bg {
	display: block;
	width: 100%;
	height: 100%;
	transition: transform .24s ease;
}

.pcgh-gdl-v2__stage:hover .pcgh-gdl-v2__stage-bg {
	transform: scale(1.018);
}

.pcgh-gdl-v2__play,
.pcgh-gdl-v2__zoom {
	position: absolute;
	left: 50%;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(15, 23, 42, .58);
	color: #fff;
	backdrop-filter: blur(10px);
	transform: translate(-50%, -50%);
}

.pcgh-gdl-v2__zoom {
	left: auto;
	right: 14px;
	top: 14px;
	width: 38px;
	height: 38px;
	transform: none;
	opacity: 0;
	transition: opacity .18s ease;
}

.pcgh-gdl-v2__stage:hover .pcgh-gdl-v2__zoom {
	opacity: 1;
}

.pcgh-gdl-v2__play i,
.pcgh-gdl-v2__play svg {
	width: 25px;
	height: 25px;
}

.pcgh-gdl-v2__play[hidden],
.pcgh-gdl-v2__zoom[hidden] {
	display: none !important;
}

.pcgh-gdl-v2__zoom i,
.pcgh-gdl-v2__zoom svg {
	width: 18px;
	height: 18px;
}

.pcgh-gdl-v2__thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 32px) / 5);
	gap: 8px;
	margin-top: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px 2px 3px;
	scrollbar-width: thin;
}

.pcgh-gdl-v2__thumb {
	position: relative;
	height: 58px;
	border: 2px solid transparent;
	border-radius: 8px;
	background-color: var(--pcgh-surface-2, #f1f5f9);
	cursor: pointer;
	opacity: .82;
	transition: border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.pcgh-gdl-v2__thumb:hover {
	border-color: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .55);
	opacity: 1;
}

.pcgh-gdl-v2__thumb.is-active {
	border-color: var(--pcgh-primary, #2f6df6);
	opacity: 1;
}

.pcgh-gdl-v2__thumb.is-active::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -11px;
	width: 0;
	height: 0;
	border-right: 6px solid transparent;
	border-bottom: 7px solid var(--pcgh-primary, #2f6df6);
	border-left: 6px solid transparent;
	transform: translateX(-50%);
}

.pcgh-gdl-v2__thumb span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: inherit;
	background: rgba(0, 0, 0, .24);
	color: #fff;
}

.pcgh-gdl-v2__thumb span i,
.pcgh-gdl-v2__thumb span svg {
	width: 22px;
	height: 22px;
}

.pcgh-gdl-v2__info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 12px 16px;
}

.pcgh-gdl-v2__title {
	margin: 0;
	color: var(--pcgh-text, #0f172a);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 500;
	line-height: 1.16;
	letter-spacing: 0;
}

.pcgh-gdl-v2__subtitle {
	margin: 5px 0 0;
	color: var(--pcgh-text-3, #64748b);
	font-size: 13px;
	line-height: 1.4;
}

.pcgh-gdl-v2__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.pcgh-gdl-v2__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 12px;
	border: 1px solid rgba(var(--pcgh-primary-rgb, 47, 109, 246), .20);
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .10);
	color: var(--pcgh-primary, #2f6df6);
	font-size: 12px;
	line-height: 1;
	text-decoration: none;
}

.pcgh-gdl-v2__chip:hover {
	border-color: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .38);
	color: var(--pcgh-primary, #2f6df6);
}

.pcgh-gdl-v2__stats {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 22px);
	margin-top: 16px;
}

.pcgh-gdl-v2__stat {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.pcgh-gdl-v2__stat + .pcgh-gdl-v2__stat {
	padding-left: clamp(12px, 2vw, 22px);
	border-left: 1px solid var(--pcgh-border, #e2e8f0);
}

.pcgh-gdl-v2__stat strong {
	display: block;
	color: var(--pcgh-text, #0f172a);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.15;
}

.pcgh-gdl-v2__stat small {
	display: block;
	color: var(--pcgh-text-3, #64748b);
	font-size: 12px;
	line-height: 1.3;
}

.pcgh-gdl-v2__stat--score {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 8px;
	align-items: center;
}

.pcgh-gdl-v2__stat--score strong {
	color: #f59e0b;
	font-size: 28px;
	font-weight: 500;
}

.pcgh-gdl-v2__stat--score span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.pcgh-gdl-v2__stars {
	display: flex;
	align-items: center;
	gap: 1px;
	color: #fbbf24;
	font-style: normal;
}

.pcgh-gdl-v2__stars .pcgh-star {
	display: inline-flex;
	width: 12px;
	height: 12px;
	color: #fbbf24;
}

.pcgh-gdl-v2__stars i,
.pcgh-gdl-v2__stars svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.pcgh-gdl-v2__desc {
	display: -webkit-box;
	margin: 18px 0 0;
	overflow: hidden;
	color: var(--pcgh-text-2, #475569);
	font-size: 14px;
	line-height: 1.78;
	text-overflow: ellipsis;
	word-break: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pcgh-gdl-v2__desc strong {
	color: var(--pcgh-text, #0f172a);
	font-weight: 500;
}

.pcgh-gdl-v2__actions {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	margin-top: 18px;
}

.pcgh-gdl-v2__download,
.pcgh-gdl-v2 .pcgh-gdl-v2__fav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-shadow: none;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.pcgh-gdl-v2__download {
	border: 1px solid var(--pcgh-primary, #2f6df6);
	background: var(--pcgh-primary, #2f6df6);
	color: #fff;
}

.pcgh-gdl-v2__download:hover {
	color: #fff;
	background: color-mix(in srgb, var(--pcgh-primary, #2f6df6) 90%, #111827);
	transform: translateY(-1px);
}

.pcgh-gdl-v2__download.is-disabled {
	border-color: var(--pcgh-border, #e2e8f0);
	background: var(--pcgh-surface-2, #f1f5f9);
	color: var(--pcgh-text-3, #64748b);
	cursor: not-allowed;
}

.pcgh-gdl-v2__download i,
.pcgh-gdl-v2__download svg,
.pcgh-gdl-v2 .pcgh-gdl-v2__fav i,
.pcgh-gdl-v2 .pcgh-gdl-v2__fav svg {
	width: 20px;
	height: 20px;
}

.pcgh-gdl-v2 .pcgh-gdl-v2__fav {
	border: 1px solid var(--pcgh-border, #dbe4ef);
	background: var(--pcgh-surface, #fff);
	color: var(--pcgh-text-2, #334155);
}

.pcgh-gdl-v2 .pcgh-gdl-v2__fav:hover {
	border-color: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .42);
	color: var(--pcgh-primary, #2f6df6);
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .06);
	transform: translateY(-1px);
}

.pcgh-gdl-v2 .pcgh-gdl-v2__fav.is-fav {
	border-color: rgba(248, 113, 113, .35);
	background: rgba(248, 113, 113, .08);
	color: #ef4444;
}

.pcgh-gdl-v2__edit {
	text-decoration: none;
}

.pcgh-gdl-v2__hidden-trigger {
	display: none !important;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2__grid {
	background: var(--pcgh-surface, #111827);
	border-color: var(--pcgh-border, #243142);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2 .pcgh-gdl-v2__fav {
	background: var(--pcgh-surface-2, #182233);
	border-color: var(--pcgh-border, #243142);
	color: var(--pcgh-text-2, #cbd5e1);
}

@media (max-width: 1120px) {
	.pcgh-gdl-v2__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.pcgh-gdl-v2__info {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.pcgh-gdl-v2 {
		margin-bottom: 18px;
	}

	.pcgh-gdl-v2__grid {
		gap: 12px;
		padding: 10px;
	}

	.pcgh-gdl-v2__media {
		padding: 0;
	}

	.pcgh-gdl-v2__info {
		padding: 15px;
	}

	.pcgh-gdl-v2__title {
		font-size: 24px;
	}

	.pcgh-gdl-v2__chips {
		gap: 7px;
	}

	.pcgh-gdl-v2__thumbs {
		grid-auto-columns: 96px;
	}

	.pcgh-gdl-v2__chip {
		min-height: 24px;
		padding: 0 11px;
		font-size: 12px;
	}

	.pcgh-gdl-v2__stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		align-items: end;
	}

	.pcgh-gdl-v2__stat--score {
		column-gap: 7px;
	}

	.pcgh-gdl-v2__stat--score strong {
		font-size: 30px;
	}

	.pcgh-gdl-v2__stat strong {
		font-size: 17px;
	}

	.pcgh-gdl-v2__stat small {
		font-size: 12px;
	}

	.pcgh-gdl-v2__actions {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.pcgh-gdl-v2__download,
	.pcgh-gdl-v2 .pcgh-gdl-v2__fav {
		min-height: 48px;
		font-size: 15px;
	}
}

@media (max-width: 520px) {
	.pcgh-gdl-v2__stats {
		grid-template-columns: 1fr 1fr;
	}

	.pcgh-gdl-v2__stat--score {
		grid-column: 1 / -1;
	}
}
