/* ==========================================================================
   YacoNews TupaHost Pro — front-end
   ========================================================================== */

:root {
	--yth-site-width: 1400px;
	--yth-body-font: Arial, Helvetica, sans-serif;
	--yth-heading-font: Georgia, "Times New Roman", serif;
	--yth-menu-font: Arial, Helvetica, sans-serif;
	--yth-body-size: 16px;
	--yth-accent: #ed1c24;
	--yth-link: #0878e8;
	--yth-text: #181818;
	--yth-muted: #66717d;
	--yth-surface: #fff;
	--yth-line: #e2e5e8;
	--yth-soft: #f3f6f9;
	--yth-header-bg: #373737;
	--yth-header-text: #fff;
	--yth-header-height: 104px;
	--yth-nav-bg: #373737;
	--yth-nav-text: #fff;
	--yth-nav-hover: #ed1c24;
	--yth-nav-size: 13px;
	--yth-mobile-bg: #252525;
	--yth-footer-bg: #373737;
	--yth-footer-text: #d7d7d7;
	--yth-footer-link: #fff;
	--yth-single-title: 50px;
	--yth-single-content: 19px;
	--yth-radius: 2px;
	--block-bg: transparent;
	--block-accent: var(--yth-accent);
	--block-title: var(--yth-accent);
}

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

html {
	width: 100%;
	max-width: none !important;
	scroll-behavior: smooth;
}

[hidden] { display: none !important; }

body {
	width: 100%;
	max-width: none !important;
	margin: 0;
	background: var(--yth-surface);
	color: var(--yth-text);
	font-family: var(--yth-body-font);
	font-size: var(--yth-body-size);
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.yth-dark-mode {
	--yth-surface: #141618;
	--yth-text: #f3f4f5;
	--yth-muted: #abb2ba;
	--yth-line: #31363b;
	--yth-soft: #202428;
	background: var(--yth-surface);
}

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

iframe { max-width: 100%; }

a {
	color: inherit;
	text-decoration: none;
	transition: color .18s ease, opacity .18s ease, background-color .18s ease;
}

a:hover { color: var(--yth-link); }

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

button { cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: inherit;
	font-family: var(--yth-heading-font);
	line-height: 1.14;
}

p { margin: 0 0 1em; }

.yth-container {
	width: calc(100% - 40px);
	max-width: var(--yth-site-width);
	margin-inline: auto;
}

.yth-site-header,
.yth-site-main,
.yth-site-footer {
	width: 100% !important;
	max-width: none !important;
}

/* Garante a largura editorial real no desktop, mesmo se CSS de plugins ou
   do tema anterior ainda estiver em cache e tentar limitar os containers. */
@media (min-width: 1440px) {
	body .yth-container {
		width: var(--yth-site-width) !important;
		max-width: calc(100vw - 40px) !important;
	}
}

.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 {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	color: #111;
}

.skip-link { position: fixed !important; }

.yth-button,
.yth-more-button {
	display: table;
	margin: 24px auto 0;
	padding: 9px 22px;
	border: 0;
	border-radius: var(--yth-radius);
	background: #6f7983;
	color: #fff;
	font-family: var(--yth-heading-font);
	font-size: 16px;
}

.yth-more-button:hover,
.yth-button:hover {
	background: var(--yth-accent);
	color: #fff;
}

.yth-category {
	display: inline-block;
	color: var(--yth-link);
	font-family: var(--yth-menu-font);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.yth-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-top: 13px;
	color: var(--yth-muted);
	font-family: var(--yth-menu-font);
	font-size: 13px;
	text-transform: uppercase;
}

.yth-post-meta.is-compact {
	margin-top: 8px;
	color: var(--yth-link);
	font-size: 11px;
	font-weight: 700;
}

.yth-image-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16/9;
	background:
		linear-gradient(135deg, transparent 48%, rgba(255,255,255,.25) 49%, rgba(255,255,255,.25) 51%, transparent 52%),
		linear-gradient(135deg, #dfe4e8, #aeb7bf);
}

.yth-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Cabeçalho */
.yth-site-header {
	position: relative;
	z-index: 40;
	background: var(--yth-header-bg);
	color: var(--yth-header-text);
}

.yth-site-header.is-sticky {
	position: sticky;
	top: 0;
	box-shadow: 0 5px 18px rgba(0,0,0,.15);
}

.admin-bar .yth-site-header.is-sticky { top: 32px; }

.yth-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: var(--yth-header-height);
}

.yth-header-left .yth-header-inner {
	grid-template-columns: auto 1fr auto;
}

.yth-header-left .yth-branding {
	justify-self: start;
	order: -1;
}

.yth-header-compact .yth-header-inner {
	min-height: 72px;
	grid-template-columns: auto 1fr auto;
}

.yth-branding { justify-self: center; }

.custom-logo-link { display: block; }
.custom-logo {
	width: auto;
	max-width: min(330px, 42vw);
	max-height: 76px;
	object-fit: contain;
}

.yth-mobile-logo { display: none; }

