/*
Theme Name: Panorama G — Última Ficha
Theme URI: https://panoramag.com.br/
Author: Panorama G
Author URI: https://panoramag.com.br/
Description: Tema editorial escuro, responsivo e otimizado para notícias, inspirado na arquitetura visual do portal Última Ficha e adaptado à identidade do Panorama G.
Version: 1.0.2
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: panorama-g-ultima-ficha
*/

:root {
	--pguf-bg: #0c0c12;
	--pguf-surface: #13131d;
	--pguf-card: #1a1a28;
	--pguf-card-hover: #212133;
	--pguf-border: #262638;
	--pguf-border-light: #32324a;
	--pguf-text: #e8e8ed;
	--pguf-secondary: #a0a0b8;
	--pguf-muted: #8585a0;
	--pguf-primary: #7c3aed;
	--pguf-primary-light: #a78bfa;
	--pguf-cyan: #22d3ee;
	--pguf-container: 1280px;
	--pguf-header: 80px;
	--pguf-gap: 24px;
	--pguf-radius-sm: 6px;
	--pguf-radius-md: 10px;
	--pguf-radius-lg: 16px;
	--pguf-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
	--pguf-rainbow: linear-gradient(90deg, #ff3b30, #ffb000 24%, #23d160 48%, #22b8ff 72%, #8b5cf6);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	min-height: 100vh;
	overflow-x: clip;
	background: var(--pguf-bg);
	color: var(--pguf-text);
	font-family: Inter, "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.pguf-drawer-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

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

.screen-reader-text:focus {
	position: fixed !important;
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	border-radius: var(--pguf-radius-sm);
	background: #fff;
	color: #111;
}

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

.pguf-site-main {
	min-height: 60vh;
}

/* Header */
.pguf-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--pguf-header);
	border-top: 3px solid var(--pguf-primary);
	border-bottom: 1px solid var(--pguf-border);
	background: rgba(12, 12, 18, 0.94);
	backdrop-filter: blur(14px);
}

.admin-bar .pguf-site-header {
	top: 32px;
}

.pguf-header-inner {
	display: flex;
	align-items: center;
	height: calc(var(--pguf-header) - 3px);
	gap: 34px;
}

.pguf-header-logo {
	display: flex;
	flex: 0 0 240px;
	align-items: center;
	justify-content: center;
	height: 70px;
	overflow: hidden;
}

.pguf-header-logo img {
	width: 240px;
	height: 66px;
	object-fit: contain;
}

.pguf-primary-nav {
	min-width: 0;
	flex: 1;
}

.pguf-primary-menu,
.pguf-primary-nav .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 31px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pguf-primary-menu li,
.pguf-primary-nav .menu li {
	margin: 0;
}

