﻿.pcgh-ask-home {
	--ask-bg: #f5f7fb;
	--ask-card: #fff;
	--ask-card-2: #f8fafc;
	--ask-border: #e7ebf2;
	--ask-text: #172033;
	--ask-muted: #7a8497;
	--ask-soft: #eef3fb;
	padding: 26px 0 54px;
	background: var(--ask-bg);
	color: var(--ask-text);
}

.pcgh-ask-home a {
	color: inherit;
	text-decoration: none;
}

.pcgh-ask-home__container {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.pcgh-ask-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 18px;
	align-items: stretch;
}

.pcgh-ask-hero__main,
.pcgh-ask-hero__side,
.pcgh-ask-card,
.pcgh-ask-topic-strip {
	border: 1px solid var(--ask-border);
	border-radius: 8px;
	background: var(--ask-card);
	box-shadow: 0 8px 24px rgba(20, 31, 54, .04);
}

.pcgh-ask-hero__main {
	padding: 28px;
}

.pcgh-ask-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--pcgh-primary);
}

.pcgh-ask-hero h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.25;
	letter-spacing: 0;
	color: var(--ask-text);
}

.pcgh-ask-hero p {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.75;
	color: var(--ask-muted);
}

.pcgh-ask-search-row {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin-top: 22px;
}

.pcgh-ask-search {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 0 8px 0 14px;
	border: 1px solid var(--ask-border);
	border-radius: 6px;
	background: var(--ask-card-2);
}

.pcgh-ask-search i {
	font-size: 18px;
	color: var(--ask-muted);
}

.pcgh-ask-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ask-text);
	font-size: 14px;
}

.pcgh-ask-search button,
.pcgh-ask-publish,
.pcgh-ask-side-publish a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 0;
	border-radius: 6px;
	background: var(--pcgh-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.pcgh-ask-search button {
	height: 32px;
	padding: 0 16px;
}

.pcgh-ask-publish--hero,
.pcgh-ask-publish--hero:visited {
	height: 44px;
	min-width: 112px;
	padding: 0 18px;
	color: #fff;
	white-space: nowrap;
}

.pcgh-ask-hero__side {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
}

.pcgh-ask-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.pcgh-ask-stats span {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 8px;
	border-radius: 6px;
	background: var(--ask-card-2);
}

.pcgh-ask-stats strong {
	font-size: 20px;
	line-height: 1;
	color: var(--ask-text);
}

.pcgh-ask-stats em {
	font-size: 12px;
	font-style: normal;
	color: var(--ask-muted);
}

.pcgh-ask-publish {
	min-height: 42px;
}

.pcgh-ask-notice {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	padding: 12px;
	border-radius: 6px;
	background: rgba(var(--pcgh-primary-rgb), .08);
	color: var(--ask-muted);
	font-size: 13px;
	line-height: 1.6;
}

.pcgh-ask-notice i {
	margin-top: 2px;
	color: var(--pcgh-primary);
}

.pcgh-ask-topic-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
}

.pcgh-ask-topic-strip a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 10px;
	padding: 16px;
	border-right: 1px solid var(--ask-border);
	transition: background .18s ease, color .18s ease;
}

.pcgh-ask-topic-strip a:nth-child(4n) {
	border-right: 0;
}

.pcgh-ask-topic-strip a:hover {
	background: var(--ask-soft);
	color: var(--pcgh-primary);
}

.pcgh-ask-topic-strip i {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: rgba(var(--pcgh-primary-rgb), .1);
	color: var(--pcgh-primary);
}

.pcgh-ask-topic-strip strong {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-topic-strip span {
	margin-top: 3px;
	font-size: 12px;
	color: var(--ask-muted);
}

.pcgh-ask-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 18px;
	align-items: start;
}

.pcgh-ask-layout.is-full {
	grid-template-columns: 1fr;
}

.pcgh-ask-main,
.pcgh-ask-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.pcgh-ask-sidebar {
	position: sticky;
	top: 88px;
}

.pcgh-ask-card {
	padding: 18px;
}

.pcgh-ask-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-card__head h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	color: var(--ask-text);
}

.pcgh-ask-card__head > a,
.pcgh-ask-card__head nav {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ask-muted);
	font-size: 13px;
}

.pcgh-ask-card__head nav a {
	padding: 6px 10px;
	border-radius: 999px;
}

.pcgh-ask-card__head nav a.is-active {
	background: rgba(var(--pcgh-primary-rgb), .1);
	color: var(--pcgh-primary);
	font-weight: 700;
}

.pcgh-ask-headlines__grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 16px;
}

.pcgh-ask-headlines__feature { position: relative; display:flex; min-height:260px; flex-direction:column; justify-content:flex-end; padding:0; border-radius:2px; overflow:hidden; background:#f2f5f9; background-position:center; background-size:cover; color:#111827; }

.pcgh-ask-headlines__feature::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 18%, rgba(17, 24, 39, .34)); }

.pcgh-ask-headlines__feature span,
.pcgh-ask-headlines__feature h3 { margin:0; padding:14px 12px 0; color:#ef4444; font-size:16px; font-weight:700; line-height:1.45; }

.pcgh-ask-headlines__feature span {
	align-self: flex-start;
	margin-bottom: 8px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--pcgh-primary);
	font-size: 12px;
	font-weight: 700;
}

.pcgh-ask-headlines__feature h3 { margin:0; padding:14px 12px 0; color:#ef4444; font-size:16px; font-weight:700; line-height:1.45; }

.pcgh-ask-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-ask-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
	border-bottom: 1px dashed var(--ask-border);
	color: var(--ask-muted);
	font-size: 13px;
}

.pcgh-ask-list li:last-child {
	border-bottom: 0;
}

.pcgh-ask-list a {
	overflow: hidden;
	color: var(--ask-text);
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-list a:hover,
.pcgh-ask-post h3 a:hover,
.pcgh-ask-hot-list a:hover {
	color: var(--pcgh-primary);
}

.pcgh-ask-feed__list {
	display: flex;
	flex-direction: column;
}

.pcgh-ask-feed__panel {
	position: relative;
	min-height: 160px;
	transition: opacity .18s ease;
}

.pcgh-ask-feed.is-loading .pcgh-ask-feed__panel {
	opacity: .48;
	pointer-events: none;
}

.pcgh-ask-post {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-post:first-child {
	padding-top: 0;
}

.pcgh-ask-post:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.pcgh-ask-post__avatar img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

.pcgh-ask-post__author {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 22px;
	font-size: 13px;
	color: var(--ask-muted);
}

.pcgh-ask-post__author > a {
	color: var(--ask-text);
	font-weight: 700;
}

.pcgh-ask-post h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 7px;
	font-size: 17px;
	line-height: 1.45;
}

.pcgh-ask-post h3 span {
	flex-shrink: 0;
	padding: 2px 6px;
	border-radius: 4px;
	background: #ff5b5b;
	color: #fff;
	font-size: 12px;
}

.pcgh-ask-post p {
	margin: 0;
	color: var(--ask-muted);
	font-size: 14px;
	line-height: 1.75;
}

.pcgh-ask-post__images {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
	max-width: 520px;
}

.pcgh-ask-post__images.is-count-1 {
	grid-template-columns: minmax(0, 220px);
}

.pcgh-ask-post__images.is-count-2 {
	grid-template-columns: repeat(2, minmax(0, 180px));
}

.pcgh-ask-post__images img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	object-fit: cover;
}

