.pph-articles {
	--ppa-gold: var(--pph-gold, #ffd400);
	--ppa-line: var(--pph-line-soft, rgba(134, 166, 198, .18));
	--ppa-muted: var(--pph-muted, #9eadbb);
	--pph-ui-accent: var(--ppa-gold);
	--pph-ui-line: var(--ppa-line);
	--pph-ui-muted: var(--ppa-muted);
}

.pph-articles .pph-articles-grid { align-items: start; }
.pph-articles .pph-articles-center { min-width: 0; }
.pph-articles .pph-ui-breadcrumbs { margin-bottom: 10px; }
.pph-articles .pph-article-heading { container-type: inline-size; }
.pph-articles .pph-article-results { padding: 14px 0; }

.pph-article-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pph-article-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--ppa-line);
	border-radius: 8px;
	background: linear-gradient(150deg, rgba(255,255,255,.018), transparent 42%), #0a151f;
	box-shadow: 0 9px 24px rgba(0,0,0,.2);
}

.pph-article-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,212,0,.16);
	background: radial-gradient(circle at 50% 28%, rgba(255,212,0,.12), transparent 60%), #071019;
}

.pph-article-card__media img,
.pph-article-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	object-fit: cover;
	place-items: center;
	transition: transform .45s ease, opacity .3s ease;
}

.pph-article-card__placeholder .dashicons { width: 32px; height: 32px; color: rgba(255,212,0,.45); font-size: 32px; }
.pph-article-card__media:hover img { opacity: .78; transform: scale(1.045); }

.pph-article-card__term {
	position: absolute;
	top: 8px;
	left: 8px;
	max-width: calc(100% - 16px);
	padding: 5px 7px;
	border: 1px solid rgba(255,212,0,.42);
	border-radius: 4px;
	background: rgba(5,12,18,.92);
	color: var(--ppa-gold);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.1;
	text-transform: uppercase;
}

