:root {
	--nexo-accent: #087ea4;
	--nexo-secondary: #f97316;
	--nexo-ink: #111827;
	--nexo-muted: #5f6b7a;
	--nexo-soft: #f3f6f8;
	--nexo-surface: #ffffff;
	--nexo-surface-2: #eef4f5;
	--nexo-line: #dde5ea;
	--nexo-green: #0f8f72;
	--nexo-red: #b42318;
	--nexo-shadow: 0 12px 32px rgba(17, 24, 39, 0.1);
	--nexo-radius: 8px;
	--nexo-shell: 1180px;
	--nexo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.nexo-theme {
	margin: 0;
	color: var(--nexo-ink);
	background: #f6f8fa;
	font-family: var(--nexo-font);
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nexo-dark {
	--nexo-ink: #eef2f7;
	--nexo-muted: #a7b1bd;
	--nexo-soft: #111827;
	--nexo-surface: #17202c;
	--nexo-surface-2: #1f2b3a;
	--nexo-line: #314155;
	--nexo-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
	background: #0b111b;
}

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

a:hover,
a:focus-visible {
	color: var(--nexo-accent);
}

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

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

button {
	cursor: pointer;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: #fff;
	background: var(--nexo-ink);
	border-radius: 6px;
}

.nexo-shell {
	width: min(100% - 32px, var(--nexo-shell));
	margin-inline: auto;
}

.nexo-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--nexo-line);
	backdrop-filter: blur(18px);
	transition: box-shadow 180ms ease, border-color 180ms ease;
}

body.nexo-dark .nexo-header {
	background: rgba(16, 24, 36, 0.94);
}

.nexo-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.nexo-utility {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--nexo-muted);
	font-size: 13px;
}

.nexo-utility__live {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.nexo-utility__live span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 999px;
}

.nexo-icon-button {
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: var(--nexo-ink);
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: 50%;
}

.nexo-masthead {
	display: grid;
	grid-template-columns: auto minmax(160px, 260px) minmax(260px, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 12px 0;
}

.nexo-menu-button {
	display: none;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 9px;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: 8px;
}

.nexo-menu-button span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 3px auto;
	background: var(--nexo-ink);
	border-radius: 2px;
}

.nexo-brand {
	min-width: 0;
}

.nexo-brand img {
	max-height: 54px;
	width: auto;
}

.nexo-brand__text {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--nexo-ink);
	font-weight: 800;
	font-size: 25px;
	line-height: 1;
}

.nexo-brand__text::before {
	content: "";
	width: 12px;
	height: 30px;
	margin-right: 10px;
	background: var(--nexo-accent);
	border-radius: 4px;
	box-shadow: 8px 5px 0 var(--nexo-secondary), 16px -2px 0 var(--nexo-green);
}

.nexo-search {
	display: grid;
	grid-template-columns: 1fr auto;
	min-height: 44px;
	overflow: hidden;
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 8px;
}

.nexo-search input {
	min-width: 0;
	padding: 0 14px;
	color: var(--nexo-ink);
	background: transparent;
	border: 0;
	outline: 0;
}

.nexo-search button {
	min-width: 86px;
	padding: 0 16px;
	color: #fff;
	background: var(--nexo-accent);
	border: 0;
}

.nexo-action-link,
.nexo-button,
.nexo-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	color: #fff;
	background: var(--nexo-ink);
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 700;
	white-space: nowrap;
}

.nexo-action-link:hover,
.nexo-button:hover,
.nexo-load-more:hover {
	color: #fff;
	background: var(--nexo-accent);
}

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

.nexo-nav__inner {
	min-height: 42px;
}

.nexo-menu,
.nexo-topic-list,
.nexo-footer-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexo-menu {
	overflow-x: auto;
	scrollbar-width: none;
}

.nexo-menu::-webkit-scrollbar,
.nexo-topic-list::-webkit-scrollbar {
	display: none;
}

.nexo-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	color: var(--nexo-ink);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
}