.pguf-primary-menu a,
.pguf-primary-nav .menu a {
	position: relative;
	display: block;
	padding: 24px 0 22px;
	color: var(--pguf-secondary);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.pguf-primary-menu a::after,
.pguf-primary-nav .menu a::after {
	position: absolute;
	right: 0;
	bottom: 12px;
	left: 0;
	height: 2px;
	content: "";
	transform: scaleX(0);
	border-radius: 2px;
	background: var(--pguf-primary);
	transition: transform 0.2s ease;
}

.pguf-primary-menu a:hover,
.pguf-primary-menu .current-menu-item > a,
.pguf-primary-nav .menu a:hover,
.pguf-primary-nav .menu .current-menu-item > a {
	color: #fff;
}

.pguf-primary-menu a:hover::after,
.pguf-primary-menu .current-menu-item > a::after,
.pguf-primary-nav .menu a:hover::after,
.pguf-primary-nav .menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.pguf-search-toggle,
.pguf-menu-toggle {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: var(--pguf-radius-sm);
	background: transparent;
	color: var(--pguf-secondary);
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.pguf-search-toggle:hover,
.pguf-search-toggle[aria-expanded="true"],
.pguf-menu-toggle:hover {
	background: rgba(124, 58, 237, 0.12);
	color: #fff;
}

.pguf-search-toggle svg,
.pguf-search-form svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.pguf-mobile-only {
	display: none;
}

.pguf-menu-toggle {
	gap: 4px;
	align-content: center;
}

.pguf-menu-toggle span {
	display: block;
	width: 23px;
	height: 2px;
	border-radius: 3px;
	background: currentColor;
}

.pguf-search-panel {
	position: absolute;
	z-index: 3;
	top: calc(100% + 10px);
	left: 50%;
	display: flex;
	width: min(480px, calc(100vw - 32px));
	padding: 12px 44px 12px 14px;
	transform: translate(-50%, -10px);
	visibility: hidden;
	opacity: 0;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-surface);
	box-shadow: var(--pguf-shadow);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.pguf-search-panel.is-open {
	transform: translate(-50%, 0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.pguf-search-close {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 30px;
	height: 30px;
	padding: 0;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--pguf-muted);
	font-size: 1.35rem;
	cursor: pointer;
}

.pguf-search-form {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 9px;
}

.pguf-search-form svg {
	flex: 0 0 20px;
	color: var(--pguf-muted);
}

.pguf-search-form input {
	min-width: 0;
	flex: 1;
	padding: 5px 2px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 0.92rem;
}

.pguf-search-form input::placeholder {
	color: var(--pguf-muted);
}

.pguf-search-form button {
	padding: 8px 12px;
	border: 1px solid var(--pguf-primary);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-primary);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	cursor: pointer;
}

/* Drawer: fully non-interactive while closed. */
.pguf-drawer-backdrop {
	position: fixed;
	z-index: 1090;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	background: rgba(0, 0, 0, 0.68);
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pguf-drawer-backdrop.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.pguf-drawer {
	position: fixed;
	z-index: 1100;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(360px, 88vw);
	padding: 22px;
	overflow-y: auto;
	transform: translateX(-104%);
	visibility: hidden;
	border-right: 1px solid var(--pguf-border);
	background: var(--pguf-surface);
	box-shadow: 20px 0 50px rgba(0, 0, 0, 0.48);
	pointer-events: none;
	transition: transform 0.25s ease, visibility 0.25s ease;
}

.pguf-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.admin-bar .pguf-drawer {
	top: 32px;
}

.pguf-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-drawer-logo {
	display: block;
	width: 220px;
	height: 64px;
	overflow: hidden;
}

.pguf-drawer-logo img {
	width: 220px;
	height: 64px;
	object-fit: contain;
}

.pguf-drawer-close {
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--pguf-border);
	border-radius: 50%;
	background: transparent;
	color: var(--pguf-secondary);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.pguf-drawer-search {
	padding: 20px 0;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-drawer-search .pguf-search-form {
	padding: 8px 10px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-bg);
}

.pguf-drawer-search .pguf-search-form button {
	display: none;
}

.pguf-drawer-menu {
	margin: 0;
	padding: 16px 0 40px;
	list-style: none;
}

.pguf-drawer-menu li {
	margin: 0;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-drawer-menu a {
	display: block;
	padding: 15px 2px;
	color: var(--pguf-text);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.pguf-drawer-menu .sub-menu {
	margin: -5px 0 10px 14px;
	padding: 0;
	list-style: none;
}

.pguf-drawer-menu .sub-menu li {
	border: 0;
}

.pguf-drawer-menu .sub-menu a {
	padding: 8px 0;
	color: var(--pguf-secondary);
	font-size: 0.78rem;
	font-weight: 500;
}

/* Hero */
.pguf-hero {
	padding: 22px 0 30px;
}

.pguf-hero-mosaic {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.pguf-hero-card {
	position: relative;
	min-width: 0;
	height: 196px;
	overflow: hidden;
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-card);
}

.pguf-hero-card--1,
.pguf-hero-card--2 {
	grid-column: span 3;
	height: 318px;
}

.pguf-hero-card--3,
.pguf-hero-card--4,
.pguf-hero-card--5 {
	grid-column: span 2;
}

.pguf-hero-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.pguf-hero-link > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.pguf-hero-card:hover .pguf-hero-link > img {
	transform: scale(1.035);
}

.pguf-hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 26%, rgba(8, 8, 12, 0.22) 48%, rgba(8, 8, 12, 0.96) 100%);
}

.pguf-hero-copy {
	position: absolute;
	right: 20px;
	bottom: 18px;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

.pguf-eyebrow {
	display: inline-block;
	color: var(--pguf-cyan);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1.2;
	text-transform: uppercase;
}

.pguf-hero-title {
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	text-shadow: 0 2px 9px rgba(0, 0, 0, 0.8);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pguf-hero-title--large {
	font-size: clamp(1.2rem, 1.75vw, 1.5rem);
	font-weight: 700;
	line-height: 1.25;
}

.pguf-hero-excerpt {
	display: -webkit-box;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.77);
	font-size: 0.86rem;
	line-height: 1.38;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* Sections and cards */
.pguf-home-section {
	padding: 34px 0 52px;
}

.pguf-home-section--alt {
	border-block: 1px solid rgba(38, 38, 56, 0.58);
	background: #101018;
}

.pguf-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.pguf-section-heading .pguf-section-title {
	margin-bottom: 0;
}

.pguf-section-heading > a {
	flex: 0 0 auto;
	color: var(--pguf-secondary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.pguf-section-heading > a:hover {
	color: var(--pguf-primary-light);
}

.pguf-section-title {
	position: relative;
	margin: 0 0 24px;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1.25;
	text-transform: uppercase;
}

.pguf-section-title::after,
.pguf-widget-title::after {
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 10px;
	content: "";
	border-radius: 2px;
	background: var(--pguf-primary);
}

.pguf-content-layout,
.pguf-archive-layout,
.pguf-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 318px;
	align-items: start;
	gap: 38px;
}

.pguf-card-grid {
	display: grid;
	gap: var(--pguf-gap);
}

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

.pguf-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-card);
	transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.pguf-card:hover {
	transform: translateY(-3px);
	border-color: var(--pguf-border-light);
	background: var(--pguf-card-hover);
}

.pguf-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--pguf-surface);
}

.pguf-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.pguf-card:hover .pguf-card-image img {
	transform: scale(1.035);
}

.pguf-card-body {
	padding: 15px 17px 17px;
}

.pguf-card-title {
	margin: 8px 0 0;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.38;
}

.pguf-card-title a,
.pguf-popular-title,
.pguf-sidebar-row span,
.pguf-sidebar-lead span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pguf-card-title a:hover {
	color: var(--pguf-primary-light);
}

.pguf-card-excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 8px 0 0;
	color: var(--pguf-secondary);
	font-size: 0.78rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pguf-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	color: var(--pguf-muted);
	font-size: 0.68rem;
}

.pguf-card-meta time {
	margin-left: auto;
}

.pguf-home-latest .pguf-card-excerpt,
.pguf-home-latest .pguf-card-meta {
	display: none;
}

.pguf-load-more-wrap {
	display: grid;
	justify-items: center;
	margin-top: 32px;
}

.pguf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px;
	border: 1px solid var(--pguf-primary);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-primary);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pguf-button:hover {
	transform: translateY(-1px);
	background: var(--pguf-primary-light);
}

.pguf-button--outline {
	background: transparent;
	color: var(--pguf-primary-light);
}

.pguf-button:disabled {
	opacity: 0.55;
	cursor: wait;
}

.pguf-load-status {
	min-height: 1.5em;
	margin: 8px 0 0;
	color: var(--pguf-muted);
	font-size: 0.75rem;
}

/* Sidebar */
.pguf-sidebar {
	position: sticky;
	top: calc(var(--pguf-header) + 20px);
	display: grid;
	gap: 20px;
}

.admin-bar .pguf-sidebar {
	top: calc(var(--pguf-header) + 52px);
}

.pguf-widget {
	padding: 20px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-card);
}