.yth-text-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-family: var(--yth-heading-font);
	font-size: clamp(28px, 3.2vw, 48px);
	text-shadow: 0 2px 3px rgba(0,0,0,.55);
}

.yth-text-logo:hover { color: #fff; }

.yth-text-logo span {
	display: grid;
	place-items: center;
	width: 48px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--yth-accent);
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 30px;
	font-style: italic;
}

.yth-header-tools {
	display: flex;
	align-items: center;
	gap: 16px;
}

.yth-header-tools-right { justify-self: end; }

.yth-menu-toggle,
.yth-search-toggle,
.yth-dark-toggle {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	font-size: 22px;
}

.yth-menu-toggle:hover,
.yth-search-toggle:hover,
.yth-dark-toggle:hover { background: rgba(255,255,255,.12); }

.yth-menu-icon,
.yth-menu-icon::before,
.yth-menu-icon::after {
	display: block;
	width: 17px;
	height: 2px;
	background: currentColor;
	content: "";
}

.yth-menu-icon { position: relative; }
.yth-menu-icon::before { position: absolute; top: -6px; }
.yth-menu-icon::after { position: absolute; top: 6px; }

.yth-header-date {
	font-family: var(--yth-heading-font);
	font-size: 12px;
	opacity: .78;
}

.yth-main-navigation {
	background: var(--yth-nav-bg);
	color: var(--yth-nav-text);
	border-top: 1px solid rgba(255,255,255,.08);
}

.yth-nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	min-height: 42px;
}

.yth-primary-menu,
.yth-primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yth-primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.2vw, 34px);
	font-family: var(--yth-menu-font);
	font-size: var(--yth-nav-size);
	font-weight: 600;
	letter-spacing: .12em;
}

.yth-primary-menu > li { position: relative; }
.yth-primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 42px;
	color: var(--yth-nav-text);
}

.yth-primary-menu > li:hover > a,
.yth-primary-menu > .current-menu-item > a,
.yth-primary-menu > .current-menu-ancestor > a { color: var(--yth-nav-hover); }

.yth-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -16px;
	z-index: 25;
	display: none;
	min-width: 220px;
	padding: 8px;
	background: var(--yth-nav-bg);
	box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.yth-primary-menu li:hover > .sub-menu,
.yth-primary-menu li:focus-within > .sub-menu { display: block; }

.yth-primary-menu .sub-menu a {
	display: block;
	padding: 9px 10px;
	color: var(--yth-nav-text);
	letter-spacing: 0;
	text-transform: none;
}

.yth-social-links {
	display: flex;
	align-items: center;
	gap: 9px;
}

.yth-social-links a {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	color: currentColor;
	font-family: Arial, sans-serif;
	font-size: 13px;
}

.yth-social-links a:hover {
	background: rgba(255,255,255,.12);
	color: var(--yth-nav-hover);
}

.yth-search-panel {
	padding: 14px 0;
	background: var(--yth-header-bg);
	border-top: 1px solid rgba(255,255,255,.12);
}

.yth-search-form {
	display: flex;
	gap: 8px;
	width: min(100%, 720px);
	margin-inline: auto;
}

.yth-search-form label { flex: 1; }

.yth-search-form input {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid var(--yth-line);
	background: #fff;
	color: #111;
}

.yth-search-form button {
	min-width: 110px;
	border: 0;
	background: var(--yth-accent);
	color: #fff;
	font-weight: 700;
}

.yth-mobile-panel {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: block;
	width: min(88vw, 380px);
	height: 100vh;
	padding: 18px;
	overflow-y: auto;
	background: var(--yth-mobile-bg);
	color: #fff;
	box-shadow: 10px 0 30px rgba(0,0,0,.35);
	transform: translateX(-105%);
	transition: transform .22s ease;
}
.yth-mobile-panel.is-open { transform: translateX(0); }
.yth-mobile-overlay {
	position: fixed;
	z-index: 999;
	inset: 0;
	display: block;
	background: rgba(0,0,0,.55);
}
.yth-mobile-panel__top { display: flex; align-items: center; justify-content: space-between; }
.yth-mobile-close { border: 0; background: transparent; color: #fff; font-size: 32px; }
.yth-mobile-menu,
.yth-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.yth-mobile-menu { margin-top: 18px; }
.yth-mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
.yth-mobile-menu .sub-menu { padding-left: 18px; }
.yth-social-mobile { margin-top: 24px; }

.yth-ad {
	display: grid;
	place-items: center;
	max-width: 100%;
	overflow: hidden;
	text-align: center;
}

.yth-header-ad { margin-top: 6px; margin-bottom: 8px; }
.yth-header-ad img,
.yth-after-hero-ad img,
.yth-builder-ad img { margin-inline: auto; }

/* Capa */
.yth-home { padding: 0 0 54px; }

.yth-home-block {
	--block-bg: transparent;
	--block-accent: var(--yth-accent);
	--block-title: var(--yth-accent);
	margin-top: 30px;
	padding: 0;
	background: var(--block-bg);
}


.yth-after-block-banner {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 0;
	margin: 30px auto 6px;
	text-align: center;
	overflow: hidden;
}

.yth-after-block-banner:empty { display: none; }
.yth-after-block-banner > * { max-width: 100%; }
.yth-after-block-banner img { margin-inline: auto; }
.yth-after-block-banner iframe { max-width: 100%; }

.yth-section-heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
}