.pcgh-ask-post footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 12px;
	color: var(--ask-muted);
	font-size: 13px;
}

.pcgh-ask-post footer span,
.pcgh-ask-post__topic {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.pcgh-ask-post__topic {
	color: var(--pcgh-primary);
}

.pcgh-ask-side-publish {
	padding: 16px;
	background: linear-gradient(135deg, rgba(var(--pcgh-primary-rgb), .12), var(--ask-card));
}

.pcgh-ask-side-publish a {
	min-height: 42px;
	width: 100%;
}

.pcgh-ask-side-publish p {
	margin: 10px 0 0;
	color: var(--ask-muted);
	font-size: 13px;
	line-height: 1.65;
}

.pcgh-ask-user-rank,
.pcgh-ask-hot-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: rank;
}

.pcgh-ask-user-rank li,
.pcgh-ask-hot-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	border-bottom: 1px dashed var(--ask-border);
	font-size: 14px;
}

.pcgh-ask-user-rank li:last-child,
.pcgh-ask-hot-list li:last-child {
	border-bottom: 0;
}

.pcgh-ask-user-rank em {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--ask-soft);
	color: var(--ask-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.pcgh-ask-user-rank li:nth-child(-n+3) em {
	background: transparent;
	color: inherit;
}

.pcgh-ask-user-rank li em img,
.pcgh-ask-rank-badge img {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 0;
	object-fit: contain;
}

.pcgh-ask-user-rank a {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.pcgh-ask-user-rank img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.pcgh-ask-user-rank span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
	font-weight: 700;
}

.pcgh-ask-user-rank small {
	color: var(--ask-muted);
	font-size: 12px;
	font-weight: 400;
}

.pcgh-ask-hot-list {
	counter-reset: ask-hot;
}

.pcgh-ask-hot-list li {
	counter-increment: ask-hot;
	align-items: flex-start;
	padding: 9px 0;
	line-height: 1.55;
}

.pcgh-ask-hot-list li::before {
	content: counter(ask-hot);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border-radius: 4px;
	background: var(--ask-soft);
	color: var(--ask-muted);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-ask-hot-list li:nth-child(-n+3)::before {
	background: #ff6a3d;
	color: #fff;
}

.pcgh-ask-hot-list li.has-rank-badge::before {
	content: none;
}

.pcgh-ask-rank-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 1px;
}

.pcgh-ask-hot-list a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--ask-text);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pcgh-ask-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pcgh-ask-tags a {
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--ask-card-2);
	color: var(--ask-muted);
	font-size: 13px;
}

.pcgh-ask-tags a:hover {
	background: rgba(var(--pcgh-primary-rgb), .1);
	color: var(--pcgh-primary);
}

.pcgh-ask-qr {
	text-align: center;
}

.pcgh-ask-qr img {
	width: 132px;
	height: 132px;
	border-radius: 8px;
	object-fit: cover;
}

.pcgh-ask-qr strong {
	display: block;
	margin-top: 10px;
	font-size: 15px;
}

.pcgh-ask-qr p {
	margin: 6px 0 0;
	color: var(--ask-muted);
	font-size: 13px;
	line-height: 1.6;
}

.pcgh-ask-bottom-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pcgh-ask-bottom-grid--top {
	gap: 12px;
}

.pcgh-ask-bottom-grid--top .pcgh-ask-card {
	min-height: 210px;
}

.pcgh-ask-empty {
	padding: 24px;
	border-radius: 8px;
	background: var(--ask-card-2);
	color: var(--ask-muted);
	text-align: center;
}

.pcgh-ask-home .pcgh-pagination {
	margin-top: 18px;
}

/* CRMEB-style community homepage density and first viewport */
.pcgh-ask-home {
	--ask-bg: #f1f4f8;
	--ask-border: #eef1f6;
	padding-top: 0;
}

.pcgh-ask-home__container {
	gap: 12px;
}