.nexo-menu a:hover,
.nexo-menu .current-menu-item > a {
	color: var(--nexo-accent);
	border-color: var(--nexo-accent);
}

.nexo-topics {
	background: var(--nexo-surface-2);
	border-top: 1px solid var(--nexo-line);
}

.nexo-topics__inner {
	display: flex;
	min-height: 42px;
	align-items: center;
	gap: 12px;
	overflow: hidden;
}

.nexo-topics__label {
	color: var(--nexo-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.nexo-topic-list {
	overflow-x: auto;
	scrollbar-width: none;
}

.nexo-topic-list a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	color: var(--nexo-muted);
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: 999px;
	font-size: 13px;
	white-space: nowrap;
}

.nexo-topic-list a:hover {
	color: #fff;
	background: var(--nexo-accent);
	border-color: var(--nexo-accent);
}

.nexo-breaking {
	color: #fff;
	background: #172033;
}

body.nexo-dark .nexo-breaking {
	background: #070b12;
}

.nexo-breaking__inner {
	display: flex;
	min-height: 38px;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	overflow: hidden;
}

.nexo-breaking strong {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	color: #141414;
	background: #ffe066;
	border-radius: 4px;
	font-size: 12px;
	text-transform: uppercase;
}

.nexo-breaking span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nexo-main {
	padding-bottom: 56px;
}

.nexo-hero-band {
	padding: 22px 0 18px;
	background: linear-gradient(180deg, #edf5f7 0%, #f6f8fa 100%);
	border-bottom: 1px solid var(--nexo-line);
}

body.nexo-dark .nexo-hero-band {
	background: linear-gradient(180deg, #101827 0%, #0b111b 100%);
}

.nexo-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.86fr) minmax(260px, 0.72fr);
	gap: 16px;
	align-items: stretch;
}

.nexo-hero-grid__stack {
	display: grid;
	gap: 16px;
}

.nexo-card {
	position: relative;
	display: grid;
	min-width: 0;
	overflow: hidden;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: var(--nexo-radius);
	box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nexo-card:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--nexo-accent) 40%, var(--nexo-line));
	box-shadow: var(--nexo-shadow);
}

.nexo-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--nexo-surface-2);
	aspect-ratio: 16 / 10;
}

.nexo-card__media img,
.nexo-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nexo-media-placeholder {
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.9);
	background:
		linear-gradient(135deg, rgba(8, 126, 164, 0.95), rgba(15, 143, 114, 0.86)),
		#087ea4;
	font-size: 22px;
	font-weight: 900;
}

.nexo-card__body {
	display: grid;
	align-content: start;
	gap: 9px;
	padding: 14px;
}

.nexo-kicker {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	color: #fff;
	background: var(--nexo-accent);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.nexo-card__title,
.nexo-side-panel h2,
.nexo-section-heading h2,
.nexo-article h1,
.nexo-page h1,
.nexo-archive-header h1 {
	margin: 0;
	color: var(--nexo-ink);
	line-height: 1.12;
	letter-spacing: 0;
}

.nexo-card__title {
	font-size: 18px;
}

.nexo-card__excerpt {
	margin: 0;
	color: var(--nexo-muted);
	font-size: 14px;
}

.nexo-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	color: var(--nexo-muted);
	font-size: 12px;
}

.nexo-card--lead {
	min-height: 520px;
}

.nexo-card--lead .nexo-card__media {
	aspect-ratio: auto;
	min-height: 320px;
}

.nexo-card--lead .nexo-card__body {
	padding: 18px;
}

.nexo-card--lead .nexo-card__title {
	font-size: 31px;
}

.nexo-card--lead .nexo-card__excerpt {
	font-size: 16px;
}

.nexo-card--stack {
	grid-template-columns: 42% 1fr;
	min-height: 252px;
}

.nexo-card--stack .nexo-card__media {
	aspect-ratio: auto;
	min-height: 100%;
}

.nexo-card--stack .nexo-card__title {
	font-size: 17px;
}