.pguf-widget-title {
	margin: 0;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: uppercase;
}

.pguf-tab-buttons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 14px 0 12px;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-tab-buttons button {
	position: relative;
	padding: 10px 3px 12px;
	border: 0;
	background: transparent;
	color: var(--pguf-muted);
	font-size: 0.68rem;
	text-transform: uppercase;
	cursor: pointer;
}

.pguf-tab-buttons button::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	content: "";
	transform: scaleX(0);
	background: var(--pguf-primary);
	transition: transform 0.2s ease;
}

.pguf-tab-buttons button[aria-selected="true"] {
	color: var(--pguf-primary-light);
}

.pguf-tab-buttons button[aria-selected="true"]::after {
	transform: scaleX(1);
}

.pguf-tab-panel[hidden] {
	display: none;
}

.pguf-popular-list {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pguf-popular-list li {
	display: grid;
	grid-template-columns: 30px 64px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	padding: 11px 0;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-popular-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pguf-popular-rank {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: var(--pguf-radius-sm);
	background: rgba(124, 58, 237, 0.13);
	color: var(--pguf-primary-light);
	font-size: 0.72rem;
}

.pguf-popular-list li:first-child .pguf-popular-rank {
	background: var(--pguf-primary);
	color: #fff;
}

.pguf-popular-thumb {
	display: block;
	width: 64px;
	height: 48px;
	overflow: hidden;
	border-radius: 4px;
}

.pguf-popular-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pguf-popular-list .pguf-eyebrow {
	display: -webkit-box;
	margin-bottom: 3px;
	overflow: hidden;
	font-size: 0.53rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.pguf-popular-title {
	color: var(--pguf-text);
	font-size: 0.72rem;
	line-height: 1.35;
	-webkit-line-clamp: 2;
}

.pguf-popular-title:hover {
	color: var(--pguf-primary-light);
}

.pguf-empty {
	margin: 16px 0 0;
	color: var(--pguf-muted);
	font-size: 0.8rem;
}

.pguf-widget-featured {
	display: grid;
	gap: 0;
}

.pguf-widget-featured .pguf-widget-title {
	margin-bottom: 16px;
}

.pguf-sidebar-lead {
	display: block;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-sidebar-lead img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--pguf-radius-sm);
}

.pguf-sidebar-lead span {
	margin-top: 10px;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.4;
}

.pguf-sidebar-row {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--pguf-border);
}

.pguf-sidebar-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.pguf-sidebar-row img {
	width: 56px;
	height: 44px;
	object-fit: cover;
	border-radius: 4px;
}

.pguf-sidebar-row span {
	font-size: 0.72rem;
	line-height: 1.35;
	-webkit-line-clamp: 2;
}

/* Editorial rails */
.pguf-rail-section {
	padding-block: 46px 54px;
}

.pguf-rail-shell {
	position: relative;
}

.pguf-card-rail {
	display: flex;
	gap: var(--pguf-gap);
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.pguf-card-rail::-webkit-scrollbar {
	display: none;
}

.pguf-overlay-card {
	flex: 0 0 calc((100% - var(--pguf-gap) * 2) / 3);
	min-width: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	scroll-snap-align: start;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-card);
}

.pguf-overlay-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.pguf-overlay-link > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.pguf-overlay-card:hover .pguf-overlay-link > img {
	transform: scale(1.045);
}

.pguf-overlay-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 25%, rgba(9, 9, 14, 0.18) 48%, rgba(9, 9, 14, 0.96) 100%);
}