.yth-section-heading h2,
.yth-section-heading h3 {
	flex: 0 0 auto;
	color: var(--block-title);
	font-family: var(--yth-body-font);
	font-size: 21px;
	font-weight: 800;
}

.yth-section-heading span {
	flex: 1;
	height: 2px;
	background: var(--yth-line);
}

/* Ticker */
.yth-block-ticker { margin-top: 6px; }

.yth-news-ticker {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(237,28,36,.35);
}

.yth-ticker-item {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 10px;
	align-items: center;
	min-width: 0;
	padding: 8px;
	border-right: 1px solid var(--yth-line);
}

.yth-ticker-item:last-child { border-right: 0; }
.yth-ticker-image { width: 64px; height: 50px; overflow: hidden; }
.yth-ticker-item h2 {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* Hero */
.yth-hero-grid {
	display: grid;
	grid-template-columns: minmax(210px, .75fr) minmax(0, 1.75fr) minmax(230px, .8fr);
	gap: 26px;
	align-items: stretch;
}

.yth-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.yth-hero-copy h1 {
	margin-top: 11px;
	font-size: clamp(27px, 2.55vw, 43px);
	line-height: 1.13;
}

.yth-hero-copy p {
	margin-top: 19px;
	font-size: 15px;
	line-height: 1.65;
}

.yth-hero-image {
	overflow: hidden;
	min-height: 360px;
	background: var(--yth-soft);
}

.yth-hero-image img { min-height: 100%; }

.yth-hero-side {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.yth-hero-side-main {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--yth-line);
}

.yth-hero-side-main > a {
	display: block;
	height: 155px;
	overflow: hidden;
}

.yth-hero-side-main h2 {
	margin-top: 10px;
	font-size: 19px;
}

.yth-hero-side-main p {
	margin-top: 9px;
	font-size: 13px;
}

.yth-mini-row {
	display: grid;
	grid-template-columns: 1fr 68px;
	gap: 9px;
	align-items: center;
	padding-bottom: 9px;
	border-bottom: 1px solid var(--yth-line);
}

.yth-mini-row > a { width: 68px; height: 54px; overflow: hidden; }
.yth-mini-row h3 { margin-top: 3px; font-size: 14px; }

.yth-more-highlights {
	margin-top: 18px;
	padding-top: 9px;
	border-top: 4px solid var(--yth-accent);
}

.yth-more-highlights > strong {
	display: block;
	margin-bottom: 9px;
	font-family: var(--yth-heading-font);
	font-size: 14px;
}

.yth-more-highlights-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.yth-more-highlights-grid article {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 10px;
	min-width: 0;
}

.yth-more-highlights-grid article > a {
	width: 90px;
	height: 63px;
	overflow: hidden;
}

.yth-more-highlights-grid h3 {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.yth-more-highlights-grid time {
	display: block;
	margin-top: 7px;
	color: var(--yth-link);
	font-family: var(--yth-menu-font);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Polícia — composição editorial dedicada */
.yth-police-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) minmax(270px, .84fr);
	align-items: start;
	border-top: 1px solid var(--yth-line);
	border-left: 1px solid var(--yth-line);
}

.yth-police-column {
	min-width: 0;
	padding: 18px;
	border-right: 1px solid var(--yth-line);
}

.yth-police-feature > a {
	display: block;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.yth-police-feature h3 {
	margin-top: 12px;
	font-size: 24px;
}

.yth-police-feature .yth-category { margin-top: 9px; }
.yth-police-feature p { margin-top: 11px; font-size: 14px; }

.yth-police-compact {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: center;
	padding: 15px 0;
	border-top: 1px solid var(--yth-line);
}

.yth-police-compact.has-thumb { grid-template-columns: minmax(0, 1fr) 96px; }
.yth-police-compact > a { width: 96px; height: 70px; overflow: hidden; }
.yth-police-compact h4 { font-size: 16px; }
.yth-police-compact p { margin-top: 7px; margin-bottom: 0; font-size: 13px; }

.yth-police-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 16px;
}

.yth-police-card-grid article > a {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.yth-police-card-grid h4 { margin-top: 9px; font-size: 16px; }
.yth-police-card-grid p { margin-top: 8px; font-size: 13px; }

.yth-police-split-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 14px;
	border-top: 1px solid var(--yth-line);
	border-bottom: 1px solid var(--yth-line);
}

.yth-police-split-list article { padding: 14px; }
.yth-police-split-list article + article { border-left: 1px solid var(--yth-line); }
.yth-police-split-list h4 { font-size: 16px; }

.yth-police-column-rail .yth-police-feature h3 { font-size: 19px; }
.yth-police-column-rail .yth-police-feature p { font-size: 13px; }
.yth-police-column-rail .yth-police-compact.has-thumb { grid-template-columns: minmax(0, 1fr) 76px; }
.yth-police-column-rail .yth-police-compact > a { width: 76px; height: 58px; }
.yth-police-column-rail .yth-police-compact h4 { font-size: 15px; }
.yth-police-column-rail .yth-police-compact p { display: none; }

/* Duplo */
.yth-double-feature {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
}

.yth-double-main > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-double-main h3 { margin-top: 12px; font-size: 25px; }
.yth-double-main p { margin-top: 13px; }

.yth-double-list { margin-top: 18px; }
.yth-double-list article {
	display: grid;
	grid-template-columns: 118px 1fr;
	gap: 16px;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid var(--yth-line);
}

.yth-double-list article > a { width: 118px; height: 76px; overflow: hidden; }
.yth-double-list h4 { font-size: 16px; }
.yth-double-list time {
	display: block;
	margin-top: 9px;
	color: var(--yth-link);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

/* Vídeo */
.yth-video-layout {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(250px, 1.15fr);
	min-height: 500px;
	background: #282828;
	color: #fff;
}

.yth-video-main {
	display: grid;
	place-items: center;
	min-width: 0;
	background: #080808;
}

.yth-responsive-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.yth-responsive-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.yth-video-placeholder {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
}

.yth-video-placeholder span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 88px;
	height: 62px;
	border-radius: 16px;
	background: #ff0033;
	color: #fff;
	font-size: 33px;
	transform: translate(-50%, -50%);
}

.yth-video-empty { padding: 40px; text-align: center; }

.yth-video-playlist {
	max-height: 500px;
	overflow-y: auto;
	padding: 14px;
}

.yth-video-playlist article {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.yth-video-playlist article > a { width: 90px; height: 58px; overflow: hidden; }
.yth-video-playlist h3 { font-size: 15px; }

/* Política */
.yth-block-feature_grid {
	margin-inline: calc(50% - 50vw);
	padding: 20px max(18px, calc((100vw - var(--yth-site-width)) / 2));
	background: #f1f6fa;
}

.yth-feature-grid-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr);
	gap: 32px;
}