.nexo-live-panel,
.nexo-side-panel,
.nexo-empty-state {
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: var(--nexo-radius);
}

.nexo-live-panel {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 520px;
	overflow: hidden;
}

.nexo-live-panel__header {
	display: grid;
	gap: 4px;
	padding: 16px;
	color: #fff;
	background: #172033;
}

.nexo-live-panel__header span {
	color: #ffe066;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.nexo-live-panel__header strong {
	font-size: 21px;
	line-height: 1.08;
}

.nexo-live-list {
	display: grid;
	align-content: start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexo-live-list li {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--nexo-line);
}

.nexo-live-list a,
.nexo-live-list span {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.nexo-live-list time {
	color: var(--nexo-muted);
	font-size: 12px;
}

.nexo-ad {
	display: grid;
	gap: 8px;
	margin: 18px 0;
	padding: 10px;
	text-align: center;
	background: var(--nexo-surface);
	border: 1px dashed var(--nexo-line);
	border-radius: var(--nexo-radius);
}

.nexo-ad__label {
	color: var(--nexo-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.nexo-ad__empty {
	display: grid;
	min-height: 76px;
	place-items: center;
	color: var(--nexo-muted);
	background: var(--nexo-soft);
	border-radius: 6px;
	font-size: 13px;
}

.nexo-newsroom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 22px;
	align-items: start;
	padding-top: 10px;
}

.nexo-feed-column {
	min-width: 0;
}

.nexo-section-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 20px 0 12px;
}

.nexo-section-heading h2 {
	font-size: 22px;
}

.nexo-section-heading a {
	color: var(--nexo-accent);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.nexo-feed-grid,
.nexo-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.nexo-card--wide {
	grid-column: 1 / -1;
	grid-template-columns: minmax(260px, 45%) 1fr;
}

.nexo-card--wide .nexo-card__media {
	aspect-ratio: auto;
	min-height: 260px;
}

.nexo-card--wide .nexo-card__title {
	font-size: 25px;
}

.nexo-card--feed .nexo-card__title {
	font-size: 18px;
}

.nexo-load-more {
	width: 100%;
	margin-top: 18px;
	border-color: var(--nexo-line);
}

.nexo-load-more.is-hidden {
	display: none;
}

.nexo-side-column,
.nexo-sidebar,
.nexo-article-sidebar {
	display: grid;
	gap: 16px;
}

.nexo-side-panel {
	padding: 16px;
}

.nexo-side-panel .nexo-section-heading {
	margin-top: 0;
}

.nexo-side-panel h2 {
	margin-bottom: 12px;
	font-size: 18px;
}

.nexo-rank {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: rank;
}

.nexo-rank li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid var(--nexo-line);
	counter-increment: rank;
}

.nexo-rank li::before {
	content: counter(rank);
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: #fff;
	background: var(--nexo-secondary);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 900;
}

.nexo-rank a,
.nexo-rank span {
	font-weight: 750;
	line-height: 1.28;
}

.nexo-radar {
	display: grid;
	gap: 8px;
}

.nexo-radar span {
	display: block;
	padding: 10px 12px;
	color: var(--nexo-muted);
	background: var(--nexo-soft);
	border-radius: 6px;
	font-size: 13px;
}

.nexo-newsletter form {
	display: grid;
	gap: 8px;
}

.nexo-newsletter input {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	color: var(--nexo-ink);
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 8px;
}

.nexo-newsletter button {
	min-height: 42px;
	color: #fff;
	background: var(--nexo-accent);
	border: 0;
	border-radius: 8px;
	font-weight: 800;
}

.nexo-video-band {
	margin-top: 28px;
	padding: 28px 0 34px;
	color: #fff;
	background: #152032;
}

body.nexo-dark .nexo-video-band {
	background: #060a10;
}

.nexo-video-band .nexo-section-heading h2,
.nexo-video-band .nexo-section-heading a {
	color: #fff;
}

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

.nexo-card--video {
	background: #0e1624;
	border-color: rgba(255, 255, 255, 0.14);
}

.nexo-card--video .nexo-card__title,
.nexo-card--video .nexo-meta {
	color: #fff;
}

.nexo-card--video .nexo-card__media::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 38px;
	height: 38px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.nexo-card--video .nexo-card__media::before {
	content: "";
	position: absolute;
	z-index: 2;
	right: 24px;
	bottom: 22px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid var(--nexo-accent);
}

.nexo-category-rails {
	display: grid;
	gap: 22px;
	padding-top: 26px;
}

.nexo-columns-band {
	padding-top: 26px;
}

.nexo-columns-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: 16px;
}