.pguf-overlay-content {
	position: absolute;
	right: 18px;
	bottom: 17px;
	left: 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.pguf-overlay-title {
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.35;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pguf-rail-arrow {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	transform: translateY(-50%);
	place-items: center;
	border: 1px solid var(--pguf-border-light);
	border-radius: 50%;
	background: rgba(19, 19, 29, 0.92);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.pguf-rail-arrow--prev {
	left: -18px;
}

.pguf-rail-arrow--next {
	right: -18px;
}

.pguf-rail-arrow:hover {
	background: var(--pguf-primary);
}

/* Archives */
.pguf-archive-hero {
	padding: 58px 0 42px;
	border-bottom: 1px solid var(--pguf-border);
	background: var(--pguf-surface);
}

.pguf-archive-hero h1 {
	position: relative;
	margin: 0;
	padding-left: 17px;
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 2.2rem);
	font-weight: 400;
	line-height: 1.2;
}

.pguf-archive-hero h1::before {
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: 0;
	width: 4px;
	content: "";
	border-radius: 2px;
	background: var(--pguf-cyan);
}

.pguf-archive-kicker {
	display: block;
	margin-bottom: 8px;
	color: var(--pguf-primary-light);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pguf-archive-description {
	max-width: 720px;
	margin: 12px 0 0 17px;
	color: var(--pguf-secondary);
	font-size: 0.9rem;
}

.pguf-archive-description p {
	margin: 0;
}

.pguf-archive-layout {
	padding-block: 32px 64px;
}

.pguf-archive-main {
	min-width: 0;
}

.pguf-archive-main .pguf-card-grid {
	gap: 24px;
}

.pguf-archive-main .pguf-card-body {
	min-height: 180px;
}

.pguf-archive-main .pguf-card-title {
	font-size: 0.98rem;
}

.navigation.pagination {
	margin-top: 38px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-card);
	color: var(--pguf-secondary);
	font-size: 0.78rem;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--pguf-primary);
	background: var(--pguf-primary);
	color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
	width: auto;
}

.pguf-empty-state {
	padding: 48px 28px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-surface);
	text-align: center;
}