.pph-article-card__body { display: flex; min-height: 185px; flex-direction: column; padding: 13px; }
.pph-article-card__body h2 { margin: 0; color: #fff; font-size: 17px; font-weight: 900; letter-spacing: -.02em; line-height: 1.25; }
.pph-article-card__body h2 a { color: inherit; text-decoration: none; }
.pph-article-card__body h2 a:is(:hover,:focus-visible) { color: var(--ppa-gold); }
.pph-article-card__body > p { margin: 10px 0 12px; color: #b8c4cf; font-size: 10px; line-height: 1.65; }

.pph-article-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin-top: 8px;
	color: #8294a4;
	font-size: 8px;
	font-weight: 700;
}
.pph-article-card__meta > * + *::before { content: "•"; margin-right: 10px; color: rgba(255,212,0,.55); }

.pph-article-card__read {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	margin-top: auto;
	color: var(--ppa-gold);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .045em;
	text-decoration: none;
	text-transform: uppercase;
}
.pph-article-card__read span { transition: transform .18s ease; }
.pph-article-card__read:hover span { transform: translateX(3px); }

.pph-article-filter__categories { min-width: 0; margin: 0; padding: 0; border: 0; }
.pph-article-filter__categories legend { margin: 0 0 6px; color: var(--ppa-gold); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.pph-article-filter__categories > div { display: grid; gap: 5px; }
.pph-article-filter__chip {
	display: flex;
	min-width: 0;
	min-height: 31px;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 8px;
	border: 1px solid rgba(134,166,198,.16);
	border-radius: 5px;
	background: rgba(255,255,255,.018);
	color: #cbd5dd;
	font-size: 8.5px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}
.pph-article-filter__chip span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pph-article-filter__chip small { color: #7f91a1; font-size: 8px; }
.pph-article-filter__chip:is(:hover,:focus-visible,.is-active) { border-color: rgba(255,212,0,.48); background: rgba(255,212,0,.07); color: #fff; }
.pph-article-filter__chip.is-active small { color: var(--ppa-gold); }

.pph-article-pagination { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(134,166,198,.12); }
.pph-article-pagination button {
	display: inline-flex;
	min-width: 31px;
	min-height: 31px;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 5px 8px;
	border: 1px solid rgba(134,166,198,.2);
	border-radius: 5px;
	background: #0a1620;
	color: #dce6ed;
	font-size: 8px;
	font-weight: 900;
	cursor: pointer;
}
.pph-article-pagination button:is(:hover,:focus-visible,.is-active) { border-color: rgba(255,212,0,.6); color: var(--ppa-gold); }
.pph-article-pagination button.is-active { background: rgba(255,212,0,.08); cursor: default; }
.pph-article-pagination > span { color: #728494; font-size: 9px; }

.pph-article-results.is-loading { opacity: .58; pointer-events: none; transition: opacity .18s ease; }
.pph-article-mobile-filter { display: none; margin-bottom: 10px; }
.pph-article-mobile-filter summary small { margin-left: auto; color: var(--ppa-muted); font-size: 8px; }
.pph-article-mobile-filter summary small strong { color: var(--ppa-gold); }
.pph-article-mobile-filter__body { padding: 2px; }

.pph-article-entry {
	overflow: hidden;
	border: 1px solid var(--ppa-line);
	border-radius: 9px;
	background: linear-gradient(150deg, rgba(255,255,255,.018), transparent 35%), #08131d;
	box-shadow: var(--pph-shadow, 0 18px 50px rgba(0,0,0,.34));
}
.pph-article-entry__header { padding: 22px 24px 18px; border-bottom: 1px solid rgba(255,212,0,.18); }
.pph-article-entry__eyebrow { display: block; margin-bottom: 8px; color: var(--ppa-gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.pph-article-entry__header h1 { margin: 0; color: #fff; font-size: clamp(26px, 4vw, 42px); font-weight: 950; letter-spacing: -.04em; line-height: 1.06; }
.pph-article-entry__meta { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 12px; color: #95a5b3; font-size: 9px; font-weight: 700; }
.pph-article-entry__meta > * + *::before { content: "•"; margin-right: 14px; color: rgba(255,212,0,.55); }
.pph-article-entry__hero { aspect-ratio: 16 / 8.5; margin: 0; overflow: hidden; border-bottom: 1px solid rgba(134,166,198,.15); background: #050c12; }
.pph-article-entry__hero img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pph-article-entry__body { padding: clamp(18px, 3.2vw, 32px); color: #dbe3ea; font-size: 13px; line-height: 1.75; }
.pph-article-entry__body > :first-child { margin-top: 0; }
.pph-article-entry__body > :last-child { margin-bottom: 0; }
.pph-article-entry__body :is(h2,h3,h4) { color: #fff; line-height: 1.2; }
.pph-article-entry__body h2 { margin-top: 1.65em; font-size: 24px; }
.pph-article-entry__body h3 { margin-top: 1.45em; font-size: 19px; }
.pph-article-entry__body a { color: var(--ppa-gold); }
.pph-article-entry__body img { max-width: 100%; height: auto; }
.pph-article-entry__body :is(pre,table,.wp-block-table) { max-width: 100%; overflow-x: auto; }
.pph-article-entry__body blockquote { margin-inline: 0; padding: 10px 15px; border-left: 3px solid var(--ppa-gold); background: rgba(255,212,0,.045); }

.pph-article-post-nav { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; border-top: 1px solid var(--ppa-line); background: var(--ppa-line); }
.pph-article-post-nav a { display: grid; gap: 5px; min-height: 74px; padding: 14px 18px; background: #08131d; color: #fff; text-decoration: none; }
.pph-article-post-nav a:last-child { text-align: right; }
.pph-article-post-nav small { color: var(--ppa-gold); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pph-article-post-nav strong { font-size: 10px; line-height: 1.35; }

.pph-article-entry .comments-area { margin: 0; padding: 20px 24px; border-top: 1px solid var(--ppa-line); }
.pph-article-entry .comments-title { color: #fff; font-size: 18px; }
.pph-article-entry .comment-list { margin: 0; padding: 0; list-style: none; }

.pph-article-details { display: grid; gap: 0; margin: 0; padding: 5px 10px 9px; }
.pph-article-details > div { display: grid; gap: 3px; padding: 9px 2px; border-bottom: 1px solid rgba(134,166,198,.11); }
.pph-article-details > div:last-child { border-bottom: 0; }
.pph-article-details dt { color: var(--ppa-gold); font-size: 7px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.pph-article-details dd { margin: 0; color: #dce5ec; font-size: 9px; font-weight: 700; line-height: 1.45; }

.pph-article-single--event .pph-article-entry__body { padding-top: 10px; }
.pph-article-single--event .ppeb-wrap,
.pph-article-single--event .pseb-wrap { margin-block: 0; }
.pph-articles :is(.ppeb-modal,.pseb-modal) { z-index: var(--pph-z-modal, 1000100); }
.pph-articles .pseb-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.pph-article-legacy-list__more { margin: 16px 0 0; text-align: center; }

@media (max-width: 1040px) {
	.pph-article-card-grid { gap: 11px; }
	.pph-article-card__body { min-height: 175px; padding: 11px; }
	.pph-articles .pseb-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.pph-articles .pph-articles-right { display: none; }
	.pph-article-mobile-filter {
		margin: 0;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}
	.pph-article-mobile-filter { display: block; }
	.pph-articles .pph-article-heading,
	.pph-articles .pph-article-results {
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}
	.pph-article-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.pph-article-entry__header { padding: 18px; }
	.pph-article-entry__body { padding: 18px; }
}

@media (max-width: 560px) {
	.pph-article-card-grid { grid-template-columns: 1fr; }
	.pph-article-card__body { min-height: auto; }
	.pph-article-card__read { margin-top: 8px; }
	.pph-article-pagination button span { display: none; }
	.pph-article-post-nav { grid-template-columns: 1fr; }
	.pph-article-post-nav a:last-child { text-align: left; }
	.pph-article-entry__header h1 { font-size: 27px; }
	.pph-article-entry__meta > * + *::before { margin-right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	.pph-articles * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