.yth-feature-grid-main {
	position: relative;
	min-height: 530px;
	overflow: hidden;
}

.yth-feature-grid-main > a,
.yth-feature-grid-main img { height: 100%; }

.yth-feature-grid-main::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgba(0,0,0,.88));
	content: "";
	pointer-events: none;
}

.yth-feature-grid-overlay {
	position: absolute;
	z-index: 2;
	right: 24px;
	bottom: 24px;
	left: 24px;
	color: #fff;
}

.yth-feature-grid-overlay .yth-category {
	padding: 5px 10px;
	background: var(--yth-accent);
	color: #fff;
}

.yth-feature-grid-overlay h3 {
	margin-top: 14px;
	font-size: clamp(27px, 3vw, 42px);
}

.yth-feature-grid-overlay .yth-post-meta { color: #fff; }

.yth-feature-grid-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
}

.yth-feature-grid-list article > a { display: block; aspect-ratio: 16/10; overflow: hidden; }
.yth-feature-grid-list h3 { margin-top: 11px; font-size: 21px; text-align: center; }

/* Grade 4 */
.yth-grid-four {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px 30px;
}

.yth-grid-four article > a { display: block; aspect-ratio: 16/10; overflow: hidden; }
.yth-grid-four h3 { margin-top: 13px; font-size: 20px; }
.yth-grid-four p { margin-top: 14px; font-size: 14px; line-height: 1.65; }

/* Geral + rank */
.yth-general-rank {
	display: grid;
	grid-template-columns: minmax(0, 2.05fr) minmax(210px, .78fr) minmax(300px, 1fr);
	gap: 30px;
	align-items: start;
}

.yth-general-feature > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-general-feature h3 { margin-top: 14px; font-size: 28px; }
.yth-general-feature .yth-category { margin-top: 9px; }
.yth-general-feature p { margin-top: 12px; }

.yth-general-small-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.yth-general-small-grid article > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-general-small-grid h4 { margin-top: 8px; font-size: 15px; }
.yth-general-small-grid .yth-category { margin-top: 8px; }

.yth-general-center {
	padding: 10px;
	border: 1px solid rgba(8,120,232,.35);
}

.yth-general-center article { padding-bottom: 16px; text-align: center; }
.yth-general-center article + article { padding-top: 16px; border-top: 1px solid var(--yth-line); }
.yth-general-center article > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-general-center .yth-category { margin-top: 12px; }
.yth-general-center h3 { margin-top: 7px; font-size: 16px; }

.yth-most-read .yth-section-heading { margin-bottom: 12px; }
.yth-most-read ol {
	counter-reset: mostread;
	list-style: none;
	margin: 0;
	padding: 0;
}

.yth-most-read li {
	counter-increment: mostread;
	display: grid;
	grid-template-columns: 1fr;
	padding-bottom: 20px;
}