.nexo-column-list {
	display: grid;
	gap: 12px;
}

.nexo-author-card {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 14px;
	padding: 14px;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: var(--nexo-radius);
}

.nexo-author-card__media {
	overflow: hidden;
	background: var(--nexo-soft);
	border-radius: 8px;
	aspect-ratio: 1 / 1;
}

.nexo-author-card__media img,
.nexo-author-card__media .nexo-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nexo-author-card h3,
.nexo-author-card p {
	margin: 0;
}

.nexo-author-card h3 {
	margin-top: 8px;
	font-size: 19px;
	line-height: 1.15;
}

.nexo-author-card p {
	margin-top: 6px;
	color: var(--nexo-muted);
	font-size: 14px;
}

.nexo-gallery-strip {
	display: grid;
	gap: 12px;
}

.nexo-gallery-card {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	background: #101827;
	border-radius: var(--nexo-radius);
}

.nexo-gallery-card a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
}

.nexo-gallery-card img,
.nexo-gallery-card .nexo-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}

.nexo-gallery-card a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.nexo-gallery-card span,
.nexo-gallery-card h3 {
	position: absolute;
	z-index: 2;
	left: 16px;
	right: 16px;
}

.nexo-gallery-card span {
	bottom: 78px;
	width: fit-content;
	padding: 4px 8px;
	background: var(--nexo-secondary);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.nexo-gallery-card h3 {
	bottom: 18px;
	margin: 0;
	font-size: 20px;
	line-height: 1.15;
}

.nexo-platform-rail {
	padding-top: 26px;
}

.nexo-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.nexo-service-panel {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 16px;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: var(--nexo-radius);
}

.nexo-service-panel h2,
.nexo-service-panel h3 {
	margin: 0;
	line-height: 1.15;
}

.nexo-service-panel h2 {
	font-size: 18px;
}

.nexo-service-panel h3 {
	font-size: 20px;
}

.nexo-poll {
	display: grid;
	gap: 10px;
}

.nexo-poll label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 10px;
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 8px;
	font-size: 14px;
}

.nexo-poll button {
	min-height: 40px;
	color: #fff;
	background: var(--nexo-accent);
	border: 0;
	border-radius: 8px;
	font-weight: 800;
}

.nexo-classified-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nexo-classified-list li {
	display: grid;
	gap: 4px;
	padding: 10px 0;
	border-bottom: 1px solid var(--nexo-line);
}

.nexo-classified-list a {
	font-weight: 800;
	line-height: 1.25;
}

.nexo-classified-list span {
	color: var(--nexo-muted);
	font-size: 13px;
}

.nexo-municipio-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nexo-municipio-list a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	padding: 0 10px;
	color: var(--nexo-ink);
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
}

.nexo-category-rail {
	min-width: 0;
}

.nexo-rail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.nexo-card--rail .nexo-card__title {
	font-size: 17px;
}

.nexo-listing {
	padding-top: 32px;
}

.nexo-archive-header {
	max-width: 760px;
	margin-bottom: 20px;
}

.nexo-archive-header h1 {
	margin-top: 10px;
	font-size: 34px;
}

.nexo-archive-description {
	color: var(--nexo-muted);
	font-size: 17px;
}

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

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.page-numbers {
	display: inline-grid;
	min-width: 38px;
	min-height: 38px;
	place-items: center;
	padding: 0 10px;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: 8px;
	font-weight: 800;
}

