:root {
	--pt-paper: #f9f9f9;
	--pt-paper-warm: #fef8f1;
	--pt-surface: #ffffff;
	--pt-surface-soft: #f3f3f3;
	--pt-surface-line: #ded7d2;
	--pt-ink: #111111;
	--pt-ink-soft: #4c4546;
	--pt-muted: #7e7576;
	--pt-black: #000000;
	--pt-gold: #d4af37;
	--pt-gold-deep: #735c00;
	--pt-max: 1280px;
	--pt-gutter: 24px;
	--pt-head: "Libre Caslon Text", Georgia, serif;
	--pt-body: "Source Serif 4", Georgia, serif;
	--pt-ui: "Work Sans", Arial, sans-serif;
	--pt-radius: 3px;
	--pt-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pt-paper);
	color: var(--pt-ink);
	font-family: var(--pt-body);
	font-size: 18px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--pt-gold-deep);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.pt-container {
	width: min(var(--pt-max), calc(100% - 48px));
	margin-inline: auto;
}

.screen-reader-text,
.pt-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pt-skip-link:focus {
	z-index: 9999;
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 10px 14px;
	background: var(--pt-black);
	color: #fff;
	font-family: var(--pt-ui);
}

/* Breaking news ticker */
.pt-breaking {
	position: relative;
	z-index: 20;
	background: var(--pt-black);
	color: #ffffff;
	font-family: var(--pt-ui);
	font-size: 12px;
	letter-spacing: 0.02em;
}

.pt-breaking__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 34px;
	overflow: hidden;
}

.pt-breaking__label {
	flex: 0 0 auto;
	background: var(--pt-gold);
	color: #111;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 4px 8px;
	line-height: 1;
}

.pt-breaking__viewport {
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}

.pt-breaking__track {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	white-space: nowrap;
	animation: pt-ticker 42s linear infinite;
}

.pt-breaking__track:hover {
	animation-play-state: paused;
}

.pt-breaking__track a {
	color: #ffffff;
}

.pt-breaking__track a:hover {
	color: var(--pt-gold);
}

@keyframes pt-ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Header */
.pt-site-header {
	background: var(--pt-surface);
	border-bottom: 1px solid var(--pt-surface-line);
}

.pt-masthead {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 24px 0 18px;
}

.pt-brand-wrap {
	text-align: center;
}

.pt-brand,
.pt-footer-title {
	display: inline-block;
	font-family: var(--pt-head);
	font-weight: 700;
	font-size: clamp(38px, 5vw, 56px);
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--pt-black);
}

.pt-tagline {
	margin: 8px 0 0;
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pt-muted);
}

.pt-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-direction: column;
	border: 1px solid var(--pt-surface-line);
	background: transparent;
	cursor: pointer;
}

.pt-menu-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--pt-black);
}

.pt-header-search {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 280px;
	width: 100%;
	border: 1px solid var(--pt-surface-line);
	background: var(--pt-paper);
}

.pt-header-search input {
	min-width: 0;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 9px 10px;
	font-family: var(--pt-ui);
	font-size: 13px;
	outline: none;
}

.pt-header-search button {
	border: 0;
	border-left: 1px solid var(--pt-surface-line);
	background: var(--pt-black);
	color: #fff;
	padding: 9px 12px;
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.pt-primary-nav {
	border-top: 1px solid var(--pt-surface-line);
}

.pt-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pt-menu > li {
	position: relative;
}

.pt-menu a {
	display: block;
	padding: 14px 0;
	color: var(--pt-ink-soft);
}

.pt-menu a:hover,
.pt-menu .current-menu-item > a,
.pt-menu .current_page_item > a {
	color: var(--pt-black);
}

/* Sections */
.pt-site-main {
	padding-bottom: 64px;
}

.pt-section {
	padding: 40px 0;
	border-bottom: 1px solid var(--pt-surface-line);
}

.pt-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
	border-bottom: 2px solid var(--pt-black);
	padding-bottom: 8px;
}

.pt-section__head h1,
.pt-section__head h2,
.pt-page-header h1 {
	margin: 0;
	font-family: var(--pt-ui);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.pt-section__head a {
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 700;
	color: var(--pt-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pt-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr) minmax(230px, 0.55fr);
	gap: 24px;
	align-items: start;
}

.pt-top-grid__side,
.pt-feature-grid__list,
.pt-video-grid__list {
	display: grid;
	gap: 18px;
}

.pt-top-grid__list {
	border-left: 1px solid var(--pt-surface-line);
	padding-left: 20px;
}

.pt-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
	gap: 24px;
	align-items: start;
}