.pguf-empty-state h2 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 500;
}

.pguf-empty-state p {
	margin: 0 0 24px;
	color: var(--pguf-secondary);
}

.pguf-empty-state .pguf-search-form {
	max-width: 580px;
	margin-inline: auto;
	padding: 10px 12px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-card);
}

/* Single story */
.pguf-single-header {
	max-width: 1030px;
	padding-top: 52px;
	padding-bottom: 26px;
	text-align: center;
}

.pguf-single-kicker {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 14px;
	color: var(--pguf-muted);
	font-size: 0.72rem;
}

.pguf-single-kicker a {
	padding: 5px 10px;
	border-radius: 3px;
	background: rgba(124, 58, 237, 0.12);
	color: var(--pguf-primary-light);
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.pguf-single-header h1 {
	max-width: 940px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(2rem, 3.35vw, 2.65rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.12;
	text-wrap: balance;
}

.pguf-single-deck {
	max-width: 760px;
	margin: 17px auto 0;
	color: var(--pguf-secondary);
	font-size: 1.08rem;
	font-weight: 400;
	line-height: 1.55;
	text-wrap: balance;
}

.pguf-single-byline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	color: var(--pguf-muted);
	font-size: 0.78rem;
}

.pguf-single-byline img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
}

.pguf-single-byline a {
	color: var(--pguf-secondary);
}

.pguf-single-byline a:hover {
	color: #fff;
}

.pguf-share-row {
	display: flex;
	max-width: var(--pguf-container);
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-block: 14px 24px;
	border-top: 1px solid var(--pguf-border);
}

.pguf-share-row a,
.pguf-share-row button {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--pguf-border);
	border-radius: 50%;
	background: var(--pguf-card);
	color: var(--pguf-secondary);
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pguf-share-row a:hover,
.pguf-share-row button:hover {
	border-color: var(--pguf-primary);
	background: var(--pguf-primary);
	color: #fff;
}

.pguf-single-featured {
	margin-top: 0;
	margin-bottom: 34px;
}

.pguf-single-featured img {
	width: 100%;
	height: auto;
	max-height: none;
	border-radius: var(--pguf-radius-md);
}

.pguf-single-featured figcaption {
	margin-top: 8px;
	color: var(--pguf-muted);
	font-size: 0.7rem;
}

.pguf-single-layout {
	padding-bottom: 70px;
}

.pguf-single-main {
	min-width: 0;
}

.pguf-entry-content {
	color: #d9d9e1;
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.78;
}

.pguf-entry-content > *:first-child {
	margin-top: 0;
}

.pguf-entry-content p {
	margin: 0 0 1.45em;
}

.pguf-entry-content h2,
.pguf-entry-content h3,
.pguf-entry-content h4 {
	margin: 1.75em 0 0.65em;
	color: #fff;
	font-weight: 650;
	line-height: 1.28;
}

.pguf-entry-content h2 {
	font-size: 1.55rem;
}

.pguf-entry-content h3 {
	font-size: 1.3rem;
}

.pguf-entry-content h4 {
	font-size: 1.1rem;
}

.pguf-entry-content a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(167, 139, 250, 0.45);
	text-underline-offset: 3px;
}

/*
 * Imported stories can carry blue text through inline styles, legacy <font>
 * tags or editor classes. Keep the article background dark and force every
 * textual descendant to use a readable light color.
 */
.single-post .pguf-entry-content,
.single-post .pguf-entry-content * {
	color: #e8e8ed !important;
}

.single-post .pguf-entry-content a,
.single-post .pguf-entry-content a * {
	color: #fff !important;
}

.pguf-entry-content img,
.pguf-entry-content video,
.pguf-entry-content iframe {
	max-width: 100%;
	border-radius: var(--pguf-radius-sm);
}

.pguf-entry-content img {
	height: auto;
}

.pguf-entry-content figure {
	max-width: 100%;
	margin: 2em 0;
}

.pguf-entry-content figcaption {
	margin-top: 7px;
	color: var(--pguf-muted);
	font-size: 0.72rem;
	line-height: 1.45;
}

.pguf-entry-content blockquote {
	margin: 2em 0;
	padding: 5px 0 5px 22px;
	border-left: 3px solid var(--pguf-primary);
	color: #fff;
	font-size: 1.16rem;
	font-style: italic;
}