.page-numbers.current {
	color: #fff;
	background: var(--nexo-accent);
	border-color: var(--nexo-accent);
}

.nexo-article-main {
	padding-bottom: 0;
}

.nexo-article-hero {
	padding: 26px 0;
	background: var(--nexo-surface-2);
	border-bottom: 1px solid var(--nexo-line);
}

.nexo-article-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: 28px;
	align-items: center;
}

.nexo-article-hero__copy {
	display: grid;
	gap: 12px;
}

.nexo-article h1 {
	font-size: 43px;
}

.nexo-article-lede {
	margin: 0;
	color: var(--nexo-muted);
	font-size: 19px;
	line-height: 1.45;
}

.nexo-article-hero__media {
	overflow: hidden;
	background: var(--nexo-surface);
	border: 1px solid var(--nexo-line);
	border-radius: var(--nexo-radius);
	aspect-ratio: 16 / 10;
}

.nexo-article-hero__media img,
.nexo-media-placeholder--hero {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nexo-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 740px) 320px;
	gap: 34px;
	align-items: start;
	padding-top: 26px;
	padding-bottom: 56px;
}

.nexo-article-content {
	position: relative;
	min-width: 0;
}

.nexo-reading-progress {
	position: sticky;
	z-index: 2;
	top: 0;
	width: 0;
	height: 4px;
	margin-bottom: 16px;
	background: var(--nexo-secondary);
	border-radius: 999px;
	transition: width 120ms linear;
}

.entry-content {
	color: var(--nexo-ink);
	font-size: 18px;
	line-height: 1.75;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.2em;
}