.pt-card-grid {
	display: grid;
	gap: 24px;
}

.pt-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pt-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.pt-card,
.pt-news-line,
.pt-video-card {
	position: relative;
}

.pt-card__image,
.pt-video-card__image,
.pt-single-fallback__image {
	margin: 0 0 12px;
	background: var(--pt-surface-soft);
	overflow: hidden;
}

.pt-card__image img,
.pt-video-card__image img,
.pt-single-fallback__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 500ms ease;
}

.pt-card:hover .pt-card__image img,
.pt-video-card:hover .pt-video-card__image img {
	transform: scale(1.035);
}

.pt-card__body {
	display: grid;
	gap: 6px;
}

.pt-card__title,
.pt-news-line h3,
.pt-video-card h3 {
	margin: 0;
	font-family: var(--pt-head);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--pt-black);
}

.pt-card__title {
	font-size: clamp(22px, 2.2vw, 30px);
}

.pt-card--lead .pt-card__title {
	font-size: clamp(32px, 4vw, 52px);
}

.pt-card--mini {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.pt-card--mini .pt-card__image {
	margin: 0;
}

.pt-card--mini .pt-card__image img {
	aspect-ratio: 1 / 1;
}

.pt-card--mini .pt-card__title {
	font-size: 17px;
	line-height: 1.2;
}

.pt-card--text {
	padding: 20px 0;
	border-top: 1px solid var(--pt-surface-line);
}

.pt-card--text .pt-card__image {
	display: none;
}

.pt-card__excerpt {
	margin: 0;
	font-size: 17px;
	line-height: 1.55;
	color: var(--pt-ink-soft);
}

.pt-meta {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--pt-ui);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pt-muted);
}

.pt-news-line {
	padding: 0 0 14px;
	border-bottom: 1px solid var(--pt-surface-line);
}

.pt-news-line h3 {
	margin-top: 6px;
	font-size: 17px;
	line-height: 1.25;
}

.pt-news-line:last-child {
	border-bottom: 0;
}

/* Video */
.pt-video-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
	gap: 24px;
}

.pt-video-card--lead {
	background: var(--pt-black);
	color: #fff;
	overflow: hidden;
}

.pt-video-card--lead .pt-video-card__image {
	margin: 0;
	background: var(--pt-black);
}

.pt-video-card--lead .pt-video-card__image img {
	aspect-ratio: 16 / 8.8;
	opacity: 0.78;
}

.pt-video-card__body {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 22px;
	display: grid;
	gap: 8px;
}

.pt-video-card h3 {
	font-size: clamp(28px, 3vw, 42px);
	color: #fff;
}

.pt-play-icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 999px;
	font-size: 18px;
	color: #fff;
	backdrop-filter: blur(4px);
}

/* Trending + newsletter */
.pt-trending-list {
	list-style: none;
	counter-reset: trending;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.pt-trending-list li {
	counter-increment: trending;
	padding-left: 50px;
	position: relative;
	min-height: 56px;
	border-left: 1px solid var(--pt-surface-line);
}

.pt-trending-list li::before {
	content: counter(trending, decimal-leading-zero);
	position: absolute;
	left: 14px;
	top: -2px;
	font-family: var(--pt-head);
	font-size: 28px;
	color: var(--pt-gold-deep);
}

.pt-trending-list a {
	display: block;
	font-family: var(--pt-head);
	font-weight: 700;
	line-height: 1.2;
}

.pt-trending-list time {
	display: block;
	margin-top: 8px;
	font-family: var(--pt-ui);
	font-size: 11px;
	color: var(--pt-muted);
	text-transform: uppercase;
}

.pt-newsletter {
	padding: 52px 0;
	background: var(--pt-surface-soft);
	border-bottom: 1px solid var(--pt-surface-line);
}

.pt-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
	gap: 32px;
	align-items: center;
}

.pt-kicker {
	margin: 0 0 8px;
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pt-gold-deep);
}

.pt-newsletter h2 {
	margin: 0;
	font-family: var(--pt-head);
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.05;
}

.pt-newsletter p {
	max-width: 620px;
	margin: 10px 0 0;
	color: var(--pt-ink-soft);
}

.pt-newsletter__box {
	background: var(--pt-surface);
	border: 1px solid var(--pt-surface-line);
	padding: 22px;
	box-shadow: var(--pt-shadow);
}

.pt-button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pt-black);
	color: #fff;
	border: 1px solid var(--pt-black);
	padding: 10px 16px;
	font-family: var(--pt-ui);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.pt-button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background: var(--pt-gold-deep);
	border-color: var(--pt-gold-deep);
	color: #fff;
}

