:root {
	--pm-primary: #050505;
	--pm-secondary: #222222;
	--pm-accent: #8a1f1f;
	--pm-button: #061427;
	--pm-header: #050505;
	--pm-footer: #050505;
	--pm-link: #111111;
	--pm-ink: #111111;
	--pm-muted: #666666;
	--pm-border: #d8d8d8;
	--pm-soft: #f5f5f5;
	--pm-offwhite: #ffffff;
	--pm-gold-soft: #d8d8d8;
	--pm-serif: Georgia, "Times New Roman", serif;
	--pm-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--pm-ink);
	background: var(--pm-offwhite);
	font-family: var(--pm-sans);
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	overflow-x: hidden;
}

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

a:hover {
	color: inherit;
}

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

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

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

.pm-container {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto;
}

.pm-site-header {
	position: relative;
	z-index: 30;
	background: var(--pm-offwhite);
	border-bottom: 1px solid var(--pm-border);
}

.pm-topbar {
	background: linear-gradient(90deg, var(--pm-header), var(--pm-secondary));
	color: #fff;
	font-size: 13px;
}

.pm-topbar-inner,
.pm-brand-row,
.pm-menu-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.pm-topbar-inner {
	min-height: 42px;
}

.pm-inline-menu,
.pm-primary-menu,
.pm-footer-column ul {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pm-topbar a {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 650;
}

.pm-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.pm-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	color: currentColor;
	transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.pm-icon {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
	pointer-events: none;
}

.pm-social .pm-icon {
	width: 15px;
	height: 15px;
}

.pm-social a:hover {
	transform: translateY(-1px);
}

.pm-top-social a {
	color: #fff;
}

.pm-brand-row {
	position: relative;
	min-height: 124px;
	padding: 24px 0 20px;
}

.pm-date-weather {
	display: grid;
	gap: 8px;
	min-width: 190px;
	color: #22313a;
	font-size: 14px;
}

.pm-date-weather span:first-child {
	font-weight: 700;
}

.pm-brand {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.pm-brand img {
	max-height: 92px;
	margin: 0 auto;
}

.pm-logo-text {
	display: block;
	color: var(--pm-primary);
	font-family: var(--pm-serif);
	font-size: 72px;
	font-weight: 800;
	line-height: 0.9;
}

.pm-brand small {
	display: block;
	margin-top: 8px;
	color: var(--pm-button);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.pm-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 260px;
}

.pm-btn,
.pm-read-now,
.pm-home-cta a,
.pm-newsletter-form button,
.pm-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease;
}

.pm-btn:hover,
.pm-read-now:hover,
.pm-home-cta a:hover,
.pm-newsletter-form button:hover,
.pm-search-form button:hover {
	transform: translateY(-1px);
}

.pm-btn-gold,
.pm-read-now,
.pm-newsletter-form button,
.pm-search-form button {
	background: var(--pm-button);
	color: #fff;
}

.pm-btn-outline {
	color: var(--pm-ink);
	background: #fff;
	border-color: #23343d;
}

.pm-search-toggle {
	position: relative;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	color: var(--pm-ink);
	cursor: pointer;
}

.pm-search-toggle::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 16px;
	height: 16px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.pm-search-toggle::after {
	content: "";
	position: absolute;
	top: 26px;
	left: 24px;
	width: 11px;
	height: 3px;
	border-radius: 99px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: left center;
}

.pm-search-toggle:hover {
	color: #111;
}

.pm-breaking {
	background: #fff5df;
	border-top: 1px solid #f0d49c;
	border-bottom: 1px solid #f0d49c;
}

.pm-breaking a {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	color: #583a0d;
	font-size: 14px;
}

.pm-breaking strong {
	padding: 4px 8px;
	border-radius: 3px;
	background: var(--pm-accent);
	color: #fff;
	text-transform: uppercase;
}

.pm-menu-wrap {
	border-top: 1px solid var(--pm-border);
	border-bottom: 1px solid #aeb9c0;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(10px);
}

.pm-menu-inner {
	min-height: 46px;
	justify-content: center;
}

.pm-site-menu {
	width: 100%;
}

.pm-primary-menu {
	justify-content: center;
	gap: clamp(14px, 2.2vw, 32px);
}

.pm-primary-menu a {
	display: block;
	padding: 15px 0;
	color: #0d1c24;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.pm-market-ticker {
	overflow: hidden;
	border-bottom: 1px solid #111;
	background: #050505;
	color: #fff;
	font-family: var(--pm-sans);
}

.pm-market-ticker-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 40px;
}

.pm-market-ticker-label {
	flex: 0 0 auto;
	padding: 5px 9px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pm-market-ticker-viewport {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
	white-space: nowrap;
}

.pm-market-ticker-track {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 22px;
	min-width: max-content;
	padding-right: 22px;
	animation: pm-market-scroll 38s linear infinite;
}

.pm-market-ticker:hover .pm-market-ticker-track {
	animation-play-state: paused;
}

.pm-market-item {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
}

.pm-market-name {
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-market-item strong {
	color: #fff;
	font-size: 13px;
}

.pm-market-change {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 800;
}

.pm-market-change.is-positive {
	color: #6fe6a2;
}

.pm-market-change.is-negative {
	color: #ff8f8f;
}

@keyframes pm-market-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pm-market-ticker-track {
		animation: none;
	}
}

.pm-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease;
}

.pm-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--pm-ink);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.pm-menu-toggle span + span {
	margin-top: 5px;
}

.pm-menu-toggle.is-open {
	background: #fff;
	border: 1px solid var(--pm-border);
}

.pm-menu-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.pm-menu-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.pm-menu-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.pm-mobile-menu,
.pm-search-panel {
	display: none;
	border-top: 1px solid var(--pm-border);
	background: #fff;
}

.pm-search-panel.is-open {
	display: block;
}

.pm-mobile-menu ul {
	display: grid;
	gap: 0;
	width: min(1160px, calc(100% - 40px));
	padding: 10px 0 16px;
	margin: 0 auto;
	list-style: none;
}

.pm-mobile-menu a {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid var(--pm-border);
	font-weight: 800;
	text-transform: uppercase;
}

.pm-search-form {
	display: flex;
	gap: 10px;
	padding: 18px 0;
}

.pm-search-form input {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid var(--pm-border);
	border-radius: 4px;
}

.pm-site-main {
	padding: 18px 0 0;
}

.pm-hero {
	margin-top: 0;
}

.pm-hero-slider {
	position: relative;
	overflow: hidden;
	border: 1px solid #e0e5e8;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
}

.pm-hero-slide {
	display: none;
	grid-template-columns: 0.72fr 1fr;
	min-height: 418px;
}

.pm-hero-slide.is-active {
	display: grid;
}

.pm-hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(28px, 4vw, 52px);
	background: linear-gradient(135deg, #fff, #f7f2e8);
}

.pm-category {
	display: inline-flex;
	align-items: center;
	color: var(--pm-secondary);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-hero h1 {
	margin: 14px 0 14px;
	color: #10202a;
	font-family: var(--pm-serif);
	font-size: clamp(34px, 4.4vw, 54px);
	line-height: 0.98;
}

.pm-hero p {
	max-width: 560px;
	margin: 0 0 22px;
	color: #273842;
	font-size: 17px;
}

.pm-meta,
.pm-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--pm-muted);
	font-size: 13px;
}

.pm-meta span + span::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border: 1px solid var(--pm-muted);
	border-radius: 50%;
}

.pm-read-now {
	margin-top: 22px;
	background: var(--pm-primary);
}

.pm-read-now::after {
	content: ">";
	margin-left: 12px;
}

.pm-hero-media {
	min-height: 100%;
}

.pm-hero-image {
	width: 100%;
	height: 100%;
	min-height: 418px;
	object-fit: cover;
}

.pm-hero-dots {
	position: absolute;
	right: 50px;
	bottom: 28px;
	display: flex;
	gap: 8px;
}

.pm-hero-dots button {
	width: 34px;
	height: 8px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 999px;
	background: rgba(5, 35, 38, 0.22);
}

.pm-hero-dots button.is-active {
	background: #fff;
}

.pm-section {
	margin-top: 28px;
}

.pm-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.pm-section-head h2 {
	position: relative;
	margin: 0;
	padding-left: 16px;
	color: #0d1e27;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-section-head h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 4px;
	height: 22px;
	border-radius: 99px;
	background: var(--pm-link);
}

.pm-section-head a {
	color: #08233f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-grid {
	display: grid;
	gap: 22px;
}

.pm-latest-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-card,
.pm-opinion-card,
.pm-info-card {
	overflow: hidden;
	border: 1px solid var(--pm-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
}

.pm-card {
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.pm-card:hover {
	transform: translateY(-4px);
	border-color: #c8d5db;
	box-shadow: none;
}

.pm-card-media {
	display: block;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
}

.pm-card-image,
.pm-sidebar-thumb,
.pm-info-visual {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pm-card-body {
	padding: 12px 14px 16px;
}

.pm-card-meta {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.pm-card-meta span {
	padding: 4px 7px;
	border-radius: 3px;
	background: var(--pm-link);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-card h2,
.pm-card h3 {
	margin: 0 0 10px;
	color: #13242d;
	font-family: var(--pm-serif);
	font-size: 19px;
	line-height: 1.16;
}

.pm-card-related-links {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding: 10px 0 0;
	border-top: 1px solid #d8d8d8;
	list-style: none;
	font-family: var(--pm-sans);
}

.pm-card-related-links li {
	margin: 0;
	padding: 0;
}

.pm-card-related-links a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 7px;
	color: #333;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.28;
}

.pm-card-related-links a::before {
	content: "->";
	color: #177f8f;
	font-weight: 900;
}

.pm-opinion-card:first-child .pm-card-related-links {
	border-top-color: rgba(255, 255, 255, 0.24);
}

.pm-opinion-card:first-child .pm-card-related-links a {
	color: #fff;
}

.pm-date {
	color: var(--pm-muted);
	font-size: 12px;
}

.pm-opinion-section {
	padding: 18px 14px 20px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--pm-primary), var(--pm-secondary));
}

.pm-opinion-section .pm-section-head h2,
.pm-opinion-section .pm-section-head a {
	color: #fff;
}

.pm-opinion-section .pm-section-head h2::before {
	background: var(--pm-gold-soft);
}

.pm-opinion-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-opinion-card {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 16px;
	padding: 20px;
}

.pm-author-avatar,
.pm-avatar-fallback {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	object-fit: cover;
}

.pm-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--pm-primary), var(--pm-accent));
	color: #fff;
	font-family: var(--pm-serif);
	font-size: 32px;
}

.pm-opinion-card h3 {
	margin: 0 0 4px;
	font-family: var(--pm-serif);
	font-size: 20px;
	line-height: 1.15;
}

.pm-byline,
.pm-opinion-card time {
	display: block;
	margin: 0 0 6px;
	color: var(--pm-muted);
	font-size: 13px;
}

.pm-opinion-card p:last-child {
	margin: 10px 0 0;
	font-size: 14px;
}

.pm-infographics {
	padding: 16px 14px 20px;
	border-radius: 8px;
	background: #edf6fc;
}

.pm-info-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-info-card {
	padding: 20px;
}