.entry-content a {
	color: var(--nexo-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content h2,
.entry-content h3 {
	line-height: 1.2;
}

.entry-content blockquote {
	margin: 24px 0;
	padding: 18px 22px;
	background: var(--nexo-soft);
	border-left: 4px solid var(--nexo-accent);
}

.entry-content figure {
	margin-left: 0;
	margin-right: 0;
}

.entry-content figcaption {
	margin-top: 8px;
	color: var(--nexo-muted);
	font-size: 13px;
}

.nexo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.nexo-tags a {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	padding: 0 10px;
	color: var(--nexo-muted);
	background: var(--nexo-soft);
	border: 1px solid var(--nexo-line);
	border-radius: 999px;
	font-size: 13px;
}

.nexo-comments {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--nexo-line);
}

.nexo-page {
	max-width: 860px;
	padding-top: 34px;
}

.nexo-page-header h1 {
	margin-bottom: 22px;
	font-size: 38px;
}

.nexo-empty-state {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.nexo-empty-state--large {
	max-width: 720px;
	margin-top: 44px;
	text-align: center;
}

.nexo-empty-state h1,
.nexo-empty-state h2,
.nexo-empty-state p {
	margin: 0;
}

.nexo-footer {
	color: #dfe7ef;
	background: #121a28;
}

.nexo-footer__top {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
	gap: 34px;
	padding: 34px 0;
}

.nexo-footer__brand p {
	max-width: 420px;
	color: #aeb9c6;
}

.nexo-footer__channels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.nexo-footer__channels a {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	padding: 0 10px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
}

.nexo-footer .nexo-brand__text {
	color: #fff;
}

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

.nexo-footer .widget-title {
	margin-top: 0;
	color: #fff;
	font-size: 15px;
}

.nexo-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #aeb9c6;
	font-size: 13px;
}

.nexo-footer-menu {
	flex-wrap: wrap;
}

.nexo-footer-menu a {
	padding: 6px 8px;
	color: #dfe7ef;
}

.widget {
	margin: 0;
}

.widget ul {
	margin: 0;
	padding-left: 18px;
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor {
	max-width: 100%;
}

.alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

@media (max-width: 1120px) {
	.nexo-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	}

	.nexo-live-panel {
		grid-column: 1 / -1;
		min-height: auto;
	}

	.nexo-live-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nexo-live-list li {
		border-right: 1px solid var(--nexo-line);
	}

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

@media (max-width: 960px) {
	.nexo-shell {
		width: min(100% - 24px, var(--nexo-shell));
	}

	.nexo-masthead {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.nexo-menu-button {
		display: grid;
	}

	.nexo-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.nexo-nav {
		display: none;
	}

	.nexo-nav.is-open {
		display: block;
	}

	.nexo-nav.is-open .nexo-menu {
		display: grid;
		padding: 8px 0;
		overflow: visible;
	}

	.nexo-newsroom,
	.nexo-listing-layout,
	.nexo-article-layout,
	.nexo-article-hero__inner {
		grid-template-columns: 1fr;
	}

	.nexo-side-column,
	.nexo-sidebar,
	.nexo-article-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nexo-article h1 {
		font-size: 36px;
	}
}

@media (max-width: 780px) {
	.nexo-utility {
		align-items: flex-start;
		flex-direction: column;
		padding: 8px 0;
	}

	.nexo-utility__live {
		width: 100%;
		overflow-x: auto;
	}

	.nexo-hero-grid,
	.nexo-feed-grid,
	.nexo-archive-grid,
	.nexo-service-grid,
	.nexo-columns-layout,
	.nexo-rail-grid,
	.nexo-footer__top,
	.nexo-footer__widgets {
		grid-template-columns: 1fr;
	}

	.nexo-card--lead {
		min-height: auto;
	}

	.nexo-card--lead .nexo-card__media {
		min-height: 240px;
	}

	.nexo-card--lead .nexo-card__title {
		font-size: 27px;
	}

	.nexo-card--stack,
	.nexo-card--wide {
		grid-template-columns: 1fr;
	}

	.nexo-card--stack .nexo-card__media,
	.nexo-card--wide .nexo-card__media {
		aspect-ratio: 16 / 10;
		min-height: auto;
	}

	.nexo-author-card {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.nexo-live-list {
		grid-template-columns: 1fr;
	}

	.nexo-side-column,
	.nexo-sidebar,
	.nexo-article-sidebar {
		grid-template-columns: 1fr;
	}

	.nexo-video-grid {
		grid-template-columns: 1fr;
	}

	.nexo-article h1,
	.nexo-archive-header h1,
	.nexo-page-header h1 {
		font-size: 31px;
	}

	.nexo-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.nexo-masthead {
		grid-template-columns: auto 1fr;
	}

	.nexo-action-link {
		display: none;
	}

	.nexo-brand__text {
		font-size: 21px;
	}

	.nexo-search button {
		min-width: 70px;
		padding: 0 12px;
	}

	.nexo-card__body,
	.nexo-side-panel {
		padding: 13px;
	}

	.nexo-card--lead .nexo-card__title {
		font-size: 24px;
	}

	.nexo-card--wide .nexo-card__title {
		font-size: 22px;
	}

	.entry-content {
		font-size: 17px;
	}
}

/* ============================================================
   LIMPEZA VISUAL POS-ROLLBACK — remove sinais de WordPress/demo
   ============================================================ */

.widget_block .wp-block-heading,
.widget_block h2.wp-block-heading {
  font-family: var(--nexo-font-display, Inter, system-ui, sans-serif);
}

.widget_block h2.wp-block-heading:where(:not(:empty)) {
  text-transform: none;
}

/* Esconde widgets padrão que denunciam instalação WordPress crua */
.widget_archive,
.widget_categories,
.widget_meta,
.widget_recent_comments,
#block-5,
#block-6 {
  display: none !important;
}

/* Não exibir categoria genérica herdada */
a[href*="/category/uncategorized/"],
a[href*="/category/geral/"] {
  display: none !important;
}

/* Suaviza aparência de cards demo até substituição editorial real */
img[src*="/mega-portal-demo/"] {
  filter: saturate(.92) contrast(.98);
}

/* Evita títulos laterais em inglês ficarem visíveis se algum widget reaparecer */
.wp-block-heading {
  letter-spacing: -.02em;
}