/* Footer */
.pt-site-footer {
	background: var(--pt-surface);
	border-top: 1px solid var(--pt-surface-line);
	padding: 40px 0 22px;
}

.pt-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.pt-footer-title {
	font-size: clamp(30px, 4vw, 44px);
}

.pt-footer-brand p {
	margin: 8px 0 0;
	color: var(--pt-ink-soft);
}

.pt-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px 24px;
	font-family: var(--pt-ui);
	font-size: 13px;
	font-weight: 600;
}

.pt-footer-bottom {
	margin-top: 36px;
	padding-top: 16px;
	border-top: 1px solid var(--pt-surface-line);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-family: var(--pt-ui);
	font-size: 12px;
	color: var(--pt-muted);
}

.pt-footer-bottom p {
	margin: 0;
}

/* Fallback archive/single */
.pt-archive {
	padding-top: 44px;
}

.pt-page-header {
	margin-bottom: 24px;
	border-bottom: 2px solid var(--pt-black);
	padding-bottom: 12px;
}

.pt-loop-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.pt-single-fallback {
	max-width: 820px;
	margin-inline: auto;
}

.pt-single-fallback .pt-single-fallback__image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pt-entry-content {
	margin-top: 22px;
}

.pt-entry-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pt-entry-content p,
.pt-entry-content ul,
.pt-entry-content ol,
.pt-entry-content blockquote {
	margin-top: 0;
	margin-bottom: 1.2em;
}

.pt-entry-content h2,
.pt-entry-content h3,
.pt-entry-content h4 {
	font-family: var(--pt-head);
	line-height: 1.15;
}

.pt-pagination {
	margin-top: 40px;
	font-family: var(--pt-ui);
}

.pt-empty {
	font-family: var(--pt-ui);
	color: var(--pt-muted);
}

/* WordPress alignment basics */
.alignwide {
	max-width: min(1100px, 100%);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* Responsive */
@media (max-width: 1100px) {
	.pt-top-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
	}

	.pt-top-grid__list {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 16px;
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid var(--pt-surface-line);
		padding-top: 18px;
	}

	.pt-card-grid--four,
	.pt-trending-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pt-loop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.pt-container {
		width: min(100% - 32px, var(--pt-max));
	}

	.pt-breaking__inner {
		min-height: 36px;
	}

	.pt-masthead {
		grid-template-columns: 44px 1fr 44px;
		gap: 10px;
		padding: 16px 0 14px;
	}

	.pt-menu-toggle {
		display: inline-flex;
	}

	.pt-brand,
	.pt-footer-title {
		font-size: 34px;
	}

	.pt-tagline {
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.pt-header-search {
		display: none;
	}

	.pt-primary-nav {
		display: none;
		border-top: 1px solid var(--pt-surface-line);
		background: var(--pt-surface);
	}

	body.pt-menu-open .pt-primary-nav {
		display: block;
	}

	.pt-menu {
		display: grid;
		justify-content: stretch;
		gap: 0;
		padding: 8px 0;
	}

	.pt-menu a {
		padding: 12px 0;
		border-bottom: 1px solid var(--pt-surface-line);
	}

	.pt-section {
		padding: 30px 0;
	}

	.pt-top-grid,
	.pt-feature-grid,
	.pt-video-grid,
	.pt-newsletter__inner,
	.pt-footer-grid {
		grid-template-columns: 1fr;
	}

	.pt-top-grid__side,
	.pt-top-grid__list,
	.pt-feature-grid__list,
	.pt-video-grid__list {
		grid-template-columns: 1fr;
	}

	.pt-card-grid--four,
	.pt-card-grid--three,
	.pt-trending-list,
	.pt-loop-grid,
	.pt-footer-links {
		grid-template-columns: 1fr;
	}

	.pt-top-grid__list {
		border-top: 0;
		padding-top: 0;
	}

	.pt-card--lead .pt-card__title {
		font-size: 34px;
	}

	.pt-card__title {
		font-size: 24px;
	}

	.pt-video-card__body {
		position: static;
		padding: 16px;
	}

	.pt-video-card--lead .pt-video-card__image img {
		aspect-ratio: 16 / 10;
	}

	.pt-footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 17px;
	}

	.pt-breaking__label {
		font-size: 10px;
		padding: 4px 6px;
	}

	.pt-breaking__track {
		font-size: 11px;
		animation-duration: 34s;
	}

	.pt-section__head {
		align-items: center;
	}

	.pt-section__head h1,
	.pt-section__head h2 {
		font-size: 13px;
	}

	.pt-card--mini {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.pt-card__excerpt {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.pt-breaking__track {
		animation: none;
	}
}