.pm-info-card h3 {
	margin: 0 0 16px;
	font-family: var(--pm-serif);
	font-size: 21px;
	line-height: 1.14;
}

.pm-chart {
	display: grid;
	align-items: end;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	height: 150px;
	padding: 18px;
	margin-bottom: 12px;
	border-radius: 6px;
	background: linear-gradient(180deg, #fff, #e8f2f8);
}

.pm-chart span {
	display: block;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, #2e7db6, #0f3b67);
}

.pm-chart span:nth-child(1) { height: 52%; }
.pm-chart span:nth-child(2) { height: 62%; }
.pm-chart span:nth-child(3) { height: 74%; }
.pm-chart span:nth-child(4) { height: 88%; }

.pm-chart-1 {
	border-radius: 999px;
	place-items: center;
	background: conic-gradient(#2e7db6 0 44%, #21495b 44% 75%, #7f9565 75% 88%, #d5a735 88% 100%);
}

.pm-chart-1 span {
	display: none;
}

.pm-chart-1::after {
	content: "";
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff;
}

.pm-chart-3 {
	align-items: center;
}

.pm-chart-3 span {
	height: 14px;
	border-radius: 0 99px 99px 0;
}

.pm-chart-3 span:nth-child(1) { width: 88%; }
.pm-chart-3 span:nth-child(2) { width: 58%; }
.pm-chart-3 span:nth-child(3) { width: 100%; }
.pm-chart-3 span:nth-child(4) { width: 38%; }

.pm-newsletter {
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) minmax(280px, 560px);
	gap: 22px;
	align-items: center;
	margin-top: 24px;
	padding: 22px 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ead39d, #d7a848);
	color: #10202a;
}

.pm-newsletter-sidebar {
	display: block;
	padding: 26px;
	background: linear-gradient(135deg, var(--pm-secondary), #06210e);
	color: #fff;
}

.pm-newsletter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--pm-primary);
	color: #fff;
	font-family: var(--pm-serif);
	font-size: 28px;
}

.pm-newsletter h2 {
	margin: 0 0 4px;
	font-family: var(--pm-serif);
	font-size: 24px;
}

.pm-newsletter p {
	margin: 0;
}

.pm-newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	min-width: 0;
}

.pm-newsletter-form input {
	min-width: 0;
	min-height: 50px;
	padding: 0 16px;
	border: 0;
	border-radius: 4px 0 0 4px;
}

.pm-newsletter-form button {
	min-width: max-content;
	padding-inline: clamp(16px, 2vw, 24px);
	border-radius: 0 4px 4px 0;
	background: var(--pm-primary);
}

.pm-newsletter-sidebar .pm-newsletter-icon {
	margin-bottom: 18px;
	background: rgba(255, 255, 255, 0.14);
}

.pm-newsletter-sidebar .pm-newsletter-form {
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 18px;
}

.pm-newsletter-sidebar .pm-newsletter-form input,
.pm-newsletter-sidebar .pm-newsletter-form button {
	border-radius: 4px;
}

.pm-newsletter-sidebar .pm-newsletter-form input {
	border-right: 1px solid #111;
}

.pm-home-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding: 18px 22px;
	border-radius: 8px;
	background: var(--pm-primary);
	color: #fff;
}

.pm-home-cta p {
	margin: 0;
	font-family: var(--pm-serif);
	font-size: 22px;
}

.pm-image-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	background:
		linear-gradient(135deg, rgba(4, 37, 43, 0.82), rgba(16, 76, 69, 0.72)),
		repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 22px);
	color: #fff;
	font-family: var(--pm-serif);
	font-size: clamp(20px, 2vw, 34px);
	font-weight: 800;
	text-align: center;
}

.pm-image-fallback-building {
	background:
		linear-gradient(135deg, rgba(5, 41, 47, 0.15), rgba(5, 41, 47, 0.05)),
		linear-gradient(90deg, #b8d0dc 0 20%, #f2f6f7 20% 24%, #7db0d3 24% 100%);
	color: var(--pm-primary);
}

.pm-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 44px;
	align-items: start;
	padding-top: 28px;
}

.pm-post-layout.no-sidebar {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

.pm-article-header {
	margin-bottom: 26px;
}

.pm-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
	color: var(--pm-muted);
	font-size: 13px;
}

.pm-breadcrumb span::before {
	content: ">";
}

.pm-breadcrumb em {
	font-style: normal;
}

.pm-article-header h1 {
	max-width: 880px;
	margin: 14px 0;
	font-family: var(--pm-serif);
	font-size: clamp(40px, 5vw, 66px);
	line-height: 1.02;
}

.pm-subtitle {
	max-width: 820px;
	margin: 0 0 24px;
	color: #2d3e48;
	font-family: var(--pm-serif);
	font-size: clamp(19px, 2vw, 25px);
	line-height: 1.35;
}

.pm-article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 10px;
}

.pm-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pm-author .pm-author-avatar {
	width: 52px;
	height: 52px;
}

.pm-author strong,
.pm-author span,
.pm-article-date span,
.pm-article-date time {
	display: block;
	font-size: 13px;
}

.pm-author span,
.pm-article-date {
	color: var(--pm-muted);
}

.pm-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pm-share span {
	margin-right: 4px;
	color: var(--pm-muted);
	font-size: 13px;
}

.pm-share a,
.pm-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--pm-border);
	border-radius: 50%;
	background: #fff;
	color: var(--pm-ink);
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pm-share a:hover,
.pm-share button:hover,
.pm-share a:focus-visible,
.pm-share button:focus-visible {
	border-color: currentColor;
	box-shadow: none;
	transform: translateY(-1px);
}

.pm-share .pm-icon {
	width: 22px;
	height: 22px;
}

.pm-share-whatsapp {
	color: #25d366;
}

.pm-share-facebook {
	color: #1877f2;
}

.pm-share-twitter {
	color: #111;
}

.pm-share-linkedin {
	color: #0a66c2;
}

.pm-share-copy {
	color: var(--pm-link);
}

.pm-share-copy.is-copied {
	color: #138a5b;
}