.yth-most-read li::before {
	position: absolute;
	content: counter(mostread) ".";
	color: var(--yth-link);
	font-family: var(--yth-heading-font);
	font-size: 24px;
	font-weight: 700;
}

.yth-most-read li > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-most-read li > div { position: relative; padding: 10px 0 0 32px; }
.yth-most-read h4 { font-size: 17px; }
.yth-most-read .yth-category { margin-top: 8px; }
.yth-most-read p { margin-top: 9px; margin-bottom: 0; font-size: 14px; }

/* Regional */
.yth-region-panel {
	padding: 22px;
	background:
		radial-gradient(circle at 80% 0, rgba(0,0,0,.25), transparent 42%),
		linear-gradient(145deg, #131636, #ff1d2c);
	color: #fff;
}

.yth-region-main {
	display: grid;
	grid-template-columns: minmax(250px, .85fr) minmax(0, 1.65fr);
	gap: 26px;
	align-items: center;
}

.yth-region-main > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-region-main .yth-category {
	padding: 5px 10px;
	background: var(--yth-accent);
	color: #fff;
}

.yth-region-main h3 { margin-top: 14px; font-size: 29px; }
.yth-region-main time {
	display: block;
	margin-top: 20px;
	font-size: 12px;
	text-transform: uppercase;
	opacity: .75;
}

.yth-region-main p { margin-top: 18px; color: rgba(255,255,255,.84); }

.yth-region-bottom {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.28);
}

.yth-region-bottom article {
	display: grid;
	grid-template-columns: 1fr 110px;
	gap: 14px;
	align-items: center;
}

.yth-region-bottom article > a { width: 110px; height: 72px; overflow: hidden; }
.yth-region-bottom h4 { font-size: 16px; }

/* Entretenimento */
.yth-entertainment-layout {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(210px, .95fr);
	gap: 26px;
}

.yth-ent-feature > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-ent-feature h3 { margin-top: 13px; font-size: 28px; }
.yth-ent-feature .yth-category { margin-top: 8px; }
.yth-ent-feature p { margin-top: 12px; }

.yth-ent-small-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 20px;
}

.yth-ent-small-grid article > a { display: block; aspect-ratio: 16/10; overflow: hidden; }
.yth-ent-small-grid h4 { margin-top: 9px; font-size: 16px; }
.yth-ent-small-grid .yth-category { margin-top: 8px; }
.yth-ent-small-grid p { margin-top: 9px; font-size: 13px; }

.yth-ent-list { margin-top: 20px; }
.yth-ent-list article {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 16px;
	padding: 13px 0;
	border-top: 1px solid var(--yth-line);
}
.yth-ent-list article > a { width: 150px; height: 95px; overflow: hidden; }
.yth-ent-list h4 { font-size: 16px; }
.yth-ent-list p { margin-top: 8px; font-size: 14px; }

.yth-ent-rail {
	padding: 15px;
	border: 1px solid rgba(8,120,232,.35);
}

.yth-ent-rail article { text-align: center; }
.yth-ent-rail article + article { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--yth-line); }
.yth-ent-rail article > a {
	display: block;
	width: 110px;
	aspect-ratio: 1;
	margin-inline: auto;
	overflow: hidden;
	border-radius: 50%;
}
.yth-ent-rail h4 { margin-top: 10px; font-size: 16px; }


/* Evita alturas herdadas do SmartMag/Elementor nos cards da capa. */
.yth-police-layout { align-items: start; }
.yth-police-column,
.yth-police-feature,
.yth-police-compact,
.yth-general-feature,
.yth-general-center article,
.yth-general-small-grid article,
.yth-ent-feature,
.yth-ent-small-grid article,
.yth-ent-list article {
	height: auto !important;
	min-height: 0 !important;
	justify-content: initial !important;
}
.yth-police-feature {
	display: block !important;
	position: static !important;
}
.yth-police-feature p,
.yth-general-feature p,
.yth-ent-feature p {
	position: static !important;
	inset: auto !important;
}

/* Playlist automática do YouTube */
.yth-video-layout.has-youtube-feed { min-height: 560px; }
.yth-video-layout.has-youtube-feed .yth-video-main,
.yth-video-layout.has-youtube-feed .yth-responsive-embed { height: 100%; }
.yth-video-layout.has-youtube-feed .yth-responsive-embed { min-height: 560px; aspect-ratio: auto; }
.yth-video-layout.has-youtube-feed .yth-video-playlist { max-height: 560px; }
.yth-youtube-select,
.yth-youtube-title {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
}
.yth-youtube-select {
	display: block;
	width: 90px;
	height: 58px;
	overflow: hidden;
}
.yth-youtube-select img { width: 100%; height: 100%; object-fit: cover; }
.yth-youtube-title { line-height: 1.25; }
.yth-video-playlist article.is-active {
	background: rgba(255,255,255,.08);
	box-shadow: inset 3px 0 0 var(--yth-accent);
}
.yth-video-playlist article.is-active .yth-youtube-title { color: #fff; }

/* Horizontal 5 */
.yth-block-horizontal_5 {
	padding: 14px;
	background: #eff5f9;
}

.yth-horizontal-five {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yth-horizontal-five article {
	padding: 0 14px 14px;
	border-right: 1px solid rgba(0,0,0,.08);
}

.yth-horizontal-five article:last-child { border-right: 0; }
.yth-horizontal-five article > a { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-horizontal-five h3 { margin-top: 10px; font-size: 15px; }
.yth-horizontal-five p { margin-top: 10px; margin-bottom: 0; font-size: 12px; line-height: 1.55; }

/* Loops e arquivo */
.yth-site-main:not(.yth-home) { padding-block: 38px 60px; }

.yth-content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 42px;
	align-items: start;
}

.yth-archive-header {
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--yth-line);
}

.yth-archive-header h1 { font-size: clamp(32px, 4vw, 52px); }
.yth-archive-description { margin-top: 12px; color: var(--yth-muted); }

.yth-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px 26px;
}