.pcgh-ask-hero {
	position: relative;
	display: flex;
	justify-content: center;
	min-height: 185px;
	margin-right: calc((100vw - min(100vw, var(--pcgh-container-w, 1280px))) / -2);
	margin-left: calc((100vw - min(100vw, var(--pcgh-container-w, 1280px))) / -2);
	padding: 24px 16px 34px;
	background:
		var(--ask-hero-bg, none) center / cover no-repeat,
		linear-gradient(110deg, #0b62d8 0%, #0753c9 38%, #0b8af2 68%, #11b4e8 100%);
	border-radius: 0;
	overflow: hidden;
}

.pcgh-ask-hero::after {
	content: none;
}

.pcgh-ask-hero__main {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.pcgh-ask-hero__side {
	position: absolute;
	z-index: 2;
	right: max(16px, calc((100vw - var(--pcgh-container-w, 1280px)) / 2));
	bottom: 34px;
	width: 210px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.pcgh-ask-eyebrow {
	display: none;
}

.pcgh-ask-hero h1 {
	font-size: 34px;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 3px 12px rgba(0, 42, 120, .24);
}

.pcgh-ask-hero p {
	margin-top: 6px;
	color: rgba(255, 255, 255, .86);
}

.pcgh-ask-search {
	width: min(520px, 100%);
	height: 38px;
	margin: 20px auto 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 8px 18px rgba(0, 64, 156, .18);
}

.pcgh-ask-search button {
	height: 30px;
	min-width: 68px;
	border-radius: 999px;
}

.pcgh-ask-stats,
.pcgh-ask-notice {
	display: none;
}

.pcgh-ask-publish {
	min-height: 34px;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(var(--pcgh-primary-rgb), .28);
}

.pcgh-ask-topic-strip {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: -26px;
	padding: 16px 18px;
	gap: 14px 18px;
	border: 0;
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(24, 38, 67, .08);
	z-index: 2;
}

.pcgh-ask-topic-strip a,
.pcgh-ask-topic-strip a:nth-child(2n),
.pcgh-ask-topic-strip a:nth-child(4n) {
	min-width: 0;
	padding: 0;
	border: 0;
}

.pcgh-ask-topic-strip i {
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background: var(--pcgh-primary);
	color: #fff;
	font-size: 20px;
}

.pcgh-ask-topic-strip a:nth-child(5n+2) i { background: #ef4444; }
.pcgh-ask-topic-strip a:nth-child(5n+3) i { background: #8b5cf6; }
.pcgh-ask-topic-strip a:nth-child(5n+4) i { background: #f59e0b; }
.pcgh-ask-topic-strip a:nth-child(5n) i { background: #10b981; }

.pcgh-ask-topic-strip strong {
	font-size: 13px;
}

.pcgh-ask-quickbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px 190px;
	gap: 12px;
}

.pcgh-ask-quickbar__notice,
.pcgh-ask-quickbar__action {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 6px;
	background: var(--ask-card);
	color: var(--ask-text);
	font-size: 16px;
}

.pcgh-ask-quickbar__notice {
	padding-right: 16px;
	padding-left: 24px;
}

.pcgh-ask-quickbar__notice strong {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 0;
	line-height: 1;
	font-weight: 700;
}

.pcgh-ask-quickbar__notice strong img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.pcgh-ask-quickbar__notice span {
	overflow: hidden;
	color: var(--ask-text);
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-quickbar__action {
	justify-content: center;
	gap: 9px;
	padding: 0 14px;
}

.pcgh-ask-quickbar__action img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.pcgh-ask-quickbar__action strong {
	color: var(--ask-text);
	font-size: 18px;
	font-weight: 800;
	white-space: nowrap;
}

.pcgh-ask-news-board {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 22px;
	align-items: start;
	min-width: 0;
	padding: 18px 20px 20px;
	border-radius: 6px;
	background: var(--ask-card);
	color: var(--ask-text);
}

.pcgh-ask-news-board__main,
.pcgh-ask-news-board__activity {
	min-width: 0;
}

.pcgh-ask-news-board__body {
	display: grid;
	grid-template-columns: minmax(300px, .94fr) minmax(0, 1.06fr);
	gap: 22px;
	align-items: start;
}

.pcgh-ask-news-board__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.pcgh-ask-news-board__head--activity {
	justify-content: flex-start;
	margin-bottom: 10px;
}

.pcgh-ask-news-board__head h2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--ask-text);
}

.pcgh-ask-news-board__title-icon {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.pcgh-ask-news-board__activity .pcgh-ask-news-board__title-icon {
	animation: pcgh-ask-news-icon-spin 5s linear infinite;
}

@keyframes pcgh-ask-news-icon-spin {
	to {
		transform: rotate(360deg);
	}
}

.pcgh-ask-news-board__head i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 0;
	background: transparent;
	color: var(--pcgh-primary);
	font-size: 22px;
}

.pcgh-ask-news-board__arrows {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ask-muted);
}

.pcgh-ask-news-board__arrows--list {
	justify-content: flex-end;
	margin-bottom: 0;
}

.pcgh-ask-news-board__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ask-text);
	cursor: pointer;
	opacity: .72;
	transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.pcgh-ask-news-board__arrow:last-child,
.pcgh-ask-news-board__arrow:hover {
	color: var(--ask-text);
	opacity: .72;
}

.pcgh-ask-news-board__arrow:hover {
	transform: translateY(-1px);
	opacity: 1;
}

.pcgh-ask-news-board__arrow[disabled] {
	cursor: default;
	opacity: .25;
	transform: none;
}

.pcgh-ask-news-board__arrows i {
	width: auto;
	height: auto;
	font-size: 22px;
	color: currentColor;
}

.pcgh-ask-news-slider {
	position: relative;
	min-width: 0;
}

.pcgh-ask-news-board__feature .pcgh-ask-news-slider {
	position: relative;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.pcgh-ask-news-board__feature .pcgh-ask-news-slider:active {
	cursor: grabbing;
}

.pcgh-ask-news-board__feature {
	position: relative;
}

.pcgh-ask-news-board__feature .pcgh-ask-news-slider {
	min-height: 0;
}

.pcgh-ask-news-slide {
	display: none;
}

.pcgh-ask-news-slide.is-active {
	display: grid;
	animation: pcgh-ask-news-slide-in .26s ease;
}

.pcgh-ask-news-feature-slide.is-active {
	display: block;
}

.pcgh-ask-news-dots {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .12);
	backdrop-filter: blur(2px);
	transform: none;
}

.pcgh-ask-news-dots button {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .55);
	box-shadow: none;
	cursor: pointer;
	transition: width .18s ease, background .18s ease, opacity .18s ease;
}

.pcgh-ask-news-dots button.is-active,
.pcgh-ask-news-dots button:hover {
	width: 16px;
	background: var(--pcgh-primary);
	opacity: 1;
}

.pcgh-ask-news-list-slide {
	flex-direction: column;
	gap: 0;
}

.pcgh-ask-news-list-slide.is-active {
	display: flex;
}

@keyframes pcgh-ask-news-slide-in {
	from {
		opacity: 0;
		transform: translateX(8px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.pcgh-ask-news-feature {
	display: block;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
	transition: transform .18s ease, box-shadow .18s ease;
}

.pcgh-ask-news-feature:hover {
	transform: none;
	box-shadow: none;
}

.pcgh-ask-news-feature__thumb {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 0;
	background: var(--ask-soft);
}

.pcgh-ask-news-feature__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-ask-news-feature__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 0 0;
}

.pcgh-ask-news-feature__body em {
	width: fit-content;
	max-width: 100%;
	overflow: hidden;
	color: var(--pcgh-primary);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-news-feature__body strong,
.pcgh-ask-news-item > a,
.pcgh-ask-news-board__activity li a {
	overflow: hidden;
	color: var(--ask-text);
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-news-feature__body strong {
	color: var(--ask-text);
	font-size: 17px;
	line-height: 1.35;
}

.pcgh-ask-news-feature__body small,
.pcgh-ask-news-item p,
.pcgh-ask-news-item div,
.pcgh-ask-news-board__activity li span,
.pcgh-ask-news-empty {
	color: var(--ask-muted);
	font-size: 12px;
	line-height: 1.6;
}

.pcgh-ask-news-feature__body small {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 13px;
}

.pcgh-ask-news-board__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0;
	min-width: 0;
}

.pcgh-ask-news-item {
	padding: 0 0 15px;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-news-item:first-child {
	padding-top: 0;
}

.pcgh-ask-news-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pcgh-ask-news-item + .pcgh-ask-news-item {
	padding-top: 15px;
}

.pcgh-ask-news-item > a {
	display: block;
	font-size: 15px;
	line-height: 1.55;
	transition: color .18s ease;
}

.pcgh-ask-news-item > a:hover,
.pcgh-ask-news-board__activity li a:hover {
	color: var(--pcgh-primary);
}

.pcgh-ask-news-item p {
	display: -webkit-box;
	overflow: hidden;
	margin: 9px 0 7px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 13px;
}

.pcgh-ask-news-item div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 12px;
}

.pcgh-ask-news-item div span,
.pcgh-ask-news-item div time {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--ask-muted);
	font-style: normal;
}

.pcgh-ask-news-board__activity ul {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-ask-news-board__activity li {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 44px;
	padding: 3px 0 3px 2px;
	border-bottom: 0;
}

.pcgh-ask-news-board__activity li:last-child {
	border-bottom: 0;
}

.pcgh-ask-news-board__activity li::before {
	display: none;
}

.pcgh-ask-news-board__activity li a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.65;
}

.pcgh-ask-news-board__activity li span {
	color: var(--ask-muted);
	font-size: 12px;
	white-space: nowrap;
}

.pcgh-ask-top-board { display:block; }`r`n.pcgh-ask-top-board__grid { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:18px; align-items:start; }

.pcgh-ask-top-board .pcgh-ask-card { min-height: 260px; }

.pcgh-ask-top-board .pcgh-ask-headlines__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 16px; }

.pcgh-ask-activity .pcgh-ask-list li {
	min-height: 32px;
}

.pcgh-ask-layout {
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 12px;
}

.pcgh-ask-main,
.pcgh-ask-sidebar {
	gap: 12px;
}

.pcgh-ask-card {
	padding: 16px 18px;
	border: 0;
	border-radius: 6px;
	box-shadow: none;
}

.pcgh-ask-card__head {
	min-height: 28px;
	margin-bottom: 10px;
	padding-bottom: 8px;
}

.pcgh-ask-card__head h2 {
	position: relative;
	padding-left: 12px;
	font-size: 16px;
	font-weight: 800;
}

.pcgh-ask-card__head h2::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 0;
	width: 3px;
	border-radius: 999px;
	background: var(--pcgh-primary);
}

.pcgh-ask-headlines__grid {
	grid-template-columns: 410px minmax(0, 1fr);
	gap: 18px;
}

.pcgh-ask-headlines__feature { position: relative; display:flex; min-height:260px; flex-direction:column; justify-content:flex-end; padding:0; border-radius:2px; overflow:hidden; background:#f2f5f9; background-position:center; background-size:cover; color:#111827; }

.pcgh-ask-list li {
	min-height: 30px;
	font-size: 12px;
}

.pcgh-ask-list a {
	font-size: 13px;
}

.pcgh-ask-post {
	grid-template-columns: 1fr;
	gap: 0;
	padding: 18px 0;
}

.pcgh-ask-post__avatar {
	display: none;
}

.pcgh-ask-post h3 {
	margin-top: 0;
	font-size: 18px;
}

.pcgh-ask-post p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pcgh-ask-post__images {
	max-width: 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pcgh-ask-post__images.is-count-1 {
	grid-template-columns: minmax(0, 260px);
}

.pcgh-ask-post__images.is-count-2 {
	grid-template-columns: repeat(2, minmax(0, 220px));
}

.pcgh-ask-post__images.is-count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pcgh-ask-post__images.is-count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pcgh-ask-post__images img {
	aspect-ratio: 16 / 9;
	border-radius: 2px;
}

.pcgh-ask-user-rank li,
.pcgh-ask-hot-list li {
	min-height: 32px;
	font-size: 13px;
}

.pcgh-ask-bottom-grid {
	gap: 12px;
}

.pcgh-ask-qr img {
	width: 116px;
	height: 116px;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-home {
	--ask-bg: #10151f;
	--ask-card: #171d29;
	--ask-card-2: #111722;
	--ask-border: rgba(255, 255, 255, .08);
	--ask-text: #edf2fb;
	--ask-muted: #9ca8ba;
	--ask-soft: rgba(255, 255, 255, .06);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-hero__main,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-hero__side,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-card,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip {
	box-shadow: none;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-search {
	background: rgba(17, 23, 34, .86);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-quickbar__notice,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-quickbar__action {
	background: var(--ask-card);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-news-feature:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

/* Ask reference refinement */
.pcgh-ask-home {
	--ask-bg: #f2f5f9;
	--ask-card: #fff;
	--ask-card-2: #f7f9fc;
	--ask-border: #edf1f6;
	--ask-text: #243044;
	--ask-muted: #8b95a8;
	--ask-soft: #f3f7fd;
	padding: 0 0 58px;
	font-size: 14px;
}

.pcgh-ask-home__container {
	gap: 14px;
}

.pcgh-ask-hero {
	min-height: 214px;
	padding: 28px 16px 48px;
	background:
		var(--ask-hero-bg, none) center / cover no-repeat,
		linear-gradient(105deg, #0747b7 0%, #075fd7 34%, #0b8cf1 70%, #19b7ef 100%);
}

.pcgh-ask-hero::before {
	content: none;
}

.pcgh-ask-hero::after {
	content: none;
}

.pcgh-ask-hero__main {
	width: min(820px, 100%);
}

.pcgh-ask-hero h1 {
	font-size: 36px;
	line-height: 1.15;
}

.pcgh-ask-hero p {
	font-size: 13px;
	letter-spacing: 0;
}

.pcgh-ask-search {
	width: min(560px, 100%);
	height: 40px;
	margin-top: 18px;
	padding-left: 16px;
	background: rgba(255, 255, 255, .9);
}

.pcgh-ask-search input {
	font-size: 13px;
}

.pcgh-ask-hero__side {
	right: max(18px, calc((100vw - var(--pcgh-container-w, 1280px)) / 2 + 18px));
	bottom: 50px;
	width: auto;
}

.pcgh-ask-publish {
	min-width: 86px;
	min-height: 32px;
	padding: 0 16px;
	font-size: 13px;
}

.pcgh-ask-topic-strip {
	position: relative;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: -38px;
	padding: 18px 20px;
	gap: 16px 18px;
	border-radius: 5px;
}

.pcgh-ask-topic-strip a {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 10px;
	transition: color .18s ease, background .18s ease;
}

.pcgh-ask-topic-strip a:hover {
	background: transparent;
	color: var(--pcgh-primary);
	box-shadow: none;
}

.pcgh-ask-topic-strip i,
.pcgh-ask-topic-strip svg,
.pcgh-ask-topic-cover {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background: var(--pcgh-primary);
	color: #fff;
	font-size: 20px;
	box-sizing: border-box;
	overflow: hidden;
}

.pcgh-ask-topic-strip svg {
	padding: 11px;
	stroke-width: 2.2;
}

.pcgh-ask-topic-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-ask-topic-strip a:nth-child(5n+2) i,
.pcgh-ask-topic-strip a:nth-child(5n+2) svg { background: #ef4444; }
.pcgh-ask-topic-strip a:nth-child(5n+3) i,
.pcgh-ask-topic-strip a:nth-child(5n+3) svg { background: #8b5cf6; }
.pcgh-ask-topic-strip a:nth-child(5n+4) i,
.pcgh-ask-topic-strip a:nth-child(5n+4) svg { background: #f59e0b; }
.pcgh-ask-topic-strip a:nth-child(5n) i,
.pcgh-ask-topic-strip a:nth-child(5n) svg { background: #10b981; }

.pcgh-ask-quickbar {
	grid-template-columns: minmax(0, 1fr) 190px 190px;
}

.pcgh-ask-quickbar__notice,
.pcgh-ask-quickbar__action {
	min-height: 48px;
	border-radius: 7px;
	box-shadow: none;
}

.pcgh-ask-top-board { display:block; }`r`n.pcgh-ask-top-board__grid { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:18px; align-items:start; }

.pcgh-ask-top-board .pcgh-ask-card { min-height: 260px; }

.pcgh-ask-card {
	padding: 17px 18px;
	border-radius: 5px;
	background: var(--ask-card);
}

.pcgh-ask-card__head {
	min-height: 30px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom-color: var(--ask-border);
}

.pcgh-ask-card__head h2 {
	font-size: 16px;
}

.pcgh-ask-card__head--tabs {
	align-items: stretch;
	padding: 0;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-card__head--tabs nav {
	gap: 0;
	width: 100%;
}

.pcgh-ask-card__head--tabs nav a {
	position: relative;
	padding: 0 18px 12px 0;
	border-radius: 0;
	color: #657085;
	font-size: 14px;
	font-weight: 600;
}

.pcgh-ask-card__head--tabs nav a.is-active {
	background: transparent;
	color: var(--pcgh-primary);
}

.pcgh-ask-card__head--tabs nav a.is-active::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: -1px;
	left: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--pcgh-primary);
}

.pcgh-ask-headlines__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: 30px;
}

.pcgh-ask-headlines__feature { position: relative; display:flex; min-height:260px; flex-direction:column; justify-content:flex-end; padding:0; border-radius:2px; overflow:hidden; background:#f2f5f9; background-position:center; background-size:cover; color:#111827; }

.pcgh-ask-headlines__feature::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 18%, rgba(17, 24, 39, .34)); }

.pcgh-ask-headlines__feature-body { position:relative; z-index:1; display:flex; flex-direction:column; justify-content:flex-end; min-height:100%; padding:16px 0 0; }

.pcgh-ask-headlines__feature h3 { margin:0; padding:14px 12px 0; color:#ef4444; font-size:16px; font-weight:700; line-height:1.45; }

.pcgh-ask-headlines__feature p {
	margin: 8px 0 0;
	padding: 0 12px 12px;
	color: #7a8497;
	font-size: 13px;
	line-height: 1.65;
}

.pcgh-ask-headlines__items {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-ask-headlines__items li {
	padding: 0;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-headlines__items li:last-child {
	border-bottom: 0;
}

.pcgh-ask-headlines__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 11px 0;
	color: var(--ask-text);
}

.pcgh-ask-headlines__thumb {
	flex: 0 0 86px;
	width: 86px;
	height: 58px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--ask-card-2);
}

.pcgh-ask-headlines__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-ask-headlines__item-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pcgh-ask-headlines__item strong {
	display: -webkit-box;
	overflow: hidden;
	color: #111827;
	font-size: 16px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.pcgh-ask-headlines__item em {
	display: -webkit-box;
	overflow: hidden;
	color: var(--ask-muted);
	font-style: normal;
	font-size: 13px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.pcgh-ask-headlines__item small {
	color: var(--ask-muted);
	font-size: 12px;
}

.pcgh-ask-card__head > a {
	color: var(--ask-muted);
}

.pcgh-ask-card__head > a i {
	font-size: 16px;
}

.pcgh-ask-card__head > a:hover {
	color: var(--pcgh-primary);
}

.pcgh-ask-activity .pcgh-ask-card__head h2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-left: 0;
}

.pcgh-ask-activity .pcgh-ask-card__head h2::before {
	content: none;
}

.pcgh-ask-activity .pcgh-community-icon {
	color: var(--pcgh-primary);
}

.pcgh-ask-activity__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcgh-ask-activity__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--ask-border);
}

.pcgh-ask-activity__list li:last-child {
	border-bottom: 0;
}

.pcgh-ask-activity__list a { min-width:0; flex:1; overflow:hidden; color:var(--ask-text); font-size:15px; line-height:1.45; white-space:nowrap; text-overflow:ellipsis; }

.pcgh-ask-activity__list time {
	flex: 0 0 auto;
	color: #a1a8b5;
	font-size: 13px;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-activity__list a { min-width:0; flex:1; overflow:hidden; color:var(--ask-text); font-size:15px; line-height:1.45; white-space:nowrap; text-overflow:ellipsis; }

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-activity__list time { color:#94a3b8; }`r`nhtml[data-pcgh-theme-resolved="dark"] .pcgh-ask-home { --ask-bg:#0f131a; --ask-card:#151b24; --ask-card-2:#101722; --ask-border:#243041; --ask-text:#e7edf7; --ask-muted:#97a3b6; --ask-soft:rgba(255,255,255,.04); }`r`nhtml[data-pcgh-theme-resolved="dark"] .pcgh-ask-headlines__feature { background:#141a24; }`r`nhtml[data-pcgh-theme-resolved="dark"] .pcgh-ask-headlines__feature::before { background:linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, .52)); }`r`nhtml[data-pcgh-theme-resolved="dark"] .pcgh-ask-headlines__feature h3,`r`nhtml[data-pcgh-theme-resolved="dark"] .pcgh-ask-headlines__item strong { color:#eef3fb; }

.pcgh-ask-layout {
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 14px;
}

.pcgh-ask-feed {
	padding-top: 15px;
}

.pcgh-ask-post {
	display: block;
	padding: 22px 0;
}

.pcgh-ask-post.has-cover .pcgh-ask-post__body {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	column-gap: 16px;
	row-gap: 4px;
	align-items: start;
}

.pcgh-ask-post h3 {
	display: block;
	margin: 0 0 3px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
}

.pcgh-ask-post h3 span {
	display: inline-flex;
	margin-right: 8px;
	vertical-align: 2px;
}

.pcgh-ask-post p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
}

.pcgh-ask-post__cover {
	display: block;
	grid-row: 1 / span 3;
	overflow: hidden;
	width: 100%;
	margin: 0;
	border: 1px solid var(--ask-border);
	border-radius: 4px;
	background: var(--ask-soft);
	aspect-ratio: 4 / 3;
}

.pcgh-ask-post__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcgh-ask-post.has-cover h3,
.pcgh-ask-post.has-cover p,
.pcgh-ask-post.has-cover footer {
	grid-column: 2;
}

.pcgh-ask-post__images {
	gap: 10px;
	margin-top: 13px;
}

.pcgh-ask-post__images img {
	aspect-ratio: 16 / 8.5;
	border: 1px solid var(--ask-border);
	border-radius: 2px;
}

.pcgh-ask-post footer {
	gap: 14px;
	margin-top: 13px;
	font-size: 12px;
}

.pcgh-ask-post__author {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: auto;
	font-size: 12px;
	color: var(--ask-muted);
}

.pcgh-ask-post__author img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
}

.pcgh-ask-post__author span {
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-sidebar {
	top: 86px;
}

.pcgh-ask-side-publish {
	background: var(--ask-card);
}

.pcgh-ask-side-publish a {
	min-height: 40px;
	border-radius: 4px;
}

.pcgh-ask-user-rank li {
	gap: 8px;
	padding: 6px 0;
}

.pcgh-ask-user-rank em {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.pcgh-ask-user-rank li em img,
.pcgh-ask-rank-badge img {
	width: 22px;
	height: 22px;
	border-radius: 0;
	object-fit: contain;
}

.pcgh-ask-user-rank img {
	width: 30px;
	height: 30px;
}

.pcgh-ask-hot-list li {
	padding: 8px 0;
}

.pcgh-ask-hot-list li::before {
	border-radius: 50%;
}

.pcgh-ask-tags {
	gap: 8px 7px;
}

.pcgh-ask-tags a {
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.pcgh-ask-qr {
	color: var(--ask-muted);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-home {
	--ask-bg: #10151f;
	--ask-card: #171d29;
	--ask-card-2: #111722;
	--ask-border: rgba(255, 255, 255, .08);
	--ask-text: #edf2fb;
	--ask-muted: #9ca8ba;
	--ask-soft: rgba(255, 255, 255, .06);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-search {
	background: rgba(255, 255, 255, .9);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-search input {
	color: #172033;
}

.pcgh-ask-hero .pcgh-ask-search-row {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
	width: min(690px, 100%);
	margin: 18px auto 0;
}

.pcgh-ask-hero .pcgh-ask-search {
	flex: 1;
	width: auto;
	height: 40px;
	margin: 0;
}

.pcgh-ask-hero .pcgh-ask-publish--hero,
.pcgh-ask-hero .pcgh-ask-publish--hero:visited {
	width: auto;
	height: 40px;
	min-height: 40px;
	min-width: 110px;
	padding: 0 18px;
	color: #fff;
	animation: pcgh-ask-publish-pulse 1.8s ease-in-out infinite;
}

@keyframes pcgh-ask-publish-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(var(--pcgh-primary-rgb), .34);
		filter: brightness(1);
	}
	50% {
		box-shadow: 0 0 0 7px rgba(var(--pcgh-primary-rgb), 0);
		filter: brightness(1.08);
	}
}

.pcgh-ask-topic-strip {
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin-top: -40px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.pcgh-ask-topic-strip a,
.pcgh-ask-topic-strip a:nth-child(2n),
.pcgh-ask-topic-strip a:nth-child(4n) {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 14px;
	min-height: 72px;
	padding: 14px 20px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.pcgh-ask-topic-strip a:hover {
	transform: translateY(-3px);
	border-color: rgba(var(--pcgh-primary-rgb), .32);
	background: #fff;
	color: inherit;
	box-shadow: none;
}

.pcgh-ask-topic-strip i,
.pcgh-ask-topic-strip svg,
.pcgh-ask-topic-cover {
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 0;
	background: transparent !important;
	color: var(--pcgh-primary);
	font-size: 30px;
	box-sizing: border-box;
	overflow: hidden;
}

.pcgh-ask-topic-strip svg {
	width: 42px;
	height: 42px;
	padding: 5px;
	stroke-width: 2.4;
}

.pcgh-ask-topic-cover img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pcgh-ask-topic-strip strong {
	min-width: 0;
	overflow: hidden;
	color: #1f2937;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-topic-strip span {
	min-width: 0;
	overflow: hidden;
	margin-top: 5px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pcgh-ask-topic-strip a:nth-child(5n+1) :where(i, svg) { color: #60a5fa; }
.pcgh-ask-topic-strip a:nth-child(5n+2) :where(i, svg) { color: #818cf8; }
.pcgh-ask-topic-strip a:nth-child(5n+3) :where(i, svg) { color: #34d399; }
.pcgh-ask-topic-strip a:nth-child(5n+4) :where(i, svg) { color: #fb923c; }
.pcgh-ask-topic-strip a:nth-child(5n) :where(i, svg) { color: #60a5fa; }

.pcgh-ask-rank-page {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 26px;
	align-items: start;
}

.pcgh-ask-rank-standalone {
	padding-top: 34px;
}

.pcgh-ask-rank-page__side {
	display: grid;
	gap: 20px;
}

.pcgh-ask-rank-menu,
.pcgh-ask-rank-note,
.pcgh-ask-rank-table {
	border: 1px solid var(--ask-border);
	border-radius: 12px;
	background: var(--ask-card);
	box-shadow: none;
}

.pcgh-ask-rank-menu {
	padding: 24px 12px;
}

.pcgh-ask-rank-menu h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 12px 26px;
	color: var(--ask-text);
	font-size: 20px;
	font-weight: 900;
}

.pcgh-ask-rank-menu h2 i {
	color: var(--pcgh-primary);
	font-size: 24px;
}

.pcgh-ask-rank-menu nav {
	display: grid;
	gap: 12px;
}

.pcgh-ask-rank-menu nav a {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 58px;
	padding: 0 18px;
	border-radius: 10px;
	color: #7b8aa1;
	font-size: 17px;
	font-weight: 800;
}

.pcgh-ask-rank-menu nav a.is-active {
	background: var(--pcgh-primary);
	color: #fff;
	box-shadow: none;
}

.pcgh-ask-rank-menu nav i {
	font-size: 22px;
}

.pcgh-ask-rank-note {
	padding: 22px;
	color: #8ba0bb;
}

.pcgh-ask-rank-note strong {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: #64748b;
	font-size: 16px;
}

.pcgh-ask-rank-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
}

.pcgh-ask-rank-main {
	min-width: 0;
}

.pcgh-ask-rank-podium {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.pcgh-ask-rank-podium__card {
	position: relative;
	display: flex;
	min-height: 220px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 20px 20px;
	border-radius: 12px;
	color: #334155;
	overflow: hidden;
}

.pcgh-ask-rank-podium__card.is-rank-1 {
	min-height: 236px;
	background: linear-gradient(145deg, #fff2a9, #ffd84d);
	color: #8a4a0a;
}

.pcgh-ask-rank-podium__card.is-rank-2 {
	background: linear-gradient(145deg, #eef3f9, #ced9e6);
}

.pcgh-ask-rank-podium__card.is-rank-3 {
	background: linear-gradient(145deg, #ffe4bd, #ffc47f);
	color: #8b3f16;
}

.pcgh-ask-rank-podium__badge {
	position: absolute;
	top: 18px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(15, 23, 42, .16);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}

.pcgh-ask-rank-podium__badge.has-image {
	background: transparent;
	border-radius: 0;
	color: inherit;
}

.pcgh-ask-rank-podium__badge img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.pcgh-ask-rank-podium__label {
	position: absolute;
	top: 24px;
	right: 22px;
	color: rgba(71, 85, 105, .82);
	font-size: 14px;
}

.pcgh-ask-rank-podium__avatar {
	position: relative;
	display: inline-flex;
	margin-bottom: 14px;
}

.pcgh-ask-rank-podium__avatar img {
	width: 70px;
	height: 70px;
	border: 3px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	object-fit: cover;
}

.pcgh-ask-rank-podium__card strong {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
}

.pcgh-ask-rank-podium__card.is-rank-2 strong {
	color: #334155;
}

.pcgh-ask-rank-levels {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	min-width: 0;
}

.pcgh-ask-rank-level-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	height: 20px;
	padding: 0 7px;
	border-radius: 4px;
	background: color-mix(in srgb, var(--pcgh-rank-badge-c) 14%, #fff);
	border: 1px solid color-mix(in srgb, var(--pcgh-rank-badge-c) 38%, transparent);
	color: var(--pcgh-rank-badge-c);
	font-size: 12px;
	font-weight: 800;
}

.pcgh-ask-rank-level-badge em {
	color: inherit;
	font-style: normal;
	line-height: 1;
}

.pcgh-ask-rank-level-badge__media {
	width: 13px;
	height: 13px;
	color: var(--pcgh-rank-badge-c);
	stroke: var(--pcgh-rank-badge-c);
	flex: 0 0 auto;
}

.pcgh-ask-rank-level-badge__media.is-image {
	display: block;
	width: auto;
	max-width: 72px;
	height: auto;
	max-height: 20px;
	object-fit: contain;
	border-radius: 0;
	stroke: none;
}

.pcgh-ask-rank-level-badge.is-image-only {
	padding: 0;
	border: 0;
	background: transparent;
}

.pcgh-ask-rank-podium__card small {
	color: rgba(71, 85, 105, .78);
	font-size: 13px;
}

.pcgh-ask-rank-podium__card b {
	margin-top: 24px;
	color: #1e293b;
	font-size: 30px;
	line-height: 1;
}

.pcgh-ask-rank-podium__card b span {
	margin-left: 6px;
	color: rgba(71, 85, 105, .82);
	font-size: 13px;
	font-weight: 500;
}

.pcgh-ask-rank-table {
	overflow: hidden;
}

.pcgh-ask-rank-table__head,
.pcgh-ask-rank-row {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 230px 160px;
	align-items: center;
	gap: 16px;
}

.pcgh-ask-rank-table__head {
	min-height: 56px;
	padding: 0 26px;
	background: var(--ask-card-2);
	color: #8ba0bb;
	font-size: 14px;
}

.pcgh-ask-rank-table__head span:last-child {
	text-align: right;
}

.pcgh-ask-rank-row {
	min-height: 86px;
	padding: 0 26px;
	border-top: 1px solid var(--ask-border);
	color: var(--ask-text);
}

.pcgh-ask-rank-row__num {
	color: #cbd5e1;
	font-size: 20px;
	font-weight: 900;
	text-align: center;
}

.pcgh-ask-rank-row__user {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.pcgh-ask-rank-row__user img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
}

.pcgh-ask-rank-row__user > span {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.pcgh-ask-rank-row__user strong {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--ask-text);
	font-size: 16px;
	font-weight: 800;
}

.pcgh-ask-rank-row__user small,
.pcgh-ask-rank-row__data {
	color: #7284a0;
	font-size: 14px;
}

.pcgh-ask-rank-row__score {
	color: #1f2937;
	font-size: 24px;
	font-weight: 900;
	text-align: right;
}

.pcgh-ask-rank-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.pcgh-ask-rank-pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--ask-card);
	color: var(--ask-muted);
	font-weight: 800;
}

.pcgh-ask-rank-pagination a.is-active {
	background: var(--pcgh-primary);
	color: #fff;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:nth-child(2n),
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:nth-child(4n) {
	border-color: rgba(148, 163, 184, .18);
	background: #121827;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:hover {
	border-color: rgba(var(--pcgh-primary-rgb), .38);
	background: #192234;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip strong {
	color: #f8fafc;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip span {
	color: rgba(226, 232, 240, .68);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-menu,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-note,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-table,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-pagination a {
	background: var(--ask-card);
	border-color: var(--ask-border);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-table__head {
	background: var(--ask-card-2);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-row__score {
	color: #f8fafc;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-podium__card.is-rank-2 strong {
	color: #f8fafc;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-level-badge {
	background: color-mix(in srgb, var(--pcgh-rank-badge-c) 18%, rgba(15, 23, 42, .9));
	border-color: color-mix(in srgb, var(--pcgh-rank-badge-c) 48%, transparent);
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-level-badge.is-image-only {
	background: transparent;
	border-color: transparent;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-level-badge__media.is-image,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-podium__badge.has-image {
	background: transparent;
}

html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-row__user small,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-row__data,
html[data-pcgh-theme-resolved="dark"] .pcgh-ask-rank-note {
	color: #94a3b8;
}

@media (max-width: 1180px) {
	.pcgh-ask-hero,
	.pcgh-ask-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
	}
	.pcgh-ask-quickbar {
		grid-template-columns: minmax(0, 1fr) 190px 190px;
	}
	.pcgh-ask-news-board {
		padding: 18px;
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 18px;
	}
	.pcgh-ask-news-board__body {
		grid-template-columns: minmax(260px, .94fr) minmax(0, 1.06fr);
		gap: 18px;
	}
	.pcgh-ask-news-board__feature {
		grid-column: auto;
	}
	.pcgh-ask-topic-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.pcgh-ask-topic-strip a:nth-child(2n) {
		border-right: 0;
	}
	.pcgh-ask-headlines__grid {
		grid-template-columns: 240px minmax(0, 1fr);
	}
	.pcgh-ask-hero__side {
		right: 16px;
	}
	.pcgh-ask-topic-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.pcgh-ask-headlines__grid,
	.pcgh-ask-top-board .pcgh-ask-headlines__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 16px; }
	.pcgh-ask-rank-page {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 18px;
	}
	.pcgh-ask-rank-podium {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.pcgh-ask-rank-table__head,
	.pcgh-ask-rank-row {
		grid-template-columns: 56px minmax(0, 1fr) 170px 120px;
	}
}

@media (max-width: 960px) {
	.pcgh-ask-hero,
	.pcgh-ask-layout,
	.pcgh-ask-quickbar,
	.pcgh-ask-top-board,
	.pcgh-ask-bottom-grid {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-news-board {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.pcgh-ask-news-board__body {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-news-board__feature {
		grid-column: auto;
	}
	.pcgh-ask-sidebar {
		position: static;
	}
	.pcgh-ask-hero {
		min-height: 220px;
	}
	.pcgh-ask-hero__side {
		position: relative;
		right: auto;
		bottom: auto;
		width: min(520px, 100%);
		margin: 14px auto 0;
	}
	.pcgh-ask-hero__side .pcgh-ask-publish,
	.pcgh-ask-side-publish a {
		width: 100%;
	}
	.pcgh-ask-quickbar {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-quickbar__notice,
	.pcgh-ask-quickbar__action {
		min-height: 48px;
	}
	.pcgh-ask-quickbar__notice {
		padding-left: 18px;
	}
	.pcgh-ask-quickbar__notice span {
		font-size: 16px;
	}
	.pcgh-ask-quickbar__action strong {
		font-size: 18px;
	}
	.pcgh-ask-top-board .pcgh-ask-card { min-height: 260px; }
	.pcgh-ask-rank-page {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-rank-page__side {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-rank-menu nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.pcgh-ask-rank-podium {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-rank-podium__card,
	.pcgh-ask-rank-podium__card.is-rank-1 {
		min-height: 190px;
	}
	.pcgh-ask-rank-table__head {
		display: none;
	}
	.pcgh-ask-rank-row {
		grid-template-columns: 42px minmax(0, 1fr) auto;
		min-height: 76px;
		padding: 12px 16px;
	}
	.pcgh-ask-rank-row__data {
		display: none;
	}
	.pcgh-ask-rank-row__score {
		font-size: 20px;
	}
}

@media (max-width: 640px) {
	.pcgh-ask-home {
		padding: 14px 0 36px;
	}
	.pcgh-ask-home__container {
		gap: 12px;
	}
	.pcgh-ask-hero__main,
	.pcgh-ask-hero__side,
	.pcgh-ask-card {
		padding: 14px;
	}
	.pcgh-ask-hero h1 {
		font-size: 22px;
	}
	.pcgh-ask-hero {
		margin-right: -12px;
		margin-left: -12px;
		padding: 22px 12px 28px;
	}
	.pcgh-ask-post.has-cover .pcgh-ask-post__body {
		display: block;
	}
	.pcgh-ask-post__cover {
		grid-row: auto;
		margin-bottom: 12px;
		aspect-ratio: 16 / 9;
	}
	.pcgh-ask-search {
		height: auto;
		flex-wrap: wrap;
		padding: 10px;
	}
	.pcgh-ask-hero .pcgh-ask-search-row {
		flex-direction: column;
		width: min(520px, 100%);
	}
	.pcgh-ask-hero .pcgh-ask-search {
		width: 100%;
	}
	.pcgh-ask-hero .pcgh-ask-publish--hero {
		width: 100%;
	}
	.pcgh-ask-search button {
		width: 100%;
	}
	.pcgh-ask-topic-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: -18px;
		padding: 0 12px;
		gap: 12px;
	}
	.pcgh-ask-topic-strip a,
	.pcgh-ask-topic-strip a:nth-child(2n),
	.pcgh-ask-topic-strip a:nth-child(4n) {
		border: 1px solid rgba(226, 232, 240, .9);
	}
	.pcgh-ask-topic-strip a:last-child {
		border-bottom: 1px solid rgba(226, 232, 240, .9);
	}
	html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a,
	html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:nth-child(2n),
	html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:nth-child(4n),
	html[data-pcgh-theme-resolved="dark"] .pcgh-ask-topic-strip a:last-child {
		border-color: rgba(148, 163, 184, .18);
	}
	.pcgh-ask-card__head {
		align-items: flex-start;
		flex-direction: column;
	}
	.pcgh-ask-card__head--tabs {
		gap: 10px;
	}
	.pcgh-ask-card__head--tabs nav {
		overflow-x: auto;
		white-space: nowrap;
	}
	.pcgh-ask-quickbar {
		gap: 10px;
	}
	.pcgh-ask-quickbar__notice,
	.pcgh-ask-quickbar__action {
		padding-right: 14px;
		padding-left: 14px;
	}
	.pcgh-ask-quickbar__notice strong {
		width: 28px;
		height: 28px;
		font-size: 0;
	}
	.pcgh-ask-quickbar__notice strong img {
		width: 28px;
		height: 28px;
	}
	.pcgh-ask-quickbar__action img {
		width: 24px;
		height: 24px;
	}
	.pcgh-ask-rank-menu {
		padding: 16px 10px;
	}
	.pcgh-ask-rank-menu h2 {
		margin-bottom: 14px;
		font-size: 18px;
	}
	.pcgh-ask-rank-menu nav {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.pcgh-ask-rank-menu nav a {
		min-height: 44px;
		font-size: 15px;
	}
	.pcgh-ask-rank-note {
		padding: 16px;
	}
	.pcgh-ask-rank-row {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
	}
	.pcgh-ask-rank-row__score {
		grid-column: 2;
		text-align: left;
		font-size: 18px;
	}
	.pcgh-ask-rank-row__user strong {
		font-size: 14px;
	}
	.pcgh-ask-news-board {
		padding: 14px;
	}
	.pcgh-ask-news-board__head {
		margin-bottom: 12px;
	}
	.pcgh-ask-news-board__head h2 {
		font-size: 17px;
	}
	.pcgh-ask-news-board__head i {
		width: 20px;
		height: 20px;
		font-size: 20px;
	}
	.pcgh-ask-news-board__title-icon {
		width: 20px;
		height: 20px;
	}
	.pcgh-ask-news-feature__body strong {
		font-size: 15px;
	}
	.pcgh-ask-news-feature__body small,
	.pcgh-ask-news-item p {
		font-size: 13px;
	}
	.pcgh-ask-news-item > a {
		font-size: 16px;
	}
	.pcgh-ask-news-board__activity li {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
		align-items: start;
		min-height: auto;
		padding: 9px 0;
	}
	.pcgh-ask-headlines__grid {
		grid-template-columns: 1fr;
	}
	.pcgh-ask-headlines__feature { position: relative; display:flex; min-height:260px; flex-direction:column; justify-content:flex-end; padding:0; border-radius:2px; overflow:hidden; background:#f2f5f9; background-position:center; background-size:cover; color:#111827; }
}