.pm-featured-image,
.pm-article-content figure.wp-caption,
.pm-article-content .wp-block-image {
	margin: 0 0 32px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.pm-featured-image img,
.pm-article-content figure.wp-caption img,
.pm-article-content .wp-block-image img {
	display: block;
	width: 100%;
	border: 1px solid #d7d7d7;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
}

.pm-featured-image figcaption,
.pm-article-content figure.wp-caption figcaption,
.pm-article-content .wp-block-image figcaption {
	display: block;
	margin: 10px 0 0;
	padding: 10px 12px;
	border-left: 4px solid #111;
	background: #f5f5f5;
	color: #626262;
	font-family: var(--pm-sans);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.pm-font-controls {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
}

.pm-font-controls button {
	min-width: 44px;
	height: 36px;
	border: 1px solid var(--pm-border);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.pm-font-controls .pm-tts-toggle {
	width: auto;
	min-width: 132px;
	padding: 0 16px;
	border-color: #111;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-family: var(--pm-sans);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pm-font-controls .pm-tts-toggle.is-paused,
.pm-font-controls .pm-tts-toggle:focus-visible {
	background: #fff;
	color: #111;
}

.pm-font-controls .pm-tts-toggle[hidden] {
	display: none;
}

.pm-article-lede {
	margin: 0 0 26px;
	padding: 18px 0 18px 18px;
	border-left: 5px solid #111;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	line-height: 1.28;
}

.pm-article-lede::first-letter {
	float: left;
	margin: 0.05em 0.13em 0 0;
	font-size: 4.1em;
	line-height: 0.78;
}

.pm-article-content {
	color: #172832;
	font-family: var(--pm-serif);
	font-size: var(--pm-reader-size, 20px);
	line-height: 1.72;
}

.pm-article-content p {
	margin: 0 0 1.2em;
}

.pm-article-content h2,
.pm-article-content h3 {
	margin: 1.4em 0 0.6em;
	line-height: 1.18;
}

.pm-article-content blockquote {
	margin: 30px 0;
	padding: 6px 0 6px 28px;
	border-left: 6px solid var(--pm-secondary);
	color: #25343d;
	font-style: italic;
}

.pm-article-content ul,
.pm-article-content ol {
	padding-left: 1.3em;
}

.pm-continue,
.pm-inline-related {
	margin: 26px 0;
	padding: 18px 20px;
	border-radius: 8px;
	background: #edf6f4;
	font-family: var(--pm-sans);
}

.pm-continue button {
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: var(--pm-primary);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.pm-inline-related span {
	display: block;
	margin-bottom: 6px;
	color: var(--pm-secondary);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-inline-related a {
	font-family: var(--pm-serif);
	font-size: 22px;
	font-weight: 800;
}

.pm-post-ai-block {
	margin: 30px 0;
	padding: 20px 22px;
	border: 1px solid #111;
	border-left-width: 7px;
	background: #f7f7f5;
	box-shadow: none;
	font-family: var(--pm-sans);
	color: #172832;
}

.pm-post-ai-block h2 {
	margin: 0 0 12px;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.04;
}

.pm-post-ai-block p {
	margin: 0 0 12px;
	font-family: var(--pm-sans);
	font-size: 17px;
	line-height: 1.62;
}

.pm-post-ai-block p:last-child {
	margin-bottom: 0;
}

.pm-post-ai-faq {
	background:
		linear-gradient(135deg, rgba(17, 17, 17, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
		#f7f7f5;
}

.pm-post-ai-faq-item {
	padding: 13px 0;
	border-top: 1px solid #d8d8d8;
}

.pm-post-ai-faq-item:first-of-type {
	margin-top: 4px;
}

.pm-post-ai-faq-item h3 {
	margin: 0 0 7px;
	font-family: var(--pm-sans);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.25;
}

.pm-post-ai-faq-item p {
	color: #333;
	font-size: 16px;
}

.pm-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 32px 0;
}

.pm-tags span,
.pm-tags a {
	padding: 7px 10px;
	border: 1px solid var(--pm-border);
	border-radius: 4px;
	background: #fff;
	color: #24343d;
	font-size: 12px;
}

.pm-tags span {
	border: 0;
	background: transparent;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-related {
	margin-top: 42px;
}

.pm-article-related .pm-section-head {
	margin-bottom: 24px;
	min-height: 74px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.pm-article-related .pm-section-head h2 {
	margin: 0;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(34px, 4vw, 58px);
	line-height: 0.94;
	text-transform: none;
}

.pm-article-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.pm-article-related-card {
	box-shadow: none;
}

.pm-article-related-card:hover {
	box-shadow: none;
}

.pm-related h2,
.pm-sidebar-section h2,
.pm-archive-header h1,
.pm-page h1 {
	margin: 0 0 18px;
	font-family: var(--pm-serif);
}

.pm-related-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-post-sidebar {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 26px;
	padding-left: 28px;
	border-left: 1px solid var(--pm-border);
}

.pm-sidebar-section {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--pm-border);
}

.pm-sidebar-card {
	display: grid;
	grid-template-columns: 132px 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.pm-sidebar-thumb {
	aspect-ratio: 1.35 / 1;
	border-radius: 6px;
}

.pm-sidebar-card span {
	color: var(--pm-secondary);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-sidebar-card h3,
.pm-sidebar-opinion h3 {
	margin: 5px 0;
	font-family: var(--pm-serif);
	font-size: 16px;
	line-height: 1.2;
}

.pm-sidebar-card time,
.pm-sidebar-opinion time,
.pm-sidebar-opinion span,
.pm-most-read time {
	display: block;
	color: var(--pm-muted);
	font-size: 12px;
}

.pm-most-read ol {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pm-most-read li {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 12px;
}

.pm-most-read li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid #ead6aa;
	border-radius: 8px;
	color: var(--pm-accent);
	font-weight: 900;
}

.pm-most-read a {
	display: block;
	font-family: var(--pm-serif);
	font-weight: 800;
	line-height: 1.18;
}

.pm-sidebar-opinion article {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.pm-sidebar-opinion .pm-author-avatar {
	width: 46px;
	height: 46px;
}

.pm-sidebar-all {
	display: inline-flex;
	margin-top: 8px;
	color: #08233f;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-reading-progress {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
	height: 4px;
	background: transparent;
}

.pm-reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--pm-accent);
}

.ad-slot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(1160px, calc(100% - 40px));
	margin: 18px auto;
	overflow: hidden;
	border: 1px dashed #cbd6dc;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.74);
}

.ad-slot-label {
	color: #81919b;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.ad-slot-sticky_mobile {
	position: fixed;
	left: 50%;
	bottom: 12px;
	z-index: 9998;
	width: min(420px, calc(100% - 24px));
	min-height: 64px;
	transform: translateX(-50%);
	box-shadow: none;
}

.pm-ad-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	cursor: pointer;
}

.pm-archive,
.pm-page {
	padding: 34px 0 60px;
}

.pm-archive-header {
	margin-bottom: 24px;
}

.pm-pagination {
	margin-top: 30px;
}

.pm-site-footer {
	margin-top: 42px;
	padding: 42px 0 20px;
	background:
		radial-gradient(circle at 10% 0, rgba(197, 138, 32, 0.13), transparent 34%),
		linear-gradient(135deg, var(--pm-footer), #021713);
	color: #fff;
}

.pm-footer-newsletter {
	margin-bottom: 34px;
}

.pm-footer-newsletter .pm-newsletter {
	margin-top: 0;
}

.pm-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 42px;
}

.pm-footer-brand img {
	max-height: 60px;
	margin-bottom: 16px;
}

.pm-footer-logo-text {
	display: block;
	margin-bottom: 10px;
	font-family: var(--pm-serif);
	font-size: 38px;
	font-weight: 800;
}

.pm-footer-brand p,
.pm-footer-column li,
.pm-footer-column p,
.pm-footer-bottom p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.pm-footer-column h2 {
	margin: 0 0 14px;
	font-size: 13px;
	text-transform: uppercase;
}

.pm-footer-column ul {
	display: grid;
	gap: 6px;
	align-items: start;
}

.pm-footer-social {
	margin-top: 18px;
}

.pm-footer-social a {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.pm-app-links {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.pm-app-links a {
	display: inline-flex;
	width: max-content;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
}

.pm-footer-bottom {
	margin-top: 32px;
	text-align: center;
}

/* Editorial black-and-white visual skin. */
.pm-site-header {
	background: #fff;
	border-bottom-color: #cfcfcf;
}

.pm-topbar {
	background: #050505;
	color: #fff;
}

.pm-brand-row {
	background: #fff;
}

.pm-logo-text,
.pm-brand small,
.pm-date-weather {
	color: #111;
}

.pm-brand small {
	letter-spacing: 0.22em;
}

.pm-btn,
.pm-read-now,
.pm-home-cta a,
.pm-newsletter-form button,
.pm-search-form button {
	border-radius: 2px;
}

.pm-btn-gold,
.pm-read-now,
.pm-newsletter-form button,
.pm-search-form button {
	background: #050505;
	color: #fff;
}

.pm-btn-outline {
	background: #fff;
	border-color: #111;
	color: #111;
}

.pm-menu-wrap {
	background: #fff;
	border-top: 1px solid #d6d6d6;
	border-bottom: 1px solid #111;
	backdrop-filter: none;
}

.pm-primary-menu a {
	color: #111;
}

.pm-breaking {
	background: #f4f4f4;
	border-color: #d6d6d6;
}

.pm-breaking a {
	color: #111;
}

.pm-breaking strong {
	background: #111;
	color: #fff;
}

.pm-hero-slider,
.pm-card,
.pm-opinion-card,
.pm-info-card {
	border-color: #d9d9d9;
	border-radius: 0;
	box-shadow: none;
}

.pm-hero-slider {
	border-width: 0 0 1px;
	background: #fff;
}

.pm-hero-copy {
	background: #fff;
}

.pm-category,
.pm-sidebar-card span,
.pm-inline-related span {
	color: #111;
}

.pm-hero h1,
.pm-card h2,
.pm-card h3,
.pm-opinion-card h3,
.pm-info-card h3,
.pm-article-header h1,
.pm-subtitle,
.pm-related h2,
.pm-sidebar-section h2,
.pm-archive-header h1,
.pm-page h1 {
	color: #111;
}

.pm-card {
	border-width: 0 0 1px;
	transition: color 0.18s ease, background 0.18s ease;
}

.pm-card:hover {
	transform: none;
	border-color: #111;
	box-shadow: none;
}

.pm-card-body {
	padding-inline: 0;
}

.pm-card-meta span {
	padding: 0;
	background: transparent;
	color: #111;
}

.pm-section {
	margin-top: 34px;
}

.pm-section-head {
	padding-top: 14px;
	border-top: 1px solid #111;
}

.pm-section-head h2 {
	padding-left: 0;
	color: #111;
	font-size: 15px;
	letter-spacing: 0;
}

.pm-section-head h2::before {
	display: none;
}

.pm-section-head a,
.pm-sidebar-all {
	color: #111;
}

.pm-opinion-section,
.pm-infographics {
	padding: 0;
	border-radius: 0;
	background: #fff;
}

.pm-opinion-section .pm-section-head h2,
.pm-opinion-section .pm-section-head a {
	color: #111;
}

.pm-opinion-card,
.pm-info-card {
	border-width: 0 0 1px;
}

.pm-avatar-fallback,
.pm-newsletter-icon {
	background: #111;
	color: #fff;
}

.pm-chart,
.pm-info-visual {
	border-radius: 0;
	background: #f4f4f4;
}

.pm-chart span {
	background: linear-gradient(180deg, #111, #565656);
}

.pm-chart-1 {
	background: conic-gradient(#111 0 44%, #444 44% 75%, #777 75% 88%, #b5b5b5 88% 100%);
}

.pm-newsletter,
.pm-newsletter-sidebar,
.pm-home-cta {
	border: 1px solid #111;
	border-radius: 0;
	background: #fff;
	color: #111;
}

.pm-newsletter-sidebar .pm-newsletter-icon {
	background: #111;
}

.pm-newsletter-form input {
	border: 1px solid #111;
	border-right: 0;
	border-radius: 0;
}

.pm-newsletter-form button {
	border-radius: 0;
}

.pm-sidebar-thumb {
	border-radius: 0;
}

.pm-article-content {
	color: #111;
}

.pm-article-content blockquote {
	border-left-color: #111;
	color: #111;
}

.pm-continue,
.pm-inline-related {
	border: 1px solid #d9d9d9;
	border-radius: 0;
	background: #f7f7f7;
}

.pm-continue {
	display: flex;
	justify-content: center;
	text-align: center;
}

.pm-continue button {
	background: #111;
	color: #fff;
}

.pm-inline-related {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px 12px;
	margin: 18px 0;
	padding: 12px 14px;
	border: 1px solid #d7d7d7;
	border-left: 5px solid #111;
	border-radius: 0;
	background: #f8f8f8;
	font-family: var(--pm-sans);
}

.pm-inline-related span {
	display: inline-flex;
	align-items: center;
	width: max-content;
	margin: 0;
	padding: 5px 8px;
	background: #111;
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pm-inline-related a {
	display: -webkit-box;
	overflow: hidden;
	min-width: 0;
	color: #111;
	font-family: var(--pm-sans);
	font-size: clamp(14px, 2.4vw, 16px);
	font-weight: 850;
	line-height: 1.32;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pm-inline-related a:hover,
.pm-inline-related a:focus-visible {
	color: #111;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.spd-promo .spd-promo__button {
	border: 2px solid rgba(255, 255, 255, 0.72);
	box-shadow: none;
	opacity: 1;
	filter: none;
}

.spd-promo .spd-promo__button:hover,
.spd-promo .spd-promo__button:focus {
	border-color: #fff;
	background: #0d2747;
	box-shadow: none;
	color: #fff;
	opacity: 1;
	filter: none;
	transform: translateY(-1px);
}

.pm-tags a {
	border-radius: 0;
	background: #fff;
	color: #111;
}

.pm-share a,
.pm-share button,
.pm-font-controls button:not(.pm-tts-toggle) {
	border-color: #111;
	border-radius: 50%;
	background: #fff;
	color: #111;
}

.pm-most-read li > span {
	border-color: #111;
	border-radius: 0;
	color: #111;
}

.ad-slot {
	border-color: #d9d9d9;
	border-radius: 0;
	background: #fafafa;
}

.pm-site-footer {
	background: #050505;
	color: #fff;
}

.pm-footer-social a {
	background: transparent;
}

.pm-image-fallback,
.pm-image-fallback-building {
	background:
		linear-gradient(135deg, rgba(18, 18, 18, 0.88), rgba(84, 84, 84, 0.74)),
		repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px);
	color: #fff;
}

.pm-site-main {
	padding-top: 14px;
}

.pm-hero {
	margin-top: 0;
}

.pm-hero-slide {
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
	min-height: 360px;
}

.pm-hero-copy {
	padding: 22px 34px 24px 0;
}

.pm-hero h1 {
	font-size: clamp(36px, 4.2vw, 58px);
	line-height: 1.03;
}

.pm-hero p {
	font-size: 16px;
}

.pm-editorial-digest {
	margin-top: 18px;
}

.pm-digest-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.32fr 0.82fr;
	gap: 24px;
	padding: 22px 0;
	border-top: 1px solid #111;
	border-bottom: 1px solid #d8d8d8;
}

.pm-digest-column h2,
.pm-digest-main h2,
.pm-latest-strip .pm-section-head h2 {
	margin: 0 0 16px;
	color: #111;
	font-family: var(--pm-sans);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-digest-main {
	padding-inline: 24px;
	border-inline: 1px solid #d8d8d8;
}

.pm-digest-mini {
	display: grid;
	grid-template-columns: 118px 1fr;
	gap: 14px;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid #d8d8d8;
}

.pm-digest-mini:last-child,
.pm-digest-opinion-item:last-of-type {
	margin-bottom: 0;
}

.pm-digest-thumb {
	width: 100%;
	aspect-ratio: 1.38 / 1;
	object-fit: cover;
}

.pm-digest-mini span,
.pm-card-meta span {
	color: #333;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-digest-mini h3,
.pm-digest-opinion-item h3,
.pm-latest-strip h3 {
	margin: 3px 0 5px;
	color: #111;
	font-family: var(--pm-serif);
	font-size: 15px;
	line-height: 1.16;
}

.pm-digest-mini time,
.pm-digest-opinion-item time,
.pm-latest-strip span,
.pm-latest-strip time {
	color: #6b6b6b;
	font-size: 12px;
}

.pm-digest-main-media {
	display: block;
	margin-bottom: 14px;
}

.pm-digest-main-image {
	width: 100%;
	aspect-ratio: 1.82 / 1;
	object-fit: cover;
}

.pm-digest-main h3 {
	margin: 0 0 8px;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(24px, 2.7vw, 34px);
	line-height: 1.08;
}

.pm-digest-main p {
	margin: 0 0 10px;
	color: #333;
	font-size: 15px;
}

.pm-digest-opinion-item {
	display: grid;
	grid-template-columns: 118px 1fr;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #d8d8d8;
}

.pm-digest-opinion-media {
	display: block;
	overflow: hidden;
	background: #111;
}

.pm-digest-opinion-image {
	width: 100%;
	height: 100%;
	min-height: 86px;
	aspect-ratio: 1.38 / 1;
	object-fit: cover;
}

.pm-digest-opinion-item p {
	margin: 0;
	font-size: 13px;
}

.pm-digest-all {
	display: inline-flex;
	margin-top: 16px;
	color: #111;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.pm-latest-strip {
	padding: 20px 0 0;
}

.pm-latest-strip .pm-section-head {
	padding-top: 0;
	border-top: 0;
}

.pm-latest-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #d8d8d8;
}

.pm-latest-strip-grid article {
	display: grid;
	gap: 10px;
	padding: 14px 18px 12px 0;
	border-right: 1px solid #d8d8d8;
}

.pm-latest-strip-grid article + article {
	padding-left: 18px;
}

.pm-latest-strip-grid article:last-child {
	border-right: 0;
}

.pm-latest-strip-media {
	display: block;
	overflow: hidden;
	background: #111;
}

.pm-latest-strip-image {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
}

.pm-latest-strip-body {
	display: grid;
	gap: 4px;
}

.pm-latest-strip time {
	color: #333;
	font-weight: 800;
}

.pm-latest-strip h3 {
	font-size: 16px;
}

.pm-block-more {
	display: flex;
	justify-content: flex-end;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #d8d8d8;
}

.pm-block-more a {
	color: #111;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	text-transform: uppercase;
}

.pm-related-news {
	position: relative;
	padding: 0 0 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0, rgba(246, 246, 246, 0.98) 100%),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 12px);
}

.pm-related-news .pm-section-head {
	margin-bottom: 22px;
	min-height: 74px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.pm-related-news .pm-section-head h2 {
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(30px, 3.8vw, 52px);
	line-height: 0.94;
	text-transform: none;
}

.pm-related-news-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.pm-related-news-card {
	overflow: hidden;
	border: 1px solid #d4d4d4;
	background: #fff;
	box-shadow: none;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.pm-related-news-card:hover {
	transform: translateY(-2px);
	border-color: #111;
	box-shadow: none;
}

.pm-related-news-media {
	display: block;
	overflow: hidden;
	background: #111;
}

.pm-related-news-image {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 0.28s ease;
}

.pm-related-news-card:hover .pm-related-news-image {
	transform: scale(1.025);
}

.pm-related-news-body {
	padding: 18px 20px 20px;
}

.pm-related-news-badge {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 7px 11px;
	border-radius: 4px;
	background: var(--pm-button);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.pm-related-news-card:nth-child(even) .pm-related-news-badge {
	background: var(--pm-accent);
}

.pm-related-news-card h3 {
	margin: 0 0 14px;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(24px, 2.9vw, 36px);
	line-height: 1.04;
}

.pm-related-news-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: #666;
	font-size: 14px;
}

.pm-archive-home {
	padding-top: 28px;
}

.pm-archive-hero-head {
	margin-bottom: 24px;
	min-height: 86px;
	padding: 20px 26px;
	border-top: 4px solid #111;
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.pm-archive-hero-head span {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pm-archive-hero-head h1 {
	margin: 0;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(40px, 5.4vw, 76px);
	line-height: 0.96;
	text-transform: none;
}

.pm-archive-hero-head p {
	max-width: 760px;
	margin: 12px 0 0;
	color: #333;
	font-size: 16px;
	line-height: 1.55;
}

.pm-archive-featured {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
	margin-bottom: 28px;
	border: 1px solid #111;
	background: #fff;
	box-shadow: none;
}

.pm-archive-featured-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: clamp(24px, 3vw, 36px);
}

.pm-archive-featured h2 {
	margin: 0;
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(32px, 4.4vw, 58px);
	line-height: 1;
}

.pm-archive-featured h2 a:hover,
.pm-archive-featured h2 a:focus-visible {
	color: #7f191b;
}

.pm-archive-featured p {
	margin: 0;
	color: #333;
	font-size: 18px;
	line-height: 1.52;
}

.pm-archive-featured-media {
	display: block;
	overflow: hidden;
	background: #111;
}

.pm-archive-featured-image {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	filter: saturate(0.94) contrast(1.04);
}

.pm-archive-section-head {
	margin: 34px 0 22px;
	min-height: 70px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.pm-archive-section-head h2 {
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(30px, 3.8vw, 52px);
	line-height: 0.94;
	text-transform: none;
}

.pm-archive-news-grid {
	margin-top: 0;
}

.pm-opinion-section {
	padding: 24px;
	border: 1px solid #111;
	background: #f7f7f7;
}

.pm-opinion-section .pm-section-head,
.pm-infographics .pm-section-head {
	padding-top: 0;
	border-top: 0;
	border-bottom: 1px solid #111;
	padding-bottom: 14px;
}

.pm-opinion-section .pm-section-head h2,
.pm-infographics .pm-section-head h2 {
	font-size: 22px;
}

.pm-opinion-grid {
	grid-template-columns: 1.35fr 1fr 1fr;
	gap: 18px;
}

.pm-opinion-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	border: 1px solid #d2d2d2;
	background: #fff;
}

.pm-opinion-media {
	display: block;
	overflow: hidden;
	background: #111;
}

.pm-opinion-image {
	width: 100%;
	aspect-ratio: 1.62 / 1;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
}

.pm-opinion-card-body {
	padding: 20px;
}

.pm-opinion-author-badge {
	position: absolute;
	z-index: 2;
	width: 78px;
	height: 78px;
	padding: 4px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #111;
	box-shadow: none;
}

.pm-opinion-author-badge .pm-author-avatar,
.pm-opinion-author-badge .pm-avatar-fallback {
	width: 100%;
	height: 100%;
	border: 0;
}

.pm-opinion-author-top-right .pm-opinion-author-badge {
	top: 16px;
	right: 16px;
}

.pm-opinion-author-top-left .pm-opinion-author-badge {
	top: 16px;
	left: 16px;
}

.pm-opinion-author-bottom-right .pm-opinion-author-badge {
	right: 16px;
	bottom: 16px;
}

.pm-opinion-author-bottom-left .pm-opinion-author-badge {
	left: 16px;
	bottom: 16px;
}

.pm-opinion-card:first-child {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	background: #111;
	color: #fff;
}

.pm-opinion-card:first-child h3,
.pm-opinion-card:first-child .pm-byline,
.pm-opinion-card:first-child time,
.pm-opinion-card:first-child p {
	color: #fff;
}

.pm-opinion-card:first-child a:hover,
.pm-newsletter-sidebar a:hover,
.pm-site-footer a:hover,
.pm-topbar a:hover {
	color: #fff;
	opacity: 0.82;
}

.pm-info-card:first-child a:hover {
	color: inherit;
	opacity: 0.82;
}

.pm-opinion-card:first-child h3 {
	font-size: clamp(26px, 3vw, 38px);
}

.pm-opinion-card:first-child .pm-opinion-card-body {
	padding: 28px;
}

.pm-opinion-card:first-child .pm-opinion-image {
	aspect-ratio: 1.75 / 1;
	opacity: 0.88;
}

.pm-infographics {
	padding: 24px;
	border: 1px solid #111;
	background: #fff;
}

.pm-info-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pm-info-card {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid #d2d2d2;
	background: #fafafa;
}

.pm-info-card:first-child {
	grid-column: span 2;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	background: #111;
	color: #fff;
}

.pm-info-card:first-child h3,
.pm-info-card:first-child p {
	color: #fff;
}

.pm-info-card:first-child h3 {
	font-size: clamp(28px, 3.2vw, 42px);
}

.pm-info-card:first-child .pm-info-visual,
.pm-info-card:first-child .pm-chart {
	min-height: 280px;
	background: #2d2d2d;
}

.pm-info-card p {
	margin: 0;
	color: #555;
	font-size: 13px;
}

/* Strong editorial blocks for the home layout. */
.home .pm-hero-slider {
	border: 0;
	background: #fff;
	box-shadow: none;
}

.home .pm-hero-copy {
	border-right: 0;
}

.home .pm-editorial-digest {
	position: relative;
	margin-top: 24px;
	padding: 0;
	border: 0;
	background: #fff;
}

.home .pm-editorial-digest::before,
.home .pm-newsletter::before,
.home .pm-home-cta::before {
	position: static;
	display: flex;
	align-items: center;
	min-height: 74px;
	margin: 0 0 22px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 900;
	line-height: 0.96;
	text-transform: none;
}

.home .pm-editorial-digest::before {
	content: "Panorama editorial";
}

.home .pm-digest-grid {
	padding: 0 0 24px;
	border-top: 0;
	border-bottom: 1px solid #111;
}

.home .pm-digest-grid-no-opinion {
	grid-template-columns: 0.82fr 1.74fr;
}

.home .pm-digest-column h2,
.home .pm-digest-main h2 {
	display: inline-flex;
	width: fit-content;
	padding: 7px 10px;
	background: #111;
	color: #fff;
	line-height: 1;
}

.home .pm-digest-main h2 {
	background: #2f2f2f;
}

.home .pm-digest-main {
	padding-inline: 24px;
}

.home .pm-digest-mini {
	padding: 14px 0;
	margin: 0;
}

.home .pm-digest-mini:first-of-type {
	padding-top: 0;
}

.home .pm-digest-main-image,
.home .pm-digest-thumb,
.home .pm-info-visual {
	filter: saturate(0.9) contrast(1.04);
}

.home .pm-latest-strip {
	margin-top: 22px;
	padding: 0;
	border: 0;
	background: #fff;
}

.home .pm-latest-strip .pm-section-head {
	min-height: 74px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.home .pm-latest-strip-grid {
	border-top: 0;
}

.home .pm-opinion-section {
	position: relative;
	padding: 0 0 24px;
	border: 0;
	background:
		linear-gradient(180deg, rgba(242, 244, 246, 0.95) 0, rgba(255, 255, 255, 0.98) 190px),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 12px);
}

.home .pm-opinion-section .pm-section-head,
.home .pm-infographics .pm-section-head {
	margin-bottom: 20px;
	min-height: 74px;
	padding: 16px 22px;
	border-top: 4px solid #111;
	border-bottom: 1px solid #111;
	border-left: 10px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 235, 238, 0.9)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.055) 0 1px, transparent 1px 10px);
}

.home .pm-latest-strip .pm-section-head h2,
.home .pm-opinion-section .pm-section-head h2,
.home .pm-infographics .pm-section-head h2 {
	color: #111;
	font-family: var(--pm-serif);
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 0.96;
	text-transform: none;
}

.home .pm-latest-strip .pm-section-head a,
.home .pm-opinion-section .pm-section-head a,
.home .pm-infographics .pm-section-head a {
	align-self: center;
	padding: 9px 12px;
	border: 1px solid #111;
	background: #fff;
	line-height: 1;
}

.home .pm-opinion-card,
.home .pm-info-card {
	border-width: 1px;
}

.home .pm-opinion-card:first-child {
	border-color: #111;
}

.home .pm-opinion-card:first-child h3,
.home .pm-opinion-card:first-child h3 a,
.home .pm-opinion-card:first-child h3 a:hover,
.home .pm-opinion-card:first-child h3 a:focus,
.home .pm-opinion-card:first-child h3 a:visited,
.pm-opinion-card:first-child h3,
.pm-opinion-card:first-child h3 a,
.pm-opinion-card:first-child h3 a:hover,
.pm-opinion-card:first-child h3 a:focus,
.pm-opinion-card:first-child h3 a:visited {
	color: #fff !important;
}

.home .pm-opinion-card:first-child h3 a:hover,
.pm-opinion-card:first-child h3 a:hover {
	opacity: 0.82;
}

.home .pm-infographics {
	position: relative;
	padding: 0 0 24px;
	border: 0;
	background:
		linear-gradient(180deg, rgba(242, 244, 246, 0.95) 0, rgba(255, 255, 255, 0.98) 190px),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 12px);
}

.home .pm-info-card {
	background: #fff;
}

.home .pm-newsletter {
	position: relative;
	margin-top: 34px;
	overflow: hidden;
	padding: 18px 22px;
	border: 2px solid #111;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 235, 238, 0.96)),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 12px);
	box-shadow: none;
	gap: 18px;
}

.home .pm-newsletter::before {
	content: none;
}

.home .pm-newsletter .pm-newsletter-icon {
	width: 54px;
	height: 54px;
	font-size: 24px;
}

.home .pm-newsletter h2 {
	margin-bottom: 3px;
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.05;
}

.home .pm-newsletter p {
	font-size: 15px;
	line-height: 1.45;
}

.home .pm-newsletter .pm-newsletter-form {
	overflow: hidden;
	border: 2px solid #111;
	background: #fff;
	box-shadow: none;
}

.home .pm-newsletter .pm-newsletter-form input {
	border-radius: 0;
}

.home .pm-newsletter .pm-newsletter-form button {
	border-radius: 0;
}

.home .pm-home-cta {
	position: relative;
	border: 0;
	background: #fff;
}

.home .pm-home-cta::before {
	content: "Especial do site";
}

.pm-whatsapp-cta {
	width: min(100%, var(--pm-wa-max, 100%));
	margin: var(--pm-wa-y, 15px) auto;
	color: var(--pm-wa-text, #061425);
}

.pm-whatsapp-align-left {
	margin-left: 0;
	margin-right: auto;
}

.pm-whatsapp-align-right {
	margin-left: auto;
	margin-right: 0;
}

.pm-whatsapp-cta-inner {
	position: relative;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: clamp(16px, 2.4vw, 28px);
	align-items: center;
	overflow: hidden;
	padding: clamp(12px, var(--pm-wa-y, 15px), 18px) clamp(18px, var(--pm-wa-x, 20px), 26px);
	border: 1px solid #d9d9d9;
	border-left: 10px solid #111;
	border-radius: var(--pm-wa-radius, 8px);
	background: var(--pm-wa-bg, #fff);
	box-shadow: none;
}

.pm-whatsapp-cta-inner::after {
	content: "";
	position: absolute;
	top: -58px;
	right: -34px;
	width: 138px;
	height: 138px;
	border: 2px solid rgba(17, 17, 17, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.pm-whatsapp-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--pm-wa-icon-bg, #061425);
	color: #fff;
}

.pm-whatsapp-icon .pm-icon {
	width: 28px;
	height: 28px;
}

.pm-whatsapp-copy {
	position: relative;
	z-index: 1;
}

.pm-whatsapp-copy h2 {
	margin: 0 0 5px;
	color: inherit;
	font-family: var(--pm-serif);
	font-size: clamp(24px, 2.5vw, 36px);
	font-weight: 900;
	line-height: 1.02;
}

.pm-whatsapp-copy p {
	margin: 0;
	color: var(--pm-wa-text, #061425);
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 1.32;
	opacity: 0.72;
}

.pm-whatsapp-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	background: var(--pm-wa-button-bg, #111);
	color: var(--pm-wa-button-text, #fff);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-transform: uppercase;
	transition: background 0.18s ease, transform 0.18s ease;
	white-space: nowrap;
}

.pm-whatsapp-button:hover {
	background: var(--pm-wa-button-hover, #061425);
	color: var(--pm-wa-button-text, #fff);
	transform: translateY(-1px);
}

@media (max-width: 1080px) {
	.pm-brand {
		position: static;
		transform: none;
	}

	.pm-brand-row {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.pm-date-weather,
	.pm-header-actions {
		min-width: 0;
		justify-content: center;
	}

	.pm-latest-grid,
	.pm-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pm-post-layout {
		grid-template-columns: 1fr;
	}

	.pm-post-sidebar {
		position: static;
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 840px) {
	.pm-container {
		width: min(100% - 28px, 1160px);
	}

	.pm-topbar {
		display: none;
	}

	.pm-site-main {
		padding-top: 10px;
	}

	.pm-brand-row {
		display: grid;
		grid-template-columns: 44px 1fr 44px;
		gap: 8px;
		min-height: 76px;
		padding: 12px 0 10px;
		text-align: center;
	}

	.pm-date-weather {
		display: none;
	}

	.pm-brand {
		grid-column: 2;
		justify-self: center;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
	}

	.pm-logo-text {
		max-width: 100%;
		font-size: clamp(30px, 8.6vw, 40px);
		white-space: nowrap;
	}

	.pm-brand small {
		margin-top: 3px;
		font-size: 8px;
		letter-spacing: 0.12em;
	}

	.pm-header-actions {
		grid-column: 3;
		min-width: 0;
		gap: 0;
		justify-self: end;
	}

	.pm-header-actions .pm-btn {
		display: none;
	}

	.pm-menu-wrap {
		display: none;
	}

	.pm-menu-inner {
		width: 100%;
		min-height: 38px;
		justify-content: stretch;
	}

	.pm-site-menu {
		display: block;
		overflow-x: auto;
		width: 100%;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.pm-primary-menu {
		justify-content: flex-start;
		gap: 20px;
		width: max-content;
		min-width: 100%;
		white-space: nowrap;
	}

	.pm-primary-menu a {
		padding: 11px 0;
		font-size: 11px;
	}

	.pm-menu-toggle {
		grid-column: 1;
		display: inline-flex;
		flex-direction: column;
		margin-left: 0;
		border-radius: 0;
		align-self: center;
		justify-self: start;
	}

	.pm-mobile-menu {
		position: fixed;
		inset: 0 auto 0 0;
		display: block;
		width: min(88vw, 390px);
		max-height: none;
		margin: 0;
		overflow: auto;
		border: 0;
		border-right: 1px solid #d8d8d8;
		border-radius: 0;
		background: #fff;
			box-shadow: 999px 0 0 999px rgba(0, 0, 0, 0.28);
		opacity: 0;
		pointer-events: none;
		transform: translateX(-100%);
		visibility: hidden;
		z-index: 1000;
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	.pm-mobile-menu.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
		visibility: visible;
	}

	.pm-mobile-menu-head {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		padding: 26px 86px 16px 32px;
	}

	.pm-mobile-brand {
		display: inline-grid;
		max-width: 100%;
		min-width: 0;
		color: #111;
		line-height: 1;
	}

	.pm-mobile-brand img {
		max-width: 230px;
		max-height: 52px;
	}

	.pm-mobile-brand .pm-logo-text {
		color: #111;
		font-size: clamp(26px, 7vw, 32px);
		line-height: 0.9;
		white-space: nowrap;
	}

	.pm-mobile-brand small {
		margin-top: 6px;
		color: #111;
		font-size: 10px;
		letter-spacing: 0.18em;
	}

	.pm-mobile-menu-close {
		position: absolute;
		top: 28px;
		right: 28px;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		color: #111;
		cursor: pointer;
		z-index: 2;
	}

	.pm-mobile-menu-close span {
		position: absolute;
		top: 50%;
		left: 10px;
		width: 24px;
		height: 3px;
		background: currentColor;
	}

	.pm-mobile-menu-close span:first-child {
		transform: rotate(45deg);
	}

	.pm-mobile-menu-close span:last-child {
		transform: rotate(-45deg);
	}

	.pm-mobile-menu ul {
		display: grid;
		width: 100%;
		padding: 12px 32px 42px;
		margin: 0;
	}

	.pm-mobile-menu a {
		padding: 20px 0;
		border-bottom: 1px solid #d8d8d8;
		border-radius: 0;
		color: #111;
		font-size: clamp(20px, 5vw, 28px);
		font-weight: 900;
		line-height: 1;
		text-align: left;
	}

	.pm-mobile-menu li:last-child a {
		border-bottom: 0;
	}

	body.pm-mobile-menu-open {
		overflow: hidden;
	}

	.pm-whatsapp-cta-inner {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 12px 14px;
		border-left-width: 8px;
	}

	.pm-whatsapp-icon {
		width: 44px;
		height: 44px;
	}

	.pm-whatsapp-icon .pm-icon {
		width: 23px;
		height: 23px;
	}

	.pm-whatsapp-copy h2 {
		margin-bottom: 3px;
		font-size: clamp(21px, 6vw, 27px);
		line-height: 1.03;
	}

	.pm-whatsapp-copy p {
		font-size: 14px;
		line-height: 1.28;
	}

	.pm-whatsapp-button {
		grid-column: 1 / -1;
		width: 100%;
		min-height: 42px;
		padding-inline: 14px;
		font-size: 13px;
	}

	.pm-hero-slide,
	.pm-newsletter {
		grid-template-columns: 1fr;
	}

	.pm-hero-slider {
		overflow: hidden;
	}

	.pm-hero-slide {
		min-height: auto;
	}

	.pm-hero-media {
		order: 0;
	}

	.pm-hero-copy {
		min-width: 0;
		max-width: 100%;
		overflow: hidden;
		padding: 28px 0 24px;
	}

	.pm-hero h1 {
		max-width: 100%;
		font-size: clamp(30px, 8.6vw, 42px);
		line-height: 1.02;
		overflow-wrap: break-word;
		word-break: normal;
		hyphens: none;
	}

	.pm-hero p {
		font-size: 18px;
		line-height: 1.55;
	}

	.pm-hero .pm-meta {
		gap: 10px;
	}

	.pm-hero-image {
		min-height: 260px;
	}

	.pm-hero-dots {
		position: static;
		justify-content: center;
		padding: 14px 0 16px;
		z-index: 2;
	}

	.home .pm-editorial-digest::before,
	.home .pm-newsletter::before,
	.home .pm-home-cta::before,
	.home .pm-latest-strip .pm-section-head,
	.home .pm-related-news .pm-section-head,
	.home .pm-opinion-section .pm-section-head,
	.home .pm-infographics .pm-section-head {
		min-height: 64px;
		padding: 14px 16px;
		border-left-width: 8px;
	}

	.home .pm-editorial-digest::before,
	.home .pm-newsletter::before,
	.home .pm-home-cta::before,
	.home .pm-latest-strip .pm-section-head h2,
	.home .pm-related-news .pm-section-head h2,
	.home .pm-opinion-section .pm-section-head h2,
	.home .pm-infographics .pm-section-head h2 {
		font-size: clamp(26px, 7.8vw, 34px);
	}

	.pm-digest-grid,
	.pm-latest-strip-grid {
		grid-template-columns: 1fr;
	}

	.pm-archive-featured {
		grid-template-columns: 1fr;
	}

	.pm-archive-featured-media {
		order: -1;
	}

	.pm-archive-featured-image {
		min-height: 250px;
	}

	.pm-digest-main {
		padding: 20px 0;
		border-inline: 0;
		border-top: 1px solid #d8d8d8;
		border-bottom: 1px solid #d8d8d8;
	}

	.pm-digest-opinion-item {
		grid-template-columns: 132px 1fr;
	}

	.pm-latest-strip-grid article,
	.pm-latest-strip-grid article + article {
		padding-left: 0;
		border-right: 0;
		border-bottom: 1px solid #d8d8d8;
	}

	.pm-latest-grid,
	.pm-related-news-grid,
	.pm-opinion-grid,
	.pm-info-grid,
	.pm-article-related-grid,
	.pm-related-grid,
	.pm-footer-grid {
		grid-template-columns: 1fr;
	}

	.pm-article-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.pm-article-related-card {
		min-width: 0;
	}

	.pm-article-related-card .pm-related-news-media,
	.pm-article-related-card .pm-related-news-image {
		aspect-ratio: 1 / 1;
	}

	.pm-article-related-card .pm-related-news-body {
		padding: 10px;
	}

	.pm-article-related-card .pm-related-news-badge {
		margin-bottom: 8px;
		padding: 5px 7px;
		font-size: 10px;
		letter-spacing: 0.06em;
	}

	.pm-article-related-card h3 {
		display: -webkit-box;
		overflow: hidden;
		margin-bottom: 0;
		font-size: clamp(16px, 4.2vw, 19px);
		line-height: 1.08;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.pm-article-related-card .pm-related-news-meta {
		display: grid;
		gap: 4px;
		margin-top: 8px;
		font-size: 11px;
		line-height: 1.25;
	}

	.pm-article-related-card .pm-related-news-meta span {
		display: none;
	}

	.pm-opinion-section,
	.pm-infographics,
	.pm-related-news,
	.home .pm-editorial-digest,
	.home .pm-latest-strip,
	.home .pm-newsletter {
		padding: 0 0 18px;
	}

	.home .pm-newsletter {
		padding: 16px;
			box-shadow: none;
	}

	.home .pm-hero-copy {
		border-right: 0;
	}

	.pm-info-card:first-child {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	.pm-info-card:first-child .pm-info-visual,
	.pm-info-card:first-child .pm-chart {
		min-height: 220px;
	}

	.pm-opinion-card {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.pm-opinion-card-body,
	.pm-opinion-card:first-child .pm-opinion-card-body {
		padding: 18px;
	}

	.pm-opinion-author-badge {
		width: 66px;
		height: 66px;
	}

	.pm-author-avatar,
	.pm-avatar-fallback {
		width: 60px;
		height: 60px;
	}

	.pm-newsletter-form {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.home .pm-newsletter .pm-newsletter-form {
		gap: 0;
	}

	.pm-newsletter-form input,
	.pm-newsletter-form button {
		border-radius: 4px;
	}

	.pm-newsletter-form button {
		width: 100%;
		min-width: 0;
		min-height: 48px;
		padding-inline: 12px;
		font-size: clamp(12px, 3.4vw, 14px);
		letter-spacing: 0.02em;
		white-space: nowrap;
	}

	.home .pm-newsletter .pm-newsletter-form input,
	.home .pm-newsletter .pm-newsletter-form button {
		border-radius: 0;
	}

	.pm-newsletter-form input {
		width: 100%;
		border-right: 1px solid #111;
	}

	.pm-article-header h1 {
		max-width: 100%;
		font-size: clamp(32px, 9.4vw, 38px);
		line-height: 1.04;
		overflow-wrap: break-word;
		word-break: normal;
		hyphens: none;
	}

	.pm-article-meta {
		align-items: flex-start;
	}

	.pm-share {
		width: 100%;
		flex-wrap: wrap;
	}

	.pm-sidebar-card {
		grid-template-columns: 110px 1fr;
	}
}

@media (max-width: 560px) {
	.pm-inline-menu {
		gap: 14px;
		font-size: 12px;
	}

	.pm-brand-row {
		min-height: 72px;
		padding: 10px 0 8px;
	}

	.pm-btn {
		min-height: 38px;
		padding: 0 14px;
	}

	.pm-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.pm-card h2,
	.pm-card h3 {
		font-size: 18px;
	}

	.pm-archive-hero-head,
	.pm-archive-section-head,
	.pm-article-related .pm-section-head {
		padding: 14px 16px;
		border-left-width: 8px;
	}

	.pm-archive-hero-head h1,
	.pm-archive-section-head h2,
	.pm-article-related .pm-section-head h2 {
		font-size: clamp(28px, 9vw, 38px);
	}

	.pm-archive-featured-copy {
		padding: 20px 16px;
	}

	.pm-archive-featured h2 {
		font-size: clamp(30px, 9vw, 42px);
	}

	.pm-sidebar-card {
		grid-template-columns: 1fr;
	}
}

body:not(.wp-admin) .pm-site-header *,
body:not(.wp-admin) .pm-site-main *,
body:not(.wp-admin) .pm-site-footer *,
body:not(.wp-admin) .spd-promo,
body:not(.wp-admin) .spd-promo * {
	box-shadow: none !important;
	text-shadow: none !important;
}

@media (min-width: 841px) {
	.pm-home-block-desktop-cols-1 .pm-latest-strip-grid,
	.pm-home-block-desktop-cols-1 .pm-related-news-grid,
	.pm-home-block-desktop-cols-1 .pm-opinion-grid,
	.pm-home-block-desktop-cols-1 .pm-info-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.pm-home-block-desktop-cols-2 .pm-latest-strip-grid,
	.pm-home-block-desktop-cols-2 .pm-related-news-grid,
	.pm-home-block-desktop-cols-2 .pm-opinion-grid,
	.pm-home-block-desktop-cols-2 .pm-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pm-home-block-desktop-cols-3 .pm-latest-strip-grid,
	.pm-home-block-desktop-cols-3 .pm-related-news-grid,
	.pm-home-block-desktop-cols-3 .pm-opinion-grid,
	.pm-home-block-desktop-cols-3 .pm-info-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pm-home-block-desktop-cols-4 .pm-latest-strip-grid,
	.pm-home-block-desktop-cols-4 .pm-related-news-grid,
	.pm-home-block-desktop-cols-4 .pm-opinion-grid,
	.pm-home-block-desktop-cols-4 .pm-info-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.pm-archive-desktop-cols-1.archive .pm-archive-news-grid,
	body.pm-archive-desktop-cols-1.blog .pm-archive-news-grid,
	body.pm-archive-desktop-cols-1.search .pm-archive-news-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	body.pm-archive-desktop-cols-2.archive .pm-archive-news-grid,
	body.pm-archive-desktop-cols-2.blog .pm-archive-news-grid,
	body.pm-archive-desktop-cols-2.search .pm-archive-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pm-archive-desktop-cols-3.archive .pm-archive-news-grid,
	body.pm-archive-desktop-cols-3.blog .pm-archive-news-grid,
	body.pm-archive-desktop-cols-3.search .pm-archive-news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.pm-archive-desktop-cols-4.archive .pm-archive-news-grid,
	body.pm-archive-desktop-cols-4.blog .pm-archive-news-grid,
	body.pm-archive-desktop-cols-4.search .pm-archive-news-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.pm-home-block[class*="pm-home-block-desktop-cols-"] .pm-info-card:first-child {
		grid-column: auto;
		grid-template-columns: 1fr;
		background: #fafafa;
		color: #111;
	}

	.pm-home-block[class*="pm-home-block-desktop-cols-"] .pm-info-card:first-child h3 {
		color: #111;
		font-size: 21px;
	}

	.pm-home-block[class*="pm-home-block-desktop-cols-"] .pm-info-card:first-child p {
		color: #555;
	}

	.pm-home-block[class*="pm-home-block-desktop-cols-"] .pm-info-card:first-child .pm-info-visual,
	.pm-home-block[class*="pm-home-block-desktop-cols-"] .pm-info-card:first-child .pm-chart {
		min-height: 150px;
		background: #f4f4f4;
	}
}

@media (max-width: 840px) {
	body:not(.wp-admin) .pm-mobile-menu.is-open {
		box-shadow: 999px 0 0 999px rgba(0, 0, 0, 0.28) !important;
	}
}

@media (max-width: 840px) {
	.pm-home-block-cols-2 .pm-latest-strip-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-3 .pm-latest-strip-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-2 .pm-related-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-3 .pm-related-news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-2 .pm-opinion-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-3 .pm-opinion-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child {
		min-width: 0;
		overflow: hidden;
		background: #111;
		color: #fff;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-media {
		aspect-ratio: 1 / 1;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-image,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child .pm-opinion-image {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-author-badge {
		top: 6px;
		right: 6px;
		bottom: auto;
		left: auto;
		width: 38px;
		height: 38px;
		padding: 2px;
		border-width: 1px;
	}

	.pm-home-block-cols-3 .pm-opinion-author-badge {
		width: 32px;
		height: 32px;
	}

	.pm-home-block-cols-2 .pm-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pm-home-block-cols-3 .pm-info-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child {
		display: flex;
		flex-direction: column;
		min-width: 0;
		aspect-ratio: auto;
		gap: 0;
		overflow: hidden;
		padding: 0;
		background: #fff;
		color: #111;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-info-visual,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-chart,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-info-visual,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-chart {
		order: 1;
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		min-height: 0;
		margin: 0;
		border-radius: 0;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-info-visual,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-info-visual {
		object-fit: cover;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-chart,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-chart {
		display: grid;
		padding: 12px;
	}

	.pm-home-block-cols-3 .pm-info-card .pm-info-visual,
	.pm-home-block-cols-3 .pm-info-card .pm-chart,
	.pm-home-block-cols-3 .pm-info-card:first-child .pm-info-visual,
	.pm-home-block-cols-3 .pm-info-card:first-child .pm-chart {
		flex-basis: auto;
	}

	body.pm-archive-mobile-cols-2.archive .pm-archive-news-grid,
	body.pm-archive-mobile-cols-2.blog .pm-archive-news-grid,
	body.pm-archive-mobile-cols-2.search .pm-archive-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	body.pm-archive-mobile-cols-3.archive .pm-archive-news-grid,
	body.pm-archive-mobile-cols-3.blog .pm-archive-news-grid,
	body.pm-archive-mobile-cols-3.search .pm-archive-news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-grid article,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-grid article + article {
		gap: 0;
		padding: 0;
		border: 1px solid #d8d8d8;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-body,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-body,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card-body,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card-body,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card-body,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card-body {
		padding: 10px;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child .pm-opinion-card-body {
		padding: 10px;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child h3 {
		order: 2;
		display: -webkit-box;
		overflow: hidden;
		margin: 0;
		padding: 9px;
		color: #111;
		font-size: 14px;
		line-height: 1.08;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.pm-home-block-cols-3 .pm-info-card h3,
	.pm-home-block-cols-3 .pm-info-card:first-child h3 {
		padding: 7px;
		font-size: 12px;
		line-height: 1.05;
		-webkit-line-clamp: 3;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card p,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child p {
		display: none;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-card h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card h3,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card h2,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card h3,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card h2,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card h3,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card h2,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card h3 {
		font-size: clamp(15px, 4vw, 18px);
		line-height: 1.12;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child h3,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card h3 a,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child h3 a {
		display: -webkit-box;
		overflow: hidden;
		color: #fff !important;
		font-size: 15px;
		line-height: 1.08;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.pm-home-block-cols-3 .pm-opinion-card h3,
	.pm-home-block-cols-3 .pm-opinion-card:first-child h3,
	.pm-home-block-cols-3 .pm-opinion-card h3 a,
	.pm-home-block-cols-3 .pm-opinion-card:first-child h3 a {
		font-size: 13px;
		-webkit-line-clamp: 3;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-byline,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card p:not(.pm-byline) {
		display: none;
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card time,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card:first-child time {
		display: block;
		margin-top: 7px;
		color: rgba(255, 255, 255, 0.78);
	}

	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip span,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip time,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-meta,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card p,
	:is(.pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card p,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card p,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card p,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card p {
		font-size: 12px;
		line-height: 1.35;
	}

	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card-meta,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card-meta,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-media,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-media,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-media {
		aspect-ratio: 1 / 1;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-image,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-image,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-image {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child {
		display: flex;
		flex-direction: column;
		aspect-ratio: auto;
		min-height: 0;
		padding: 0;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-info-visual,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card .pm-chart,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-info-visual,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child .pm-chart {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 1 / 1;
		height: auto;
		min-height: 0;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child h3 {
		display: -webkit-box;
		overflow: hidden;
		margin-bottom: 0;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-latest-strip h3,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-related-news-card h3,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card:first-child h3 {
		font-size: 12px;
		line-height: 1.08;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-card-related-links,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card-related-links,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card-related-links,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card-related-links {
		gap: 5px;
		margin-top: 8px;
		padding-top: 8px;
	}

	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-card-related-links li:nth-child(n+2),
	body.pm-archive-mobile-cols-3.archive .pm-card-related-links li:nth-child(n+2),
	body.pm-archive-mobile-cols-3.blog .pm-card-related-links li:nth-child(n+2),
	body.pm-archive-mobile-cols-3.search .pm-card-related-links li:nth-child(n+2) {
		display: none;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-card-related-links a,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).archive .pm-card-related-links a,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).blog .pm-card-related-links a,
	body:is(.pm-archive-mobile-cols-2, .pm-archive-mobile-cols-3).search .pm-card-related-links a {
		gap: 5px;
		font-size: 11px;
		line-height: 1.2;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links {
		border-top-color: rgba(255, 255, 255, 0.32);
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links a,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links a:visited {
		color: #fff;
		opacity: 1;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links a::before {
		color: #36b7c8;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links a:hover,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card .pm-card-related-links a:focus-visible {
		color: #fff;
		text-decoration: underline;
		text-underline-offset: 3px;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child {
		display: flex;
		flex-direction: column;
		overflow: hidden;
		height: auto;
		min-height: 0;
		padding: 0;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-cols-2) .pm-info-card .pm-info-visual,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-cols-2) .pm-info-card:first-child .pm-info-visual {
		width: 100%;
		height: clamp(118px, 36vw, 158px);
		aspect-ratio: auto;
		object-fit: cover;
	}

	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card .pm-info-visual,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card:first-child .pm-info-visual {
		width: 100%;
		height: clamp(88px, 28vw, 118px);
		aspect-ratio: auto;
		object-fit: cover;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-cols-2) .pm-info-card .pm-chart,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-cols-2) .pm-info-card:first-child .pm-chart {
		height: clamp(118px, 36vw, 158px);
		aspect-ratio: auto;
	}

	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card .pm-chart,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card:first-child .pm-chart {
		height: clamp(88px, 28vw, 118px);
		aspect-ratio: auto;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card:first-child h3 {
		display: block;
		overflow: visible;
		margin: 0;
		padding: 10px 10px 12px;
		color: #111;
		font-size: clamp(15px, 3.85vw, 17px);
		line-height: 1.08;
		overflow-wrap: break-word;
		-webkit-box-orient: initial;
		-webkit-line-clamp: unset;
	}

	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-mobile-cols-3, .pm-home-block-cols-3) .pm-info-card:first-child h3 {
		padding: 8px;
		font-size: 12px;
		line-height: 1.08;
	}
}

@media (max-width: 840px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.pm-site-main,
	.pm-container,
	.pm-section,
	.pm-home-block,
	.pm-home-block > *,
	.pm-digest-grid,
	.pm-latest-strip,
	.pm-latest-strip-grid,
	.pm-related-news-grid,
	.pm-opinion-grid,
	.pm-info-grid {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.pm-home-block,
	.pm-digest-grid,
	.pm-latest-strip,
	.pm-latest-strip-grid,
	.pm-related-news-grid,
	.pm-opinion-grid,
	.pm-info-grid {
		overflow: hidden;
	}

	.pm-digest-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 18px;
	}

	.pm-home-block-mobile-cols-1 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-1 .pm-related-news-grid,
	.pm-home-block-mobile-cols-1 .pm-opinion-grid,
	.pm-home-block-mobile-cols-1 .pm-info-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.pm-home-block-mobile-cols-2 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-2 .pm-related-news-grid,
	.pm-home-block-mobile-cols-2 .pm-opinion-grid,
	.pm-home-block-mobile-cols-2 .pm-info-grid,
	.pm-home-block-cols-2 .pm-latest-strip-grid,
	.pm-home-block-cols-2 .pm-related-news-grid,
	.pm-home-block-cols-2 .pm-opinion-grid,
	.pm-home-block-cols-2 .pm-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: clamp(8px, 2.4vw, 12px) !important;
	}

	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: clamp(6px, 1.8vw, 9px) !important;
	}

	.pm-home-block article,
	.pm-home-block a,
	.pm-home-block img,
	.pm-home-block h2,
	.pm-home-block h3,
	.pm-home-block p,
	.pm-home-block span,
	.pm-home-block time,
	.pm-latest-strip-body,
	.pm-related-news-body,
	.pm-opinion-card-body {
		max-width: 100%;
		min-width: 0;
	}

	.pm-home-block h2,
	.pm-home-block h3,
	.pm-home-block p,
	.pm-home-block span,
	.pm-home-block time {
		overflow-wrap: break-word;
		word-break: normal;
	}

	.pm-home-block-mobile-cols-3 .pm-latest-strip-body,
	.pm-home-block-mobile-cols-3 .pm-related-news-body,
	.pm-home-block-mobile-cols-3 .pm-opinion-card-body,
	.pm-home-block-mobile-cols-3 .pm-info-card,
	.pm-home-block-cols-3 .pm-latest-strip-body,
	.pm-home-block-cols-3 .pm-related-news-body,
	.pm-home-block-cols-3 .pm-opinion-card-body,
	.pm-home-block-cols-3 .pm-info-card {
		padding: 7px;
	}

	.pm-home-block-mobile-cols-3 .pm-related-news-badge,
	.pm-home-block-mobile-cols-3 .pm-card-related-links,
	.pm-home-block-cols-3 .pm-related-news-badge,
	.pm-home-block-cols-3 .pm-card-related-links {
		display: none;
	}
}

@media (max-width: 430px) {
	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* Final production guards: keep forms readable and mobile sections inside the viewport. */
.pm-newsletter,
.pm-newsletter *,
.pm-home-block,
.pm-home-block * {
	box-sizing: border-box;
}

.pm-newsletter-form {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: visible;
	grid-template-columns: minmax(0, 1fr) minmax(156px, max-content);
}

.pm-newsletter-form input,
.pm-newsletter-form button {
	min-width: 0;
	max-width: 100%;
}

.pm-newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 156px;
	min-height: 50px;
	white-space: nowrap;
	overflow: visible;
	text-overflow: clip;
	line-height: 1.1;
}

.pm-newsletter-sidebar .pm-newsletter-form,
.pm-footer-newsletter .pm-newsletter-form {
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

.pm-newsletter-sidebar .pm-newsletter-form input,
.pm-newsletter-sidebar .pm-newsletter-form button,
.pm-footer-newsletter .pm-newsletter-form input,
.pm-footer-newsletter .pm-newsletter-form button {
	width: 100%;
	border-radius: 4px;
}

@media (max-width: 1180px) {
	.pm-post-layout .pm-newsletter-posts {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.pm-post-layout .pm-newsletter-posts .pm-newsletter-form {
		grid-column: 1 / -1;
	}
}

@media (max-width: 840px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.pm-site-main {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}

	.pm-site-main > .pm-container,
	.pm-site-main > .pm-section,
	.pm-site-main > .pm-home-block,
	.pm-hero,
	.home .pm-editorial-digest,
	.home .pm-latest-strip,
	.home .pm-related-news,
	.home .pm-opinion-section,
	.home .pm-infographics,
	.home .pm-newsletter,
	.pm-newsletter-posts,
	.pm-newsletter-sidebar {
		width: calc(100% - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.pm-hero-slider,
	.pm-hero-slide,
	.pm-hero-slide.is-active {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.pm-hero-slider {
		overflow: visible;
	}

	.pm-hero-copy {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow: visible !important;
		padding: 24px 0 !important;
	}

	.pm-hero h1 {
		width: 100%;
		max-width: 100%;
		font-size: clamp(31px, 10vw, 42px) !important;
		line-height: 1.03 !important;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.pm-home-block,
	.pm-home-block > *,
	.pm-home-block .pm-section-head,
	.pm-home-block .pm-digest-grid,
	.pm-home-block .pm-latest-strip,
	.pm-home-block .pm-latest-strip-grid,
	.pm-home-block .pm-related-news-grid,
	.pm-home-block .pm-opinion-grid,
	.pm-home-block .pm-info-grid,
	.pm-home-block .pm-video-grid,
	.pm-home-block article,
	.pm-home-block a,
	.pm-home-block img,
	.pm-home-block h2,
	.pm-home-block h3,
	.pm-home-block p,
	.pm-home-block span,
	.pm-home-block time {
		max-width: 100%;
		min-width: 0;
	}

	.pm-home-block {
		overflow: visible;
	}

	.pm-home-block .pm-digest-grid,
	.pm-home-block .pm-latest-strip-grid,
	.pm-home-block .pm-related-news-grid,
	.pm-home-block .pm-opinion-grid,
	.pm-home-block .pm-info-grid,
	.pm-home-block .pm-video-grid {
		overflow: visible;
	}

	.pm-editorial-digest .pm-digest-grid,
	.pm-digest-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		width: 100%;
		max-width: 100%;
		overflow: visible;
	}

	.pm-editorial-digest .pm-digest-column,
	.pm-digest-column,
	.pm-digest-feature,
	.pm-digest-list,
	.pm-digest-opinion {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.pm-home-block img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.pm-home-block h2,
	.pm-home-block h3,
	.pm-home-block p,
	.pm-home-block span,
	.pm-home-block time,
	.pm-home-block a {
		overflow-wrap: break-word;
		word-break: normal;
	}

	.pm-home-block-mobile-cols-1 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-1 .pm-related-news-grid,
	.pm-home-block-mobile-cols-1 .pm-opinion-grid,
	.pm-home-block-mobile-cols-1 .pm-info-grid,
	.pm-home-block-mobile-cols-1 .pm-video-grid,
	.pm-home-block-cols-1 .pm-latest-strip-grid,
	.pm-home-block-cols-1 .pm-related-news-grid,
	.pm-home-block-cols-1 .pm-opinion-grid,
	.pm-home-block-cols-1 .pm-info-grid,
	.pm-home-block-cols-1 .pm-video-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.pm-home-block-mobile-cols-2 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-2 .pm-related-news-grid,
	.pm-home-block-mobile-cols-2 .pm-opinion-grid,
	.pm-home-block-mobile-cols-2 .pm-info-grid,
	.pm-home-block-mobile-cols-2 .pm-video-grid,
	.pm-home-block-cols-2 .pm-latest-strip-grid,
	.pm-home-block-cols-2 .pm-related-news-grid,
	.pm-home-block-cols-2 .pm-opinion-grid,
	.pm-home-block-cols-2 .pm-info-grid,
	.pm-home-block-cols-2 .pm-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-mobile-cols-3 .pm-video-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-video-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.pm-newsletter,
	.pm-newsletter-posts,
	.pm-newsletter-sidebar {
		grid-template-columns: minmax(0, 1fr) !important;
		padding: 18px !important;
		overflow: visible;
	}

	.pm-newsletter-form,
	.pm-newsletter-posts .pm-newsletter-form,
	.pm-newsletter-sidebar .pm-newsletter-form,
	.pm-footer-newsletter .pm-newsletter-form,
	.home .pm-newsletter .pm-newsletter-form {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 10px !important;
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.pm-newsletter-form input,
	.pm-newsletter-form button {
		width: 100%;
		border-radius: 4px !important;
	}

	.pm-newsletter-form button {
		min-width: 0;
		padding-inline: 14px;
		font-size: 13px;
	}
}

@media (max-width: 560px) {
	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-mobile-cols-3 .pm-video-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 360px) {
	.pm-home-block-mobile-cols-2 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-2 .pm-related-news-grid,
	.pm-home-block-mobile-cols-2 .pm-opinion-grid,
	.pm-home-block-mobile-cols-2 .pm-info-grid,
	.pm-home-block-mobile-cols-2 .pm-video-grid,
	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-mobile-cols-3 .pm-video-grid,
	.pm-home-block-cols-2 .pm-latest-strip-grid,
	.pm-home-block-cols-2 .pm-related-news-grid,
	.pm-home-block-cols-2 .pm-opinion-grid,
	.pm-home-block-cols-2 .pm-info-grid,
	.pm-home-block-cols-2 .pm-video-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-video-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

/* Last-mile production guards: keep newsletter CTAs and mobile grids inside the viewport. */
.pm-newsletter,
.pm-newsletter-form,
.pm-newsletter-form input,
.pm-newsletter-form button {
	box-sizing: border-box;
	min-width: 0;
}

.pm-newsletter-form,
.home .pm-newsletter .pm-newsletter-form,
.pm-newsletter-posts .pm-newsletter-form {
	display: grid;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	grid-template-columns: minmax(0, 1fr) minmax(138px, max-content);
	overflow: visible !important;
}

.pm-newsletter-form button,
.home .pm-newsletter .pm-newsletter-form button,
.pm-newsletter-posts .pm-newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 138px;
	max-width: none;
	padding-inline: 12px;
	white-space: nowrap;
	overflow: visible !important;
	text-overflow: clip;
	font-size: clamp(11px, 0.9vw, 13px);
	line-height: 1.1;
	letter-spacing: 0;
}

.pm-post-layout .pm-newsletter-posts {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
}

.pm-post-layout .pm-newsletter-posts .pm-newsletter-form {
	grid-column: 1 / -1;
}

.pm-post-sidebar .pm-newsletter,
.pm-newsletter-sidebar,
.pm-footer-newsletter {
	max-width: 100%;
	overflow: visible;
}

.pm-post-sidebar .pm-newsletter-form,
.pm-newsletter-sidebar .pm-newsletter-form,
.pm-footer-newsletter .pm-newsletter-form {
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 10px !important;
	overflow: visible !important;
}

.pm-post-sidebar .pm-newsletter-form button,
.pm-newsletter-sidebar .pm-newsletter-form button,
.pm-footer-newsletter .pm-newsletter-form button {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100%;
	padding-inline: 10px;
	font-size: 12px;
}

@media (max-width: 1180px) {
	.pm-newsletter-posts .pm-newsletter-form {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 10px !important;
	}

	.pm-newsletter-posts .pm-newsletter-form button {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100%;
	}
}

@media (max-width: 840px) {
	html,
	body,
	#page,
	.site,
	main#content,
	.pm-site-main {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden !important;
	}

	.home main#content > section,
	.home main#content > div,
	.pm-site-main > .pm-container,
	.pm-site-main > .pm-section,
	.pm-site-main > .pm-home-block,
	.pm-site-main > .pm-hero,
	.pm-site-main > .pm-editorial-digest,
	.pm-site-main > .pm-newsletter,
	.pm-post-layout,
	.pm-archive-layout {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box;
	}

	.pm-market-ticker {
		max-width: 100vw;
		overflow: hidden;
	}

	.pm-hero,
	.pm-hero-slider,
	.pm-hero-slide,
	.pm-hero-copy,
	.pm-home-block,
	.pm-home-block > *,
	.pm-digest-grid,
	.pm-digest-column,
	.pm-latest-strip-grid,
	.pm-related-news-grid,
	.pm-opinion-grid,
	.pm-info-grid,
	.pm-video-grid {
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.pm-digest-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 18px !important;
	}

	.pm-digest-mini {
		grid-template-columns: minmax(96px, 34vw) minmax(0, 1fr);
	}

	.pm-digest-mini h3 {
		font-size: clamp(17px, 5vw, 22px);
	}

	.pm-hero h1,
	.pm-hero h1 a {
		display: block;
		max-width: 100%;
		white-space: normal !important;
		overflow-wrap: break-word !important;
		word-break: normal !important;
		font-size: clamp(28px, 8.6vw, 36px) !important;
		line-height: 1.04 !important;
	}

	.pm-home-block .pm-section-head,
	.pm-home-block .pm-latest-strip,
	.pm-home-block .pm-related-news,
	.pm-home-block .pm-opinion-section,
	.pm-home-block .pm-infographics {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

@media (max-width: 430px) {
	.pm-home-block-mobile-cols-2 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-2 .pm-related-news-grid,
	.pm-home-block-mobile-cols-2 .pm-opinion-grid,
	.pm-home-block-mobile-cols-2 .pm-info-grid,
	.pm-home-block-mobile-cols-2 .pm-video-grid,
	.pm-home-block-cols-2 .pm-latest-strip-grid,
	.pm-home-block-cols-2 .pm-related-news-grid,
	.pm-home-block-cols-2 .pm-opinion-grid,
	.pm-home-block-cols-2 .pm-info-grid,
	.pm-home-block-cols-2 .pm-video-grid,
	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-mobile-cols-3 .pm-video-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card h3,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-video-card h3 {
		font-size: clamp(16px, 4.8vw, 20px) !important;
		line-height: 1.05 !important;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-latest-strip-body,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-body,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card-body,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-video-card-body {
		padding: 10px !important;
	}

	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-card-related-links,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-related-news-card p,
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-opinion-card p:not(.pm-byline),
	:is(.pm-home-block-mobile-cols-2, .pm-home-block-mobile-cols-3, .pm-home-block-cols-2, .pm-home-block-cols-3) .pm-info-card p {
		display: none !important;
	}
}

/* Mobile gutter correction: keep editorial blocks away from the screen edges. */
@media (max-width: 840px) {
	:root {
		--pm-mobile-gutter: 16px;
	}

	.home main#content > section,
	.home main#content > div,
	.pm-site-main > .pm-container,
	.pm-site-main > .pm-section,
	.pm-site-main > .pm-home-block,
	.pm-site-main > .pm-hero,
	.pm-site-main > .pm-editorial-digest,
	.pm-site-main > .pm-newsletter,
	.pm-post-layout,
	.pm-archive-layout,
	.pm-video-layout,
	.pm-guia-layout,
	.pm-dossie-layout {
		width: auto !important;
		max-width: none !important;
		margin-left: var(--pm-mobile-gutter) !important;
		margin-right: var(--pm-mobile-gutter) !important;
		box-sizing: border-box;
	}

	.pm-market-ticker,
	.pm-menu-wrap,
	.pm-topbar,
	.pm-brand-row {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.pm-home-block .pm-section-head,
	.pm-home-block .pm-latest-strip,
	.pm-home-block .pm-related-news,
	.pm-home-block .pm-opinion-section,
	.pm-home-block .pm-infographics,
	.pm-home-block .pm-videos-home {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

@media (max-width: 430px) {
	:root {
		--pm-mobile-gutter: 14px;
	}

	.pm-home-block-mobile-cols-2 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-2 .pm-related-news-grid,
	.pm-home-block-mobile-cols-2 .pm-opinion-grid,
	.pm-home-block-mobile-cols-2 .pm-info-grid,
	.pm-home-block-mobile-cols-2 .pm-video-grid,
	.pm-home-block-mobile-cols-3 .pm-latest-strip-grid,
	.pm-home-block-mobile-cols-3 .pm-related-news-grid,
	.pm-home-block-mobile-cols-3 .pm-opinion-grid,
	.pm-home-block-mobile-cols-3 .pm-info-grid,
	.pm-home-block-mobile-cols-3 .pm-video-grid,
	.pm-home-block-cols-2 .pm-latest-strip-grid,
	.pm-home-block-cols-2 .pm-related-news-grid,
	.pm-home-block-cols-2 .pm-opinion-grid,
	.pm-home-block-cols-2 .pm-info-grid,
	.pm-home-block-cols-2 .pm-video-grid,
	.pm-home-block-cols-3 .pm-latest-strip-grid,
	.pm-home-block-cols-3 .pm-related-news-grid,
	.pm-home-block-cols-3 .pm-opinion-grid,
	.pm-home-block-cols-3 .pm-info-grid,
	.pm-home-block-cols-3 .pm-video-grid {
		width: 100% !important;
		max-width: 100% !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}
}