.yth-card-media { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-card-body { padding-top: 12px; }
.yth-card-title { margin-top: 7px; font-size: 23px; }
.yth-card-excerpt { margin-top: 11px; font-size: 14px; }

.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--yth-line);
}
.page-numbers.current { background: var(--yth-accent); color: #fff; border-color: var(--yth-accent); }

/* Single */
.yth-single-layout { display: grid; gap: 44px; align-items: start; }
.yth-single-sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
.yth-single-wide { grid-template-columns: minmax(0, 980px); justify-content: center; }
.yth-single-full { grid-template-columns: 1fr; }

.yth-article-header { max-width: 980px; margin-inline: auto; }
.yth-article-title {
	margin-top: 12px;
	font-size: clamp(36px, 5vw, var(--yth-single-title));
	line-height: 1.06;
	letter-spacing: -.025em;
}

.yth-article-subtitle {
	margin-top: 18px;
	color: var(--yth-muted);
	font-family: var(--yth-body-font);
	font-size: clamp(20px, 2.3vw, 28px);
	font-weight: 400;
	line-height: 1.42;
}

.yth-share-slot {
	min-height: 18px;
	max-width: 980px;
	margin: 22px auto 0;
}

.yth-featured-image {
	max-width: 1200px;
	margin: 26px auto 0;
}

.yth-featured-image img { width: 100%; max-height: 720px; object-fit: cover; }
.yth-featured-image figcaption { margin-top: 8px; color: var(--yth-muted); font-size: 12px; }

.yth-entry-content {
	max-width: 820px;
	margin: 32px auto 0;
	font-size: var(--yth-single-content);
	line-height: 1.78;
}

.yth-entry-content > * { max-width: 100%; }
.yth-entry-content h2 { margin: 1.6em 0 .65em; font-size: 1.65em; }
.yth-entry-content h3 { margin: 1.45em 0 .6em; font-size: 1.35em; }
.yth-entry-content a { color: var(--yth-link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.yth-entry-content blockquote {
	margin: 1.6em 0;
	padding: 18px 22px;
	border-left: 5px solid var(--yth-accent);
	background: var(--yth-soft);
	font-family: var(--yth-heading-font);
	font-size: 1.13em;
}
.yth-entry-content figure { margin: 1.6em 0; }
.yth-entry-content figcaption { color: var(--yth-muted); font-size: 12px; }
.yth-entry-content table { width: 100%; border-collapse: collapse; }
.yth-entry-content th,
.yth-entry-content td { padding: 10px; border: 1px solid var(--yth-line); }

.yth-article-footer {
	max-width: 820px;
	margin: 28px auto 0;
	padding-top: 20px;
	border-top: 1px solid var(--yth-line);
}

.yth-tags { font-size: 13px; }
.yth-tags a { color: var(--yth-link); }

.yth-breadcrumbs {
	max-width: 980px;
	margin: 0 auto 20px;
	color: var(--yth-muted);
	font-size: 12px;
}

.yth-related {
	max-width: 980px;
	margin: 46px auto 0;
}

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

.yth-related-image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.yth-related h3 { margin-top: 9px; font-size: 16px; }

.yth-comments {
	max-width: 820px;
	margin: 46px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--yth-line);
}

/* Sidebar / widgets */
.yth-sidebar {
	position: sticky;
	top: 84px;
	min-width: 0;
}

.yth-widget + .yth-widget { margin-top: 28px; }
.yth-widget .widget-title {
	margin-bottom: 14px;
	padding-bottom: 9px;
	border-bottom: 3px solid var(--yth-accent);
	font-family: var(--yth-body-font);
	font-size: 19px;
}
.yth-widget ul { list-style: none; margin: 0; padding: 0; }
.yth-widget li { padding: 9px 0; border-bottom: 1px solid var(--yth-line); }

/* Páginas e 404 */
.yth-page-layout,
.yth-page-entry { max-width: 980px; }
.yth-page-header h1 { font-size: clamp(36px, 5vw, 58px); }
.yth-full-width-page { padding: 0; }
.yth-full-width-page .entry-content { max-width: none; }

.yth-error-page { max-width: 760px; text-align: center; }
.yth-error-code { margin: 0; color: var(--yth-accent); font-size: clamp(84px, 15vw, 170px); font-weight: 900; line-height: 1; }
.yth-error-page h1 { font-size: 42px; }
.yth-error-page > p:not(.yth-error-code) { margin-top: 16px; color: var(--yth-muted); }
.yth-error-page .yth-search-form { margin-top: 24px; }

/* Rodapé */
.yth-site-footer {
	margin-top: 0;
	background: var(--yth-footer-bg);
	color: var(--yth-footer-text);
}

.yth-footer-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding-block: 28px 18px;
}

.yth-footer-logo img { max-width: 220px; max-height: 70px; object-fit: contain; }
.yth-footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}
.yth-footer-menu a,
.yth-site-footer a { color: var(--yth-footer-link); }