.pguf-entry-content ul,
.pguf-entry-content ol {
	padding-left: 1.35em;
}

.pguf-entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.pguf-entry-content th,
.pguf-entry-content td {
	padding: 10px;
	border: 1px solid var(--pguf-border);
	text-align: left;
}

.pguf-author-box {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	margin-top: 44px;
	padding: 22px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-md);
	background: var(--pguf-card);
}

.pguf-author-box > img {
	width: 82px;
	height: 82px;
	border-radius: 50%;
}

.pguf-author-box span {
	color: var(--pguf-muted);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.pguf-author-box h2 {
	margin: 3px 0 5px;
	font-size: 1rem;
	font-weight: 650;
}

.pguf-author-box h2 a:hover {
	color: var(--pguf-primary-light);
}

.pguf-author-box p {
	margin: 0;
	color: var(--pguf-secondary);
	font-size: 0.78rem;
	line-height: 1.55;
}

.pguf-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 26px;
	padding-block: 24px;
	border-block: 1px solid var(--pguf-border);
}

.pguf-post-nav-item a {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pguf-post-nav-item--next {
	text-align: right;
}

.pguf-post-nav-item span {
	color: var(--pguf-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pguf-post-nav-item strong {
	display: -webkit-box;
	overflow: hidden;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pguf-post-nav-item a:hover strong {
	color: var(--pguf-primary-light);
}

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

.pguf-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.pguf-related .pguf-card-body {
	padding: 12px;
}

.pguf-related .pguf-card-title {
	font-size: 0.76rem;
}

.pguf-related .pguf-card-excerpt,
.pguf-related .pguf-card-meta {
	display: none;
}

/* Pages and 404 */
.pguf-page {
	padding-bottom: 72px;
}

.pguf-page-header {
	max-width: 900px;
	padding-top: 60px;
	padding-bottom: 30px;
	text-align: center;
}

.pguf-page-header h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 400;
	line-height: 1.18;
}

.pguf-page-content {
	width: min(calc(100% - 48px), 820px);
	margin-inline: auto;
}

.pguf-not-found {
	display: grid;
	min-height: 66vh;
	padding-block: 80px;
	place-items: center;
	align-content: center;
	text-align: center;
}

.pguf-not-found-code {
	color: var(--pguf-primary);
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 800;
	line-height: 1;
}

.pguf-not-found h1 {
	margin: 12px 0 8px;
	font-size: 2rem;
	font-weight: 450;
}

.pguf-not-found p {
	margin: 0 0 25px;
	color: var(--pguf-secondary);
}

.pguf-not-found .pguf-search-form {
	width: min(100%, 560px);
	margin-bottom: 20px;
	padding: 10px 12px;
	border: 1px solid var(--pguf-border);
	border-radius: var(--pguf-radius-sm);
	background: var(--pguf-card);
}

/* Minimal footer requested by the publication. */
.pguf-site-footer {
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 38px 24px 32px;
	border-top: 1px solid var(--pguf-border);
	background: var(--pguf-surface);
	text-align: center;
}

.pguf-footer-logo {
	display: block;
	width: 250px;
	height: 72px;
	overflow: hidden;
}

.pguf-footer-logo img {
	width: 250px;
	height: 72px;
	object-fit: contain;
}

.pguf-site-footer p {
	margin: 0;
	color: var(--pguf-muted);
	font-size: 0.72rem;
}

.pguf-back-to-top {
	position: fixed;
	z-index: 900;
	right: 24px;
	bottom: 24px;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	transform: translateY(12px);
	visibility: hidden;
	opacity: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--pguf-primary);
	box-shadow: var(--pguf-shadow);
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.pguf-back-to-top.is-visible {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

/* WordPress blocks */
.alignwide {
	width: min(1120px, calc(100vw - 48px));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

/* Tablet */
@media (max-width: 1100px) {
	:root {
		--pguf-gap: 18px;
	}

	.pguf-primary-nav {
		display: none;
	}

	.pguf-mobile-only {
		display: grid;
	}

	.pguf-header-inner {
		justify-content: space-between;
	}

	.pguf-header-logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.pguf-content-layout,
	.pguf-archive-layout,
	.pguf-single-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.pguf-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 8px;
	}

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

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

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

/* Mobile structure mirrors the compact Última Ficha cards. */
@media (max-width: 768px) {
	:root {
		--pguf-header: 74px;
		--pguf-gap: 16px;
	}

	.admin-bar .pguf-site-header {
		top: 46px;
	}

	.admin-bar .pguf-drawer {
		top: 46px;
	}

	.pguf-container {
		width: min(calc(100% - 32px), var(--pguf-container));
	}

	.pguf-header-inner {
		gap: 8px;
	}

	.pguf-header-logo {
		width: 198px;
		height: 64px;
		flex-basis: 198px;
	}

	.pguf-header-logo img {
		width: 198px;
		height: 58px;
	}

	.pguf-menu-toggle,
	.pguf-search-toggle {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.pguf-search-panel {
		top: calc(100% + 8px);
	}

	.pguf-hero {
		padding: 16px 0 28px;
	}

	.pguf-hero-mosaic {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.pguf-hero-card {
		height: auto;
		min-height: 0;
		border-radius: 0;
		border: 0;
		border-bottom: 1px solid var(--pguf-border);
		background: var(--pguf-surface);
	}

	.pguf-hero-card--1 {
		height: 230px;
		border-radius: var(--pguf-radius-md) var(--pguf-radius-md) 0 0;
	}

	.pguf-hero-card--1 .pguf-hero-link {
		display: block;
		height: 100%;
	}

	.pguf-hero-card--1 .pguf-hero-link > img {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.pguf-hero-card--1 .pguf-hero-shade {
		display: block;
	}

	.pguf-hero-card--1 .pguf-hero-copy {
		position: absolute;
		padding: 0;
	}

	.pguf-hero-card--1 .pguf-hero-title {
		font-size: 1.05rem;
	}

	.pguf-hero-card--1 .pguf-hero-excerpt {
		display: none;
	}

	.pguf-hero-card:not(.pguf-hero-card--1):last-child {
		border-bottom: 0;
		border-radius: 0 0 var(--pguf-radius-md) var(--pguf-radius-md);
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-link {
		display: grid;
		min-height: 90px;
		grid-template-columns: 116px minmax(0, 1fr);
		align-items: center;
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-link > img {
		width: 116px;
		height: 90px;
		object-fit: cover;
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-shade,
	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-excerpt {
		display: none;
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-copy {
		position: static;
		padding: 10px 13px;
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-title,
	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-hero-title--large {
		font-size: 0.84rem;
		font-weight: 600;
		line-height: 1.35;
		text-shadow: none;
		-webkit-line-clamp: 3;
	}

	.pguf-hero-card:not(.pguf-hero-card--1) .pguf-eyebrow {
		font-size: 0.55rem;
	}

	.pguf-section-title {
		font-size: 1.08rem;
	}

	.pguf-home-section {
		padding: 32px 0 42px;
	}

	.pguf-home-latest .pguf-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.pguf-home-latest .pguf-card-body {
		padding: 11px 12px 13px;
	}

	.pguf-home-latest .pguf-card-title {
		font-size: 0.82rem;
	}

	.pguf-home-latest .pguf-card:nth-child(n+7) {
		display: flex;
		grid-column: 1 / -1;
		align-items: center;
		overflow: visible;
		border-width: 0 0 1px;
		border-radius: 0;
		background: transparent;
	}

	.pguf-home-latest .pguf-card:nth-child(n+7):hover {
		transform: none;
		background: transparent;
	}

	.pguf-home-latest .pguf-card:nth-child(n+7) .pguf-card-image {
		width: 106px;
		height: 74px;
		flex: 0 0 106px;
		aspect-ratio: auto;
		border-radius: var(--pguf-radius-sm);
	}

	.pguf-home-latest .pguf-card:nth-child(n+7) .pguf-card-body {
		padding: 9px 12px;
	}

	.pguf-home-latest .pguf-card:nth-child(n+7) .pguf-card-title {
		margin-top: 5px;
	}

	.pguf-sidebar {
		grid-template-columns: minmax(0, 1fr);
	}

	.pguf-overlay-card {
		flex-basis: 82%;
	}

	.pguf-rail-arrow {
		display: none;
	}

	.pguf-archive-hero {
		padding: 40px 0 30px;
	}

	.pguf-archive-hero h1 {
		font-size: 1.75rem;
	}

	.pguf-archive-layout {
		padding-block: 26px 50px;
	}

	.pguf-archive-main .pguf-card-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pguf-archive-main .pguf-card-body {
		min-height: 0;
	}

	.pguf-single-header {
		padding-top: 36px;
		padding-bottom: 22px;
	}

	.pguf-single-header h1 {
		font-size: clamp(1.65rem, 7vw, 2rem);
		line-height: 1.16;
	}

	.pguf-single-deck {
		font-size: 0.94rem;
		line-height: 1.5;
	}

	.pguf-single-kicker,
	.pguf-single-byline {
		font-size: 0.69rem;
	}

	.pguf-single-featured {
		margin-bottom: 26px;
	}

	.pguf-single-featured img {
		border-radius: var(--pguf-radius-sm);
	}

	.pguf-entry-content {
		font-size: 1rem;
		line-height: 1.72;
	}

	.pguf-entry-content h2 {
		font-size: 1.35rem;
	}

	.pguf-entry-content h3 {
		font-size: 1.18rem;
	}

	.pguf-related-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.pguf-related .pguf-card {
		display: flex;
		align-items: center;
		border-width: 0 0 1px;
		border-radius: 0;
		background: transparent;
	}

	.pguf-related .pguf-card:hover {
		transform: none;
		background: transparent;
	}

	.pguf-related .pguf-card-image {
		width: 104px;
		height: 72px;
		flex: 0 0 104px;
		aspect-ratio: auto;
		border-radius: var(--pguf-radius-sm);
	}

	.pguf-related .pguf-card-body {
		padding: 10px 12px;
	}

	.pguf-related .pguf-card-title {
		font-size: 0.82rem;
	}

	.pguf-page-header {
		padding-top: 42px;
	}

	.pguf-page-content {
		width: min(calc(100% - 32px), 820px);
	}

	.pguf-footer-logo {
		width: 210px;
		height: 64px;
	}

	.pguf-footer-logo img {
		width: 210px;
		height: 64px;
	}
}

@media (max-width: 520px) {
	.pguf-search-panel {
		width: calc(100vw - 24px);
	}

	.pguf-card-grid--three,
	.pguf-archive-main .pguf-card-grid--three {
		grid-template-columns: minmax(0, 1fr);
	}

	.pguf-home-latest .pguf-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pguf-home-latest .pguf-card:nth-child(n+5) {
		display: flex;
		grid-column: 1 / -1;
		align-items: center;
		border-width: 0 0 1px;
		border-radius: 0;
		background: transparent;
	}

	.pguf-home-latest .pguf-card:nth-child(n+5) .pguf-card-image {
		width: 104px;
		height: 72px;
		flex: 0 0 104px;
		aspect-ratio: auto;
		border-radius: var(--pguf-radius-sm);
	}

	.pguf-home-latest .pguf-card:nth-child(n+5) .pguf-card-body {
		padding: 8px 11px;
	}

	.pguf-author-box {
		grid-template-columns: 62px minmax(0, 1fr);
		padding: 17px;
	}

	.pguf-author-box > img {
		width: 62px;
		height: 62px;
	}

	.pguf-post-navigation {
		grid-template-columns: minmax(0, 1fr);
	}

	.pguf-post-nav-item--next {
		padding-top: 18px;
		border-top: 1px solid var(--pguf-border);
		text-align: left;
	}

	.pguf-share-row {
		gap: 6px;
	}

	.pguf-share-row a,
	.pguf-share-row button {
		width: 38px;
		height: 38px;
	}

	.pguf-overlay-card {
		flex-basis: 88%;
	}
}

@media (max-width: 360px) {
	.pguf-container {
		width: min(calc(100% - 24px), var(--pguf-container));
	}

	.pguf-header-logo,
	.pguf-header-logo img {
		width: 174px;
	}

	.pguf-home-latest .pguf-card-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.pguf-home-latest .pguf-card:nth-child(n+4) {
		display: flex;
		grid-column: auto;
	}
}

@media print {
	.pguf-site-header,
	.pguf-site-footer,
	.pguf-sidebar,
	.pguf-share-row,
	.pguf-back-to-top,
	.pguf-related,
	.pguf-post-navigation {
		display: none !important;
	}

	body {
		background: #fff;
		color: #111;
	}

	.pguf-single-layout {
		display: block;
	}

	.single-post .pguf-entry-content,
	.single-post .pguf-entry-content * {
		color: #111 !important;
	}
}
