.pcgh-gdl-v2 {
	position: relative;
	--pcgh-gdl-v2-container-pad: 16px;
	--pcgh-gdl-v2-width: min(var(--pcgh-gdl-v2-max-w, var(--pcgh-container-w, 1200px)), calc(100% + (var(--pcgh-gdl-v2-container-pad) * 2)));
	width: var(--pcgh-gdl-v2-width);
	max-width: var(--pcgh-gdl-v2-width);
	min-width: 0;
	margin: 0 calc((100% - var(--pcgh-gdl-v2-width)) / 2) 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 {
	--pcgh-gdl-v2-info-gap: clamp(8px, 1.45vw, 18px);
	--pcgh-gdl-v2-desc-min: clamp(48px, 13%, 86px);
	--pcgh-gdl-v2-meta-h: clamp(28px, 4.8vw, 38px);
	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 {
	display: flex;
	flex-direction: column;
	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;
	gap: var(--pcgh-gdl-v2-info-gap);
	align-self: start;
	height: var(--pcgh-gdl-v2-media-h, 100%);
	max-height: var(--pcgh-gdl-v2-media-h, none);
	min-height: 0;
	box-sizing: border-box;
	justify-content: space-between;
	overflow: hidden;
	padding: 12px 16px;
}

.pcgh-gdl-v2__info > :where(.pcgh-gdl-v2__title,.pcgh-gdl-v2__subtitle,.pcgh-gdl-v2__chips,.pcgh-gdl-v2__stats,.pcgh-gdl-v2__meta-row,.pcgh-gdl-v2__actions,.pcgh-gdl-v2__safety) {
	flex: 0 0 auto;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__info {
	gap: 8px;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__info {
	gap: 6px;
	padding-block: 8px;
}

.pcgh-gdl-v2__title {
	display: -webkit-box;
	margin: 0;
	max-height: calc(1.16em * 2);
	overflow: hidden;
	color: var(--pcgh-text, #0f172a);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 500;
	line-height: 1.16;
	letter-spacing: 0;
	text-overflow: ellipsis;
	word-break: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.pcgh-gdl-v2__subtitle {
	margin: calc(var(--pcgh-gdl-v2-info-gap) * -0.55) 0 0;
	color: var(--pcgh-text-3, #64748b);
	font-size: 12px;
	line-height: 1.35;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__subtitle {
	margin-top: -4px;
}

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

.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.is-info-compact .pcgh-gdl-v2__chips {
	max-height: 24px;
	overflow: hidden;
}

.pcgh-gdl-v2__stats {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: clamp(10px, 1.4vw, 18px);
	margin: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.pcgh-gdl-v2__stats::-webkit-scrollbar {
	display: none;
}

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

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

.pcgh-gdl-v2__stat strong {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: var(--pcgh-text, #0f172a);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.15;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pcgh-gdl-v2__stat small {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: var(--pcgh-text-3, #64748b);
	font-size: 12px;
	line-height: 1.3;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pcgh-gdl-v2__stat--score {
	flex: 1.35 1 0;
	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;
	overflow: hidden;
	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__meta-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 10px;
	margin: 0;
	min-height: 24px;
	height: var(--pcgh-gdl-v2-meta-h);
	max-height: var(--pcgh-gdl-v2-meta-h);
}

.pcgh-gdl-v2__meta-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
	height: 100%;
	min-height: 0;
	padding: 0 10px;
	border: 1px solid var(--pcgh-border, #e2e8f0);
	border-radius: 8px;
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .05);
}

.pcgh-gdl-v2__meta-item small {
	flex: 0 0 auto;
	color: var(--pcgh-text-3, #64748b);
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
}

.pcgh-gdl-v2__meta-item strong {
	min-width: 0;
	overflow: hidden;
	color: var(--pcgh-text, #0f172a);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__meta-row {
	gap: 8px;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__meta-item {
	padding: 0 8px;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__meta-item small,
.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__meta-item strong {
	font-size: 11px;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__meta-row {
	gap: 6px;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__meta-item {
	border-radius: 6px;
}

.pcgh-gdl-v2__desc {
	display: -webkit-box;
	flex: 1 1 var(--pcgh-gdl-v2-desc-min);
	margin: 0;
	min-height: var(--pcgh-gdl-v2-desc-min);
	min-width: 0;
	max-height: calc(1.78em * 3);
	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;
	line-clamp: 3;
}

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

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__desc {
	min-height: 0;
	line-height: 1.6;
	max-height: calc(1.6em * 3);
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__desc {
	flex-basis: 36px;
	min-height: 0;
	font-size: 12px;
	line-height: 1.45;
	max-height: calc(1.45em * 2);
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.pcgh-gdl-v2__actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin-top: 0;
	min-width: 0;
	width: 100%;
}

.pcgh-gdl-v2__actions.has-admin-edit {
	gap: 8px;
}

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

.pcgh-gdl-v2__actions.has-admin-edit :where(.pcgh-gdl-v2__download,.pcgh-gdl-v2__buy,.pcgh-gdl-v2__fav) {
	gap: 6px;
	min-height: 44px;
	padding-inline: 8px;
	font-size: 13px;
}

.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__download {
	flex: 1.35 1 0;
}

.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__buy {
	flex: 1 1 0;
}

.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__fav:not(.pcgh-gdl-v2__edit),
.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__edit {
	flex: 0 0 auto;
	min-width: 78px;
	padding-inline: 9px;
	font-size: 12px;
}

.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__edit {
	min-width: 82px;
}

.pcgh-gdl-v2__download span,
.pcgh-gdl-v2__buy span,
.pcgh-gdl-v2 .pcgh-gdl-v2__fav span {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.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__buy {
	border: 1px solid rgba(var(--pcgh-primary-rgb, 47, 109, 246), .30);
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .08);
	color: var(--pcgh-primary, #2f6df6);
}

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

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

.pcgh-gdl-v2__actions.has-admin-edit :where(.pcgh-gdl-v2__download,.pcgh-gdl-v2__buy,.pcgh-gdl-v2__fav) :where(i,svg) {
	width: 17px;
	height: 17px;
}

.pcgh-gdl-v2__actions.has-admin-edit :where(.pcgh-gdl-v2__fav:not(.pcgh-gdl-v2__edit),.pcgh-gdl-v2__edit) :where(i,svg) {
	width: 16px;
	height: 16px;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__download,
.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__buy,
.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__fav {
	min-height: 42px;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__download,
.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__buy,
.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__fav {
	min-height: 38px;
	font-size: 13px;
}

.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__safety {
	padding-block: 7px;
}

.pcgh-gdl-v2.is-info-tight .pcgh-gdl-v2__safety {
	padding-block: 6px;
}

.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__safety {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	margin-top: 0;
	padding: 9px 12px;
	overflow-x: auto;
	overflow-y: hidden;
	border: 1px solid rgba(var(--pcgh-primary-rgb, 47, 109, 246), .18);
	border-radius: 8px;
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .06);
	color: var(--pcgh-text-2, #475569);
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	scrollbar-width: thin;
}

.pcgh-gdl-v2__safety-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .14);
	color: var(--pcgh-primary, #2f6df6);
}

.pcgh-gdl-v2__safety-icon i,
.pcgh-gdl-v2__safety-icon svg {
	width: 14px;
	height: 14px;
}

.pcgh-gdl-v2__safety strong {
	flex: 0 0 auto;
	color: var(--pcgh-text, #0f172a);
	font-size: 13px;
	font-weight: 600;
}

.pcgh-gdl-v2__safety-text,
.pcgh-gdl-v2__safety-note,
.pcgh-gdl-v2__safety-md5 {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 260px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-gdl-v2__safety-tags {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex: 0 0 auto;
}

.pcgh-gdl-v2__safety-tags em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 20px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .10);
	color: var(--pcgh-primary, #2f6df6);
	font-style: normal;
	font-size: 11px;
	font-weight: 500;
}

.pcgh-gdl-v2__safety-md5 {
	gap: 5px;
	color: var(--pcgh-text-3, #64748b);
}

.pcgh-gdl-v2__safety-md5 code {
	display: inline-block;
	max-width: 150px;
	overflow: hidden;
	color: var(--pcgh-text, #0f172a);
	font-size: 11px;
	text-overflow: ellipsis;
	vertical-align: bottom;
}

.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);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2__buy {
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .16);
	border-color: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .36);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2__safety {
	background: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .12);
	border-color: rgba(var(--pcgh-primary-rgb, 47, 109, 246), .26);
	color: var(--pcgh-text-2, #cbd5e1);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2__safety strong,
html[data-pcgh-theme-resolved="dark"] .pcgh-gdl-v2__safety-md5 code {
	color: var(--pcgh-text, #f8fafc);
}

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

	.pcgh-gdl-v2__info {
		height: auto;
		max-height: none;
		min-height: 0;
		overflow: visible;
		gap: 12px;
		justify-content: flex-start;
	}

	.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__info {
		gap: 12px;
	}

	.pcgh-gdl-v2__desc {
		flex: 0 1 auto;
		min-height: 0;
	}

	.pcgh-gdl-v2__actions {
		margin-top: 0;
	}
}

@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 {
		gap: 10px;
		align-items: stretch;
	}

	.pcgh-gdl-v2__stat + .pcgh-gdl-v2__stat {
		padding-left: 0;
		border-left: 0;
	}

	.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__meta-row {
		gap: 8px;
	}

	.pcgh-gdl-v2__meta-item {
		min-height: 32px;
		padding: 0 10px;
	}

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

	.pcgh-gdl-v2__actions.has-admin-edit :where(.pcgh-gdl-v2__download,.pcgh-gdl-v2__buy,.pcgh-gdl-v2__fav) {
		flex: initial;
		min-height: 48px;
		font-size: 15px;
	}

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

@media (max-width: 520px) {
	.pcgh-gdl-v2__stats {
		gap: 8px;
	}

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

	.pcgh-gdl-v2__meta-row {
		grid-template-columns: 1fr;
	}
}

.pcgh-gdl-v2__stats {
	--pcgh-stat-fit-scale: 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: calc(18px * var(--pcgh-stat-fit-scale));
	max-width: 100%;
	overflow: visible;
}

.pcgh-gdl-v2__stat {
	flex: 0 0 auto;
	min-width: 0;
	max-width: none;
}

.pcgh-gdl-v2__stat + .pcgh-gdl-v2__stat {
	padding-left: calc(18px * var(--pcgh-stat-fit-scale));
}

.pcgh-gdl-v2__stat strong {
	max-width: none;
	overflow: visible;
	font-size: calc(17px * var(--pcgh-stat-fit-scale));
	line-height: 1.15;
	text-overflow: clip;
	white-space: nowrap;
}

.pcgh-gdl-v2__stat small {
	overflow: visible;
	font-size: calc(12px * var(--pcgh-stat-fit-scale));
	line-height: 1.25;
	text-overflow: clip;
	white-space: nowrap;
}

.pcgh-gdl-v2__stat--score {
	column-gap: calc(8px * var(--pcgh-stat-fit-scale));
}

.pcgh-gdl-v2__stat--score span {
	max-width: none;
	overflow: visible;
}

.pcgh-gdl-v2__stat--score strong {
	font-size: calc(28px * var(--pcgh-stat-fit-scale));
	line-height: 1;
}

.pcgh-gdl-v2__stars {
	gap: calc(1px * var(--pcgh-stat-fit-scale));
	white-space: nowrap;
}

.pcgh-gdl-v2__stars .pcgh-star,
.pcgh-gdl-v2__stars i,
.pcgh-gdl-v2__stars svg {
	width: calc(12px * var(--pcgh-stat-fit-scale));
	height: calc(12px * var(--pcgh-stat-fit-scale));
}

@media (max-width: 768px) {
	.pcgh-gdl-v2 {
		--pcgh-gdl-v2-container-pad: 0px;
		--pcgh-gdl-v2-width: 100%;
		width: 100%;
		max-width: 100%;
		margin: 0 0 18px;
		overflow: hidden;
	}

	.pcgh-gdl-v2__crumb {
		margin-bottom: 10px;
		min-width: 0;
	}

	.pcgh-gdl-v2__grid {
		width: 100%;
		max-width: 100%;
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		padding: 10px;
		overflow: hidden;
		box-sizing: border-box;
	}

	.pcgh-gdl-v2__stage {
		aspect-ratio: 16 / 9;
		border-radius: 9px;
	}

	.pcgh-gdl-v2__thumbs {
		grid-auto-columns: minmax(76px, 26vw);
		gap: 7px;
		margin-top: 8px;
		padding: 8px 1px 3px;
	}

	.pcgh-gdl-v2__thumb {
		height: clamp(46px, 14vw, 56px);
	}

	.pcgh-gdl-v2__info {
		height: auto !important;
		max-height: none !important;
		min-height: 0;
		overflow: visible;
		gap: 10px;
		justify-content: flex-start;
		padding: 12px;
	}

	.pcgh-gdl-v2__title {
		max-height: none;
		font-size: clamp(20px, 5.4vw, 24px);
		line-height: 1.18;
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}

	.pcgh-gdl-v2__subtitle {
		margin-top: -4px;
	}

	.pcgh-gdl-v2__chips,
	.pcgh-gdl-v2.is-info-compact .pcgh-gdl-v2__chips {
		max-height: none;
		overflow: visible;
		gap: 6px;
	}

	.pcgh-gdl-v2__chip {
		max-width: 100%;
		min-height: 23px;
		padding: 0 9px;
		font-size: 11px;
	}

	.pcgh-gdl-v2__stats {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		gap: calc(6px * var(--pcgh-stat-fit-scale));
		justify-content: space-between;
		overflow: visible;
	}

	.pcgh-gdl-v2__stat {
		flex: 0 0 auto;
		max-width: none;
	}

	.pcgh-gdl-v2__stat + .pcgh-gdl-v2__stat {
		padding-left: calc(6px * var(--pcgh-stat-fit-scale));
		border-left: 1px solid var(--pcgh-border, #e2e8f0);
	}

	.pcgh-gdl-v2__stat--score {
		grid-template-columns: auto auto;
		column-gap: calc(5px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat strong {
		font-size: calc(14px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat small {
		font-size: calc(10px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat--score strong {
		font-size: calc(23px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stars .pcgh-star,
	.pcgh-gdl-v2__stars i,
	.pcgh-gdl-v2__stars svg {
		width: calc(10px * var(--pcgh-stat-fit-scale));
		height: calc(10px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__meta-row {
		height: auto;
		max-height: none;
	}

	.pcgh-gdl-v2__meta-item {
		height: auto;
		min-height: 34px;
		align-items: flex-start;
		padding: 8px 10px;
	}

	.pcgh-gdl-v2__meta-item strong {
		overflow: visible;
		text-overflow: clip;
		white-space: normal;
		word-break: break-word;
	}

	.pcgh-gdl-v2__desc {
		flex: 0 1 auto;
		min-height: 0;
		max-height: calc(1.6em * 3);
		font-size: 13px;
		line-height: 1.6;
	}

	.pcgh-gdl-v2__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
		gap: 8px;
		width: 100%;
	}

	.pcgh-gdl-v2__actions.has-admin-edit {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__download,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__buy,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__fav:not(.pcgh-gdl-v2__edit),
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__edit,
	.pcgh-gdl-v2__download,
	.pcgh-gdl-v2__buy,
	.pcgh-gdl-v2 .pcgh-gdl-v2__fav {
		width: 100%;
		min-width: 0;
		min-height: 44px;
		padding-inline: 8px;
		font-size: 14px;
	}

	.pcgh-gdl-v2__actions.has-admin-edit :where(.pcgh-gdl-v2__download,.pcgh-gdl-v2__buy,.pcgh-gdl-v2__fav),
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__download,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__buy,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__fav:not(.pcgh-gdl-v2__edit),
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__edit {
		flex: initial;
		min-width: 0;
	}

	.pcgh-gdl-v2__safety {
		flex-wrap: wrap;
		align-items: flex-start;
		overflow: visible;
		padding: 9px 10px;
		line-height: 1.35;
		white-space: normal;
	}

	.pcgh-gdl-v2__safety-text,
	.pcgh-gdl-v2__safety-note,
	.pcgh-gdl-v2__safety-md5 {
		flex: 1 1 auto;
		max-width: 100%;
		overflow: visible;
		text-overflow: clip;
		white-space: normal;
	}

	.pcgh-gdl-v2__safety-tags {
		flex-wrap: wrap;
	}

	.pcgh-gdl-v2__safety-md5 code {
		max-width: 100%;
		overflow: visible;
		text-overflow: clip;
		white-space: normal;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 520px) {
	.pcgh-gdl-v2__grid {
		gap: 8px;
		padding: 8px;
	}

	.pcgh-gdl-v2__info {
		gap: 9px;
		padding: 10px;
	}

	.pcgh-gdl-v2__stats {
		gap: calc(4px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat + .pcgh-gdl-v2__stat {
		padding-left: calc(4px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat strong {
		font-size: calc(12px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat small {
		font-size: calc(9px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat--score {
		column-gap: calc(4px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stat--score strong {
		font-size: calc(20px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__stars .pcgh-star,
	.pcgh-gdl-v2__stars i,
	.pcgh-gdl-v2__stars svg {
		width: calc(9px * var(--pcgh-stat-fit-scale));
		height: calc(9px * var(--pcgh-stat-fit-scale));
	}

	.pcgh-gdl-v2__meta-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.pcgh-gdl-v2__meta-item {
		min-height: 32px;
		padding: 7px 9px;
	}

	.pcgh-gdl-v2__actions,
	.pcgh-gdl-v2__actions.has-admin-edit {
		gap: 7px;
	}

	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__download,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__buy,
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__fav:not(.pcgh-gdl-v2__edit),
	.pcgh-gdl-v2__actions.has-admin-edit .pcgh-gdl-v2__edit,
	.pcgh-gdl-v2__download,
	.pcgh-gdl-v2__buy,
	.pcgh-gdl-v2 .pcgh-gdl-v2__fav {
		min-height: 42px;
		padding-inline: 6px;
		font-size: 13px;
	}

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