.yth-footer-widgets {
	display: grid;
	gap: 28px;
	padding-block: 24px;
	border-top: 1px solid rgba(255,255,255,.12);
}
.yth-footer-cols-1 { grid-template-columns: 1fr; }
.yth-footer-cols-2 { grid-template-columns: repeat(2, 1fr); }
.yth-footer-cols-3 { grid-template-columns: repeat(3, 1fr); }
.yth-footer-cols-4 { grid-template-columns: repeat(4, 1fr); }

.yth-footer-widget .widget-title { margin-bottom: 12px; color: #fff; font-family: var(--yth-body-font); font-size: 17px; }
.yth-footer-widget ul { list-style: none; margin: 0; padding: 0; }
.yth-footer-widget li { margin-bottom: 7px; }

.yth-footer-custom { padding-block: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.yth-footer-bottom {
	padding-block: 17px;
	border-top: 1px solid rgba(255,255,255,.12);
	text-align: center;
	font-size: 11px;
}
.yth-footer-bottom p { margin: 3px 0; }
.yth-tupahost-credit a { font-weight: 700; }

/* Elementor */
.yth-elementor-canvas { margin: 0; }
.elementor-page .yth-page-layout { max-width: none; width: 100%; padding: 0; }
.elementor-page .yth-page-header { display: none; }

/* Responsivo */
@media (max-width: 1150px) {
	.yth-police-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.yth-police-column-rail { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
	.yth-police-column-rail .yth-police-feature { grid-row: span 2; }
	.yth-hero-grid { grid-template-columns: minmax(190px, .7fr) minmax(0, 1.45fr); }
	.yth-hero-side { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr repeat(2, 1fr); }
	.yth-hero-side-main { grid-row: span 2; }
	.yth-more-highlights-grid { grid-template-columns: repeat(3, 1fr); }
	.yth-feature-grid-layout { grid-template-columns: 1fr; }
	.yth-feature-grid-main { min-height: 520px; }
	.yth-general-rank { grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr); }
	.yth-general-center { grid-row: 2; }
	.yth-most-read { grid-row: span 2; }
	.yth-horizontal-five { grid-template-columns: repeat(3, 1fr); gap: 22px 0; }
	.yth-horizontal-five article:nth-child(3n) { border-right: 0; }
}

@media (max-width: 900px) {
	.admin-bar .yth-site-header.is-sticky { top: 46px; }
	.yth-header-inner { min-height: 74px; }
	.yth-header-date,
	.yth-main-navigation { display: none; }
	.yth-header-tools-right { justify-self: end; }
	.yth-header-tools-left { justify-self: start; }
	.yth-mobile-logo + .custom-logo-link { display: none; }
	.yth-mobile-logo { display: block; }
	.yth-mobile-logo img { max-width: 220px; max-height: 56px; }
	.custom-logo { max-width: 230px; max-height: 58px; }
	.yth-text-logo { font-size: 30px; }
	.yth-text-logo span { width: 40px; font-size: 24px; }

	.yth-mobile-panel {
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
		display: block;
		width: min(88vw, 380px);
		height: 100vh;
		padding: 18px;
		overflow-y: auto;
		background: var(--yth-mobile-bg);
		color: #fff;
		box-shadow: 10px 0 30px rgba(0,0,0,.35);
		transform: translateX(-105%);
		transition: transform .22s ease;
	}
	.yth-mobile-panel.is-open { transform: translateX(0); }
	.yth-mobile-overlay {
		position: fixed;
		z-index: 999;
		inset: 0;
		display: block;
		background: rgba(0,0,0,.55);
	}
	.yth-mobile-panel__top { display: flex; align-items: center; justify-content: space-between; }
	.yth-mobile-close { border: 0; background: transparent; color: #fff; font-size: 32px; }
	.yth-mobile-menu,
	.yth-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
	.yth-mobile-menu { margin-top: 18px; }
	.yth-mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
	.yth-mobile-menu .sub-menu { padding-left: 18px; }
	.yth-social-mobile { margin-top: 24px; }

	.yth-news-ticker { grid-template-columns: repeat(2, 1fr); }
	.yth-ticker-item:nth-child(2) { border-right: 0; }

	.yth-hero-grid { grid-template-columns: 1fr; }
	.yth-hero-copy { order: 2; }
	.yth-hero-image { order: 1; min-height: 430px; }
	.yth-hero-side { order: 3; grid-column: auto; grid-template-columns: repeat(2, 1fr); }
	.yth-hero-side-main { grid-column: span 2; grid-row: auto; }
	.yth-more-highlights-grid { grid-template-columns: repeat(2, 1fr); }

	.yth-police-layout { grid-template-columns: 1fr; border-bottom: 1px solid var(--yth-line); }
	.yth-police-column-rail { grid-column: auto; display: block; }
	.yth-police-column { border-bottom: 1px solid var(--yth-line); }
	.yth-double-feature { grid-template-columns: 1fr; }
	.yth-video-layout { grid-template-columns: 1fr; }
	.yth-video-playlist { display: grid; grid-template-columns: repeat(2, 1fr); max-height: none; }
	.yth-feature-grid-list { grid-template-columns: repeat(2, 1fr); }
	.yth-grid-four { grid-template-columns: repeat(2, 1fr); }
	.yth-general-rank { grid-template-columns: 1fr; }
	.yth-most-read,
	.yth-general-center { grid-row: auto; }
	.yth-most-read ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.yth-region-main { grid-template-columns: 1fr; }
	.yth-region-bottom { grid-template-columns: 1fr; }
	.yth-entertainment-layout { grid-template-columns: 1fr; }
	.yth-ent-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
	.yth-ent-rail article + article { margin: 0; padding: 0; border: 0; }
	.yth-ent-rail article > a { width: 86px; }
	.yth-content-with-sidebar,
	.yth-single-sidebar { grid-template-columns: 1fr; }
	.yth-sidebar { position: static; }
	.yth-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
	.yth-police-card-grid,
	.yth-police-split-list { grid-template-columns: 1fr; }
	.yth-police-split-list article + article { border-left: 0; border-top: 1px solid var(--yth-line); }
	.yth-container { width: min(calc(100% - 24px), var(--yth-site-width)); }
	.yth-home-block { margin-top: 25px; }
	.yth-section-heading h2,
	.yth-section-heading h3 { font-size: 19px; }

	.yth-header-inner { grid-template-columns: 42px 1fr 42px; }
	.yth-header-tools { gap: 0; }
	.yth-dark-toggle { display: none; }
	.yth-text-logo span { width: 34px; }
	.yth-text-logo { font-size: 25px; gap: 7px; }

	.yth-news-ticker { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
	.yth-ticker-item { min-width: 82%; scroll-snap-align: start; }

	.yth-hero-image { min-height: 0; aspect-ratio: 16/10; }
	.yth-hero-copy h1 { font-size: 30px; }
	.yth-hero-side { grid-template-columns: 1fr; }
	.yth-hero-side-main { grid-column: auto; }
	.yth-more-highlights-grid { grid-template-columns: 1fr; }

	.yth-mosaic-column { padding-inline: 12px; }
	.yth-mosaic-feature h3,
	.yth-double-main h3 { font-size: 22px; }
	.yth-double-list article { grid-template-columns: 96px 1fr; }
	.yth-double-list article > a { width: 96px; height: 66px; }

	.yth-video-layout,
	.yth-video-placeholder,
	.yth-video-layout.has-youtube-feed,
	.yth-video-layout.has-youtube-feed .yth-responsive-embed { min-height: 0; }
	.yth-video-placeholder { aspect-ratio: 16/9; }
	.yth-video-playlist { grid-template-columns: 1fr; }

	.yth-block-feature_grid {
		margin-inline: -12px;
		padding-inline: 12px;
	}
	.yth-feature-grid-main { min-height: 440px; }
	.yth-feature-grid-overlay h3 { font-size: 28px; }
	.yth-feature-grid-list,
	.yth-grid-four,
	.yth-general-small-grid,
	.yth-most-read ol,
	.yth-ent-small-grid,
	.yth-archive-grid,
	.yth-related-grid { grid-template-columns: 1fr; }

	.yth-region-panel { padding: 16px; }
	.yth-region-main h3 { font-size: 25px; }
	.yth-region-bottom article { grid-template-columns: 1fr 90px; }

	.yth-ent-rail { grid-template-columns: repeat(2, 1fr); }
	.yth-ent-list article { grid-template-columns: 110px 1fr; }
	.yth-ent-list article > a { width: 110px; height: 78px; }

	.yth-horizontal-five { grid-template-columns: 1fr; }
	.yth-horizontal-five article,
	.yth-horizontal-five article:nth-child(3n) { padding-block: 14px; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.08); }

	.yth-article-title { font-size: 36px; }
	.yth-article-subtitle { font-size: 20px; }
	.yth-entry-content { font-size: max(17px, var(--yth-single-content)); line-height: 1.72; }

	.yth-footer-widgets { grid-template-columns: 1fr; }
}

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