.portal-v2 {
	padding: 4.8rem 0 0;
	background: #f8f8f5;
	color: #111827;
	scrollbar-color: #898c23 #ecebdd;
	scrollbar-width: thin;
	--portal-v2-brand-olive: #898c23;
	--portal-v2-share-icon-color: var(--portal-v2-brand-olive);
}

.portal-v2,
.portal-v2 * {
	box-sizing: border-box;
}

html,
body,
.portal-v2,
.portal-v2 * {
	scrollbar-color: #898c23 #ecebdd;
	scrollbar-width: thin;
}

*::-webkit-scrollbar {
	width: 0.8rem;
}

*::-webkit-scrollbar-track {
	background: #ecebdd;
}

*::-webkit-scrollbar-thumb {
	background-color: #898c23 !important;
	border-radius: 999px;
	border: 2px solid #ecebdd !important;
}

.portal-v2-shell {
	width: min(122.4rem, calc(100% - 3.2rem));
	margin: 0 auto;
}

.portal-v2-header {
	position: sticky;
	top: 0;
	z-index: 120;
	background: #232608;
	box-shadow: 0 10px 30px rgba(35, 38, 8, 0.12);
}

.portal-v2-header-main {
	background: #232608;
}

.portal-v2-header-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3.2rem;
	padding: 1.8rem 0;
}

.portal-v2-logo {
	flex: 0 0 auto;
}

.portal-v2-logo img {
	height: 5.6rem;
	width: auto;
}

.portal-v2-mobile-toggle {
	display: none;
}

.portal-v2-search {
	flex: 0 1 48rem;
	width: min(48rem, 100%);
}

.portal-v2-search-form {
	position: relative;
	display: flex;
	align-items: center;
}

.portal-v2-search-form input {
	width: 100%;
	border: 0;
	border-radius: 999px;
	padding: 1.3rem 4.8rem 1.3rem 1.8rem;
	font-size: 1.4rem;
	color: #2d2d2d;
	background: #fff;
}

.portal-v2-search-form input::placeholder {
	color: #818181;
}

.portal-v2-search-form button {
	position: absolute;
	right: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border: 0;
	border-radius: 50%;
	background: #daf222;
	color: #232608;
	cursor: pointer;
}

.portal-v2-header-nav {
	background: #898c23;
}

.portal-v2-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
}

.portal-v2-nav-list li {
	margin: 0;
}

.portal-v2-nav-list a {
	display: inline-flex;
	align-items: center;
	padding: 1.4rem 1.8rem;
	color: #f2f1f0;
	font-size: 1.35rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.portal-v2-nav-list a:hover,
.portal-v2-nav-list .current-menu-item > a,
.portal-v2-nav-list .current-menu-parent > a {
	background: #232608;
	color: #daf222;
	border-bottom-color: #daf222;
}

.portal-v2-home-hero,
.portal-v2-block,
.portal-v2-editorial-highlight,
.portal-v2-page-header,
.portal-v2-related {
	margin-bottom: 4.8rem;
}

.portal-v2-hero-grid,
.portal-v2-category-layout,
.portal-v2-article-layout,
.portal-v2-category-showcase {
	display: grid;
	gap: 2.4rem;
}

.portal-v2-hero-grid,
.portal-v2-category-showcase {
	grid-template-columns: minmax(0, 2fr) minmax(28rem, 1fr);
}

.portal-v2-category-layout,
.portal-v2-article-layout {
	grid-template-columns: minmax(0, 2fr) minmax(28rem, 1fr);
	align-items: start;
}

.portal-v2-article-column {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.portal-v2-secondary-grid,
.portal-v2-news-grid,
.portal-v2-news-grid-small {
	display: grid;
	gap: 1.6rem;
}

.portal-v2-secondary-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.6rem;
}

.portal-v2-news-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-v2-news-grid-small {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-v2-category-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-v2-horizontal-list,
.portal-v2-compact-list,
.portal-v2-ranked-list {
	display: grid;
	gap: 1.4rem;
}

.portal-v2-card,
.portal-v2-sidebar-card,
.portal-v2-article,
.portal-v2-page-header {
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.05);
	border-radius: 1.4rem;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
	overflow: hidden;
}

.portal-v2-card-clickable {
	cursor: pointer;
}

.portal-v2-card-link,
.portal-v2-ranked-item h3 a,
.portal-v2-category-links a {
	color: inherit;
	text-decoration: none;
}

.portal-v2-card-media {
	background: linear-gradient(135deg, rgba(137, 140, 35, 0.14), rgba(35, 38, 8, 0.05));
}

.portal-v2-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portal-v2-card-body,
.portal-v2-sidebar-card,
.portal-v2-page-header,
.portal-v2-article-header,
.portal-v2-article-content {
	padding: 2rem;
}

.portal-v2-card-title,
.portal-v2-article-title,
.portal-v2-page-header h1 {
	margin: 0;
	color: #111827;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.portal-v2 a,
.portal-v2 a:hover,
.portal-v2 a:focus,
.portal-v2 a:active,
.portal-v2 a:visited {
	text-decoration: none;
}

.portal-v2 a:hover,
.portal-v2 a:focus {
	color: #898c23;
}

.portal-v2-card-excerpt,
.portal-v2-page-description,
.portal-v2-footer-brand p,
.portal-v2-newsletter-copy p {
	font-family: "DM Sans", sans-serif;
	font-size: 1.6rem;
	line-height: 1.65;
	color: #4b5563;
	margin: 0;
}

.portal-v2-card-featured .portal-v2-card-media {
	position: relative;
	aspect-ratio: 816 / 320;
	min-height: 32.2rem;
	max-height: 32.2rem;
	overflow: hidden;
	border-radius: 1.4rem;
}

.portal-v2-card-featured .portal-v2-card-link {
	display: block;
}

.portal-v2-card-featured .portal-v2-image {
	position: absolute;
	inset: 0;
}

.portal-v2-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 24, 8, 0.08) 0%, rgba(24, 30, 10, 0.32) 28%, rgba(20, 26, 8, 0.78) 58%, rgba(18, 24, 8, 0.94) 100%);
}

.portal-v2-card-featured .portal-v2-card-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 2.4rem 2.4rem 2rem;
}

.portal-v2-card-featured .portal-v2-badge {
	background: #e7ff17;
	color: #1f2a00;
	padding: 0.7rem 1.2rem;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	border-radius: 0.6rem;
}

.portal-v2-card-featured .portal-v2-card-title {
	margin-top: 1.5rem;
	font-size: 2.25rem;
	line-height: 1.38;
	color: #fff;
	max-width: 70rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.portal-v2-card-featured .portal-v2-card-excerpt {
	margin-top: 0.8rem;
	font-size: 1.15rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	max-width: 64rem;
}

.portal-v2-card-featured .portal-v2-meta {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.96rem;
	font-weight: 500;
	margin-top: 1.1rem;
}

.portal-v2-card-featured .portal-v2-meta span + span::before {
	background: rgba(255, 255, 255, 0.9);
}

.portal-v2-card-medium .portal-v2-card-media,
.portal-v2-card-grid .portal-v2-card-media {
	aspect-ratio: 288 / 240;
}

.portal-v2-card-medium .portal-v2-card-title,
.portal-v2-card-grid .portal-v2-card-title {
	font-size: 1.3rem;
	line-height: 1.5;
	margin: 0.95rem 0 0.7rem;
	font-weight: 500;
}

.portal-v2-card-horizontal .portal-v2-card-link,
.portal-v2-card-horizontal .portal-v2-card-horizontal-inner {
	display: grid;
	grid-template-columns: 19.2rem minmax(0, 1fr);
	align-items: stretch;
	min-height: 15.8rem;
	width: 100%;
}

.portal-v2-card-horizontal .portal-v2-card-media-link {
	display: block;
	height: 100%;
}

.portal-v2-card-horizontal .portal-v2-card-media {
	width: 100%;
	min-height: 15.8rem;
	height: 100%;
	overflow: hidden;
}

.portal-v2-card-horizontal .portal-v2-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.55rem 1.8rem;
}

.portal-v2-card-horizontal .portal-v2-card-title {
	font-size: 1.1rem;
	line-height: 1.5;
	margin: 0.75rem 0 0.45rem;
	font-weight: 500;
}

.portal-v2-card-horizontal .portal-v2-card-title-link {
	color: inherit;
	text-decoration: none;
}

.portal-v2-card-horizontal .portal-v2-card-excerpt {
	margin-bottom: 0.75rem;
}

.portal-v2-compact-item {
	padding-bottom: 1.6rem;
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.portal-v2-compact-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.portal-v2-compact-link {
	display: grid;
	grid-template-columns: 9.6rem minmax(0, 1fr);
	gap: 1.2rem;
	align-items: start;
	color: inherit;
	text-decoration: none;
}

.portal-v2-compact-thumb {
	aspect-ratio: 96 / 80;
	border-radius: 0.6rem;
	overflow: hidden;
	background: #e5e7eb;
}

.portal-v2-compact-content h3,
.portal-v2-ranked-item h3 {
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
	line-height: 1.42;
	color: #111827;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.portal-v2-meta,
.portal-v2-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.4rem;
	margin-top: 1.4rem;
	font-size: 1.05rem;
	color: #6b7280;
	font-family: "DM Sans", sans-serif;
}

.portal-v2-meta span,
.portal-v2-article-meta span {
	position: relative;
}

.portal-v2-meta span + span::before,
.portal-v2-article-meta span + span::before {
	content: "";
	position: absolute;
	left: -0.9rem;
	top: 50%;
	width: 0.35rem;
	height: 0.35rem;
	background: #898c23;
	border-radius: 50%;
	transform: translateY(-50%);
}

.portal-v2-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: #f3f2bf;
	color: #232608;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: none;
}

.portal-v2-section-heading {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 2.2rem;
}

.portal-v2-section-heading h2 {
	margin: 0;
	font-size: 2.15rem;
	line-height: 1.15;
	color: #111827;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.portal-v2-heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.8rem;
	vertical-align: middle;
}

.portal-v2-section-kicker {
	display: inline-block;
	width: 0.3rem;
	height: 3rem;
	border-radius: 999px;
	background: #d7f000;
}

.portal-v2-ranked-item {
	display: grid;
	grid-template-columns: 4rem minmax(0, 1fr);
	gap: 1.2rem;
	align-items: start;
}

.portal-v2-rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: #e7ff17;
	color: #232608;
	font-size: 1.05rem;
	font-weight: 700;
}

.portal-v2-sidebar-card > .portal-v2-section-heading h2 {
	font-size: 1.55rem;
}

.portal-v2-sidebar-card > .portal-v2-section-heading {
	margin-bottom: 1.7rem;
}

.portal-v2-home .portal-v2-sidebar-card {
	padding: 2rem 2rem 2.1rem;
}

.portal-v2-home .portal-v2-sidebar-card .portal-v2-meta {
	margin-top: 0.35rem;
	font-size: 1.12rem;
	gap: 0.55rem 1.25rem;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-card-body,
.portal-v2-home .portal-v2-card-grid .portal-v2-card-body {
	padding: 1.45rem 1.35rem 1.55rem;
}

.portal-v2-home .portal-v2-horizontal-list {
	gap: 1.8rem;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-card-title,
.portal-v2-home .portal-v2-card-grid .portal-v2-card-title,
.portal-v2-home .portal-v2-card-horizontal .portal-v2-card-title {
	font-size: 1.4rem;
	line-height: 1.48;
	font-weight: 700;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-card-excerpt,
.portal-v2-home .portal-v2-card-grid .portal-v2-card-excerpt,
.portal-v2-home .portal-v2-card-horizontal .portal-v2-card-excerpt {
	font-size: 1.18rem;
	line-height: 1.58;
	color: #4b5563;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-meta,
.portal-v2-home .portal-v2-card-grid .portal-v2-meta,
.portal-v2-home .portal-v2-card-horizontal .portal-v2-meta {
	margin-top: 0.8rem;
	font-size: 1.15rem;
}

.portal-v2-section-heading-sidebar {
	display: block;
	padding-bottom: 1.4rem;
	border-bottom: 3px solid #d7f000;
}

.portal-v2-section-heading-sidebar .portal-v2-section-kicker {
	display: none;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-card-media {
	aspect-ratio: 288 / 192;
}

.portal-v2-home .portal-v2-card-medium .portal-v2-badge,
.portal-v2-home .portal-v2-card-grid .portal-v2-badge,
.portal-v2-home .portal-v2-card-horizontal .portal-v2-badge {
	margin-bottom: 0.9rem;
	font-size: 1.12rem;
}

.portal-v2-home .portal-v2-card-featured .portal-v2-card-title {
	font-size: 2.35rem;
}

.portal-v2-home .portal-v2-card-featured .portal-v2-card-excerpt {
	font-size: 1.25rem;
}

.portal-v2-home .portal-v2-card-featured .portal-v2-meta {
	font-size: 1.06rem;
}

.portal-v2-home .portal-v2-compact-content h3 {
	font-size: 1.3rem;
}

.portal-v2-home .portal-v2-sidebar-card > .portal-v2-section-heading h2 {
	font-size: 1.65rem;
}

.portal-v2-editorial-highlight {
	border-radius: 1.6rem;
	background: linear-gradient(90deg, #98981f 0%, #2a2d07 100%);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.portal-v2-editorial-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 55.2rem;
	gap: 4.2rem;
	align-items: center;
	padding: 4.2rem 4rem;
}

.portal-v2-editorial-label {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	background: #e7ff17;
	color: #1f2a00;
	font-size: 1.05rem;
	font-weight: 600;
	text-transform: uppercase;
}

.portal-v2-editorial-copy h2 {
	margin: 1.8rem 0 1.5rem;
	max-width: 48rem;
	font-size: 3.45rem;
	line-height: 1.22;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
}

.portal-v2-editorial-copy p {
	max-width: 53rem;
	font-size: 1.42rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.92);
	font-family: "DM Sans", sans-serif;
}

.portal-v2-editorial-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.2rem;
	padding: 1.3rem 3rem;
	border-radius: 1rem;
	background: #e7ff17;
	color: #111827;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.portal-v2-editorial-media {
	display: block;
	border-radius: 1rem;
	overflow: hidden;
}

.portal-v2-editorial-media .portal-v2-image {
	aspect-ratio: 552 / 367;
}

.portal-v2-breadcrumbs {
	margin-bottom: 2.4rem;
	font-size: 1.3rem;
	color: #6e7463;
}

.portal-v2-breadcrumbs a,
.portal-v2-breadcrumbs span {
	color: inherit;
}

.portal-v2-page-header h1 {
	font-size: 4.6rem;
	line-height: 1;
	font-weight: 700;
}

.portal-v2-page-description {
	margin-top: 1.6rem;
	max-width: 72rem;
}

.portal-v2-empty-state {
	padding: 2.4rem;
	background: #fff;
	border-radius: 2rem;
	font-size: 1.6rem;
	color: #5d6352;
}

.portal-v2-article-header {
	padding-bottom: 0;
}

.portal-v2-article-title {
	font-size: 4.8rem;
	line-height: 1.05;
	margin-top: 1.6rem;
}

.portal-v2-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.portal-v2-share span {
	font-size: 1.3rem;
	font-weight: 600;
	color: #232608;
}

.portal-v2-share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.2rem;
	height: 4.2rem;
	border-radius: 50%;
	background: #f3f4ee;
	color: var(--portal-v2-share-icon-color);
}

.portal-v2-share-link svg {
	width: 1.65rem !important;
	height: 1.65rem !important;
}

.portal-v2-share-whatsapp svg {
	width: 1.95rem !important;
	height: 1.95rem !important;
}

.portal-v2-share-link svg path,
.portal-v2-share-link svg circle,
.portal-v2-share-link svg rect {
	fill: currentColor !important;
}

.portal-v2-share-link svg [stroke] {
	stroke: currentColor !important;
}

.portal-v2-related {
	margin-top: 5.2rem;
	margin-bottom: 6rem;
}

.portal-v2-article-image {
	margin: 2.4rem 0 0;
	border-radius: 2rem;
	overflow: hidden;
}

.portal-v2-article-image .portal-v2-image {
	aspect-ratio: 16 / 9;
}

.portal-v2-article-content {
	font-family: "DM Sans", sans-serif;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #3a4032;
}

.portal-v2-article-content h2,
.portal-v2-article-content h3,
.portal-v2-article-content h4 {
	margin: 3.2rem 0 1.6rem;
	color: #181a12;
	font-weight: 800;
}

.portal-v2-article-content p,
.portal-v2-article-content ul,
.portal-v2-article-content ol,
.portal-v2-article-content blockquote {
	margin-bottom: 1.8rem;
}

.portal-v2-article-content blockquote {
	padding: 2rem 2.4rem;
	border-left: 0.4rem solid #daf222;
	background: #f8f8f2;
	border-radius: 1.4rem;
}

.portal-v2-category-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.portal-v2-category-links li + li {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(35, 38, 8, 0.09);
}

.portal-v2-category-links a {
	font-size: 1.55rem;
	font-weight: 500;
	color: #232608;
}

.portal-v2-category .portal-v2-page-header {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	margin-bottom: 3.2rem;
	padding-bottom: 1.2rem;
}

.portal-v2-category-subtitle {
	margin: 0.9rem 0 0;
	font-size: 1.44rem;
	line-height: 1.5;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	color: #6b7280;
}

.portal-v2-category .portal-v2-page-description {
	margin-top: 0.8rem;
	max-width: none;
	font-size: 1.48rem;
	line-height: 1.6;
	color: #6b7280;
}

.portal-v2-card-category-featured {
	border-radius: 1.2rem;
	margin-bottom: 2.6rem;
}

.portal-v2-card-category-featured .portal-v2-card-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.portal-v2-card-category-featured .portal-v2-card-media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7.2;
	min-height: 29rem;
	overflow: hidden;
}

.portal-v2-card-category-featured .portal-v2-image {
	position: absolute;
	inset: 0;
}

.portal-v2-card-category-featured .portal-v2-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 12, 18, 0.02) 0%, rgba(8, 12, 18, 0.16) 42%, rgba(8, 12, 18, 0.74) 76%, rgba(8, 12, 18, 0.9) 100%);
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-card-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 2rem 2rem 1.8rem;
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-badge {
	background: #e7ff17;
	color: #1f2a00;
	font-size: 1.15rem;
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-card-title {
	margin-top: 1.1rem;
	font-size: 1.75rem;
	line-height: 1.35;
	font-weight: 700;
	color: #fff;
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-card-excerpt {
	margin-top: 0.55rem;
	font-size: 1.22rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	max-width: 56rem;
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-meta {
	margin-top: 0.9rem;
	font-size: 1.16rem;
	color: rgba(255, 255, 255, 0.92);
}

.portal-v2-category .portal-v2-card-category-featured .portal-v2-meta span + span::before {
	background: rgba(255, 255, 255, 0.9);
}

.portal-v2-category .portal-v2-category-grid {
	gap: 2.4rem 2rem;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-card-media {
	aspect-ratio: 16 / 10.5;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-card-body {
	padding: 1.25rem 1.3rem 1.4rem;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-badge {
	margin-bottom: 0.8rem;
	font-size: 1.15rem;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-card-title {
	font-size: 1.36rem;
	line-height: 1.45;
	font-weight: 700;
	margin: 0 0 0.55rem;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-card-excerpt {
	font-size: 1.17rem;
	line-height: 1.55;
}

.portal-v2-category .portal-v2-card-grid .portal-v2-meta {
	margin-top: 0.8rem;
	font-size: 1.15rem;
}

.portal-v2-category .portal-v2-sidebar-card {
	padding: 1.6rem 1.6rem 1.8rem;
	border-radius: 1.2rem;
}

.portal-v2-category .portal-v2-sidebar-card + .portal-v2-sidebar-card {
	margin-top: 1.6rem;
}

.portal-v2-category .portal-v2-sidebar-card > .portal-v2-section-heading {
	margin-bottom: 1.35rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid #d7f000;
}

.portal-v2-category .portal-v2-sidebar-card > .portal-v2-section-heading .portal-v2-section-kicker {
	display: none;
}

.portal-v2-category .portal-v2-sidebar-card > .portal-v2-section-heading h2 {
	font-size: 1.55rem;
}

.portal-v2-category .portal-v2-ranked-item h3 {
	font-size: 1.18rem;
	line-height: 1.45;
}

.portal-v2-category .portal-v2-ranked-item .portal-v2-meta {
	margin-top: 0.4rem;
	font-size: 1.08rem;
}

.portal-v2-category .portal-v2-category-links a {
	font-size: 1.25rem;
	font-weight: 500;
}

.portal-v2-newsletter {
	padding: 6rem 0 6.2rem;
	background: #898c23;
	color: #f2f1f0;
}

.portal-v2-newsletter-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.portal-v2-newsletter-copy {
	max-width: 72rem;
}

.portal-v2-newsletter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	height: 5.6rem;
	margin-bottom: 1.6rem;
	border-radius: 0;
	background: transparent;
}

.portal-v2-newsletter-copy h2 {
	margin: 0 0 1rem;
	font-size: 2.7rem;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.portal-v2-newsletter-copy p {
	max-width: 66rem;
	margin: 0 auto;
	font-size: 1.38rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.95);
}

.portal-v2-newsletter-form {
	width: 100%;
	max-width: 45.2rem;
	margin-top: 2rem;
}

.portal-v2-newsletter-form .wpcf7-form p {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 12rem;
	gap: 1.2rem;
	margin: 0;
}

.portal-v2-newsletter-form input[type="email"] {
	width: 100%;
	min-height: 4.9rem;
	padding: 1.1rem 1.8rem;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 1.2rem;
	background: transparent;
	color: #fff;
	font-size: 1.32rem;
}

.portal-v2-newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.92);
}

.portal-v2-newsletter-form input[type="submit"] {
	min-height: 4.9rem;
	padding: 1.2rem 2.4rem;
	border: 0;
	border-radius: 1.2rem !important;
	background: #e7ff17;
	color: #232608;
	font-size: 1.28rem;
	font-weight: 700;
	cursor: pointer;
}

.portal-v2-newsletter-note {
	margin: 1.2rem 0 0;
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.96);
	font-family: "DM Sans", sans-serif;
}

.portal-v2-footer {
	padding: 5.8rem 0 0;
	background: #232608;
	color: #f2f1f0;
	text-align: center;
}

.portal-v2-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(14rem, 1fr));
	gap: 4rem;
	justify-items: center;
}

@media (min-width: 1025px) {
	.portal-v2-footer-column:first-of-type {
		margin-left: 3rem;
	}
}

.portal-v2-footer-brand img {
	height: 3.6rem;
	width: auto;
	margin-bottom: 1.8rem;
}

.portal-v2-footer-brand p {
	max-width: 24rem;
	font-size: 1.36rem;
	line-height: 1.85;
	color: rgba(242, 241, 240, 0.9);
	margin-left: auto;
	margin-right: auto;
}

.portal-v2-footer-column h3 {
	margin: 0 0 1.6rem;
	font-size: 1.52rem;
	color: #e7ff17;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.portal-v2-footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
	justify-items: center;
}

.portal-v2-footer-column a {
	font-size: 1.38rem;
	color: rgba(242, 241, 240, 0.92);
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	line-height: 1.7;
}

.portal-v2-footer-bottom {
	margin-top: 3.8rem;
	padding: 0 0 2.6rem;
	border-top: 1px solid rgba(242, 241, 240, 0.12);
}

.portal-v2-footer-bottom p {
	margin: 1.8rem 0 0;
	text-align: center;
	font-size: 1.26rem;
	line-height: 1.7;
	color: rgba(242, 241, 240, 0.72);
	font-family: "DM Sans", sans-serif;
}

.portal-v2-pagination {
	margin-top: 2.4rem;
	margin-bottom: 6rem;
}

.portal-v2-pagination .page-numbers {
	gap: 0.8rem;
}

.portal-v2-pagination .page-numbers li a,
.portal-v2-pagination .page-numbers .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.2rem;
	height: 3.2rem;
	border-radius: 0.8rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
}

.portal-v2-pagination .page-numbers li a {
	color: #232608;
	background: #ecebdd;
}

.portal-v2-pagination .page-numbers li a:hover,
.portal-v2-pagination .page-numbers li a:focus {
	color: #f2f1f0;
	background: #898c23;
}

.portal-v2-pagination .page-numbers .current {
	color: #f2f1f0;
	background: #898c23;
}

#result-pesq {
	padding: 4.8rem 0 6rem;
	background: #f8f8f5;
}

#result-pesq .title--search {
	margin: 2.4rem 0 3.2rem;
	font-size: 3.8rem;
	line-height: 1.12;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #111827;
}

#result-pesq .title--search strong {
	font-weight: 700;
}

#result-pesq .content-post {
	row-gap: 3.2rem;
}

#result-pesq .post--category .tag,
#result-pesq .tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: #f3f2bf;
	color: #232608 !important;
	text-decoration: none !important;
}

#result-pesq .post--category,
#result-pesq .post--category.cate,
#result-pesq .post--category.cate.desktoponly {
	display: block;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

#result-pesq .linha-autordata .autor svg path {
	fill: #898c23 !important;
}

#result-pesq .post--text .btn-leia-mais {
	background: #898c23 !important;
	color: #f2f1f0 !important;
	border-radius: 999px;
}

#result-pesq .post--text .btn-leia-mais:hover,
#result-pesq .post--text .btn-leia-mais:focus {
	background: #232608 !important;
	color: #f2f1f0 !important;
}

#result-pesq .pagination {
	margin-top: 2.4rem;
	margin-bottom: 6rem;
}

#result-pesq .pagination .page-numbers {
	gap: 0.8rem;
}

#result-pesq .pagination .page-numbers li a,
#result-pesq .pagination .page-numbers .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.2rem;
	height: 3.2rem;
	border-radius: 0.8rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
}

#result-pesq .pagination .page-numbers li a {
	background: #ecebdd;
	color: #232608 !important;
}

#result-pesq .pagination .page-numbers li a:hover,
#result-pesq .pagination .page-numbers li a:focus {
	background: #898c23;
	color: #f2f1f0 !important;
}

#result-pesq .pagination .page-numbers .current {
	background: #898c23;
	color: #f2f1f0 !important;
}

@media (max-width: 1024px) {
	.portal-v2-header-shell {
		display: grid;
		grid-template-columns: auto 1fr;
		justify-content: initial;
	}

	.portal-v2-logo {
		justify-self: start;
	}

	.portal-v2-search {
		flex: initial;
		width: 100%;
		grid-column: 1 / -1;
	}

	.portal-v2-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.portal-v2-editorial-content {
		grid-template-columns: minmax(0, 1fr) 42rem;
		padding: 3.2rem;
		gap: 3rem;
	}

	.portal-v2-footer-grid {
		grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(16rem, 1fr));
	}
}

@media (max-width: 768px) {
	html,
	body,
	.portal-v2 {
		overflow-x: hidden;
	}

	.portal-v2 {
		padding-top: 3.2rem;
	}

	body.portal-v2-menu-open {
		overflow: hidden;
	}

	.portal-v2-mobile-toggle {
		display: block;
	}

	.portal-v2-header-shell {
		grid-template-columns: auto 1fr auto;
		gap: 1.2rem;
		align-items: center;
	}

	.portal-v2-logo {
		grid-column: 2;
		justify-self: center;
	}

	.portal-v2-logo img {
		height: 4.2rem;
	}

	.portal-v2-mobile-toggle {
		grid-column: 1;
		justify-self: start;
	}

	.portal-v2-search {
		grid-column: 1 / -1;
	}

	.portal-v2-header-nav {
		display: none;
	}

	.portal-v2-hero-grid,
	.portal-v2-category-layout,
	.portal-v2-article-layout,
	.portal-v2-category-showcase,
	.portal-v2-newsletter-inner,
	.portal-v2-footer-grid,
	.portal-v2-newsletter-form .wpcf7-form p,
	.portal-v2-card-horizontal .portal-v2-card-link,
	.portal-v2-card-horizontal .portal-v2-card-horizontal-inner {
		grid-template-columns: 1fr;
	}

	.portal-v2-secondary-grid,
	.portal-v2-news-grid,
	.portal-v2-news-grid-small {
		grid-template-columns: 1fr;
	}

	.portal-v2-card-featured .portal-v2-card-title,
	.portal-v2-article-title,
	.portal-v2-page-header h1 {
		font-size: 2.7rem;
	}

	.portal-v2-card-featured .portal-v2-card-media {
		min-height: 34rem;
		max-height: none;
	}

	.portal-v2-card-featured .portal-v2-card-body {
		padding: 2rem;
	}

	.portal-v2-card-featured .portal-v2-card-excerpt {
		font-size: 1.08rem;
		line-height: 1.55;
	}

	.portal-v2-section-heading h2,
	.portal-v2-newsletter-copy h2 {
		font-size: 2.4rem;
	}

	.portal-v2-compact-content h3,
	.portal-v2-ranked-item h3 {
		font-size: 1.6rem;
	}

	.portal-v2-home .portal-v2-card-medium .portal-v2-card-title,
	.portal-v2-home .portal-v2-card-grid .portal-v2-card-title,
	.portal-v2-card-horizontal .portal-v2-card-title {
		font-size: 1.35rem;
	}

	.portal-v2-search {
		grid-column: 1 / -1;
	}

	.portal-v2-shell {
		width: calc(100% - 2rem);
		max-width: 100%;
	}

	.portal-v2-home-hero,
	.portal-v2-hero-main,
	.portal-v2-block,
	.portal-v2-category-content,
	.portal-v2-card,
	.portal-v2-card-link,
	.portal-v2-card-horizontal .portal-v2-card-horizontal-inner,
	.portal-v2-card-media,
	.portal-v2-image,
	.portal-v2-secondary-grid > *,
	.portal-v2-news-grid > *,
	.portal-v2-news-grid-small > * {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.portal-v2-home .portal-v2-card-featured,
	.portal-v2-home .portal-v2-card-medium,
	.portal-v2-home .portal-v2-card-grid,
	.portal-v2-category .portal-v2-card-featured,
	.portal-v2-category .portal-v2-card-grid {
		overflow: hidden;
	}

	.portal-v2-home .portal-v2-card-featured .portal-v2-card-media,
	.portal-v2-home .portal-v2-card-medium .portal-v2-card-media,
	.portal-v2-home .portal-v2-card-grid .portal-v2-card-media,
	.portal-v2-category .portal-v2-card-featured .portal-v2-card-media,
	.portal-v2-category .portal-v2-card-grid .portal-v2-card-media {
		width: 100%;
		max-width: 100%;
	}

	.portal-v2-home .portal-v2-card-title,
	.portal-v2-home .portal-v2-card-excerpt,
	.portal-v2-category .portal-v2-card-title,
	.portal-v2-category .portal-v2-card-excerpt {
		overflow-wrap: anywhere;
	}

	.portal-v2-search-form input {
		padding-left: 1.4rem;
	}

	.portal-v2-card-horizontal .portal-v2-card-media,
	.portal-v2-card-horizontal .portal-v2-card-media-link {
		min-height: 0;
		height: auto;
	}

	.portal-v2-editorial-content,
	.portal-v2-footer-grid {
		grid-template-columns: 1fr;
	}

	.portal-v2-editorial-content {
		padding: 2.4rem;
		gap: 2.4rem;
	}

	.portal-v2-editorial-copy h2 {
		font-size: 2.6rem;
	}

	.portal-v2-newsletter-form .wpcf7-form p {
		grid-template-columns: 1fr;
	}

	.secondary-diaPortal-navigation {
		position: fixed;
		inset: 0;
		z-index: 400;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.28s ease, visibility 0.28s ease;
	}

	.secondary-diaPortal-navigation.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.secondary-diaPortal-navigation .sec-nav-overlay {
		position: absolute;
		inset: 0;
		background: rgba(8, 12, 18, 0.5);
	}

	.secondary-diaPortal-navigation .sidebar-nav-wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: min(84vw, 32rem);
		height: 100vh;
		padding-top: 6.8rem;
		background: #232608 !important;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		box-shadow: 14px 0 36px rgba(8, 12, 18, 0.22);
		overflow-y: auto;
		opacity: 1;
	}

	.secondary-diaPortal-navigation.open .sidebar-nav-wrap {
		transform: translateX(0);
		background: #232608 !important;
	}

	.secondary-diaPortal-navigation .boxtopo-menumobile,
	.secondary-diaPortal-navigation .menu-mobile,
	.secondary-diaPortal-navigation .portal-v2-mobile-menu {
		background: #232608 !important;
	}

	.sidebar-nav-wrap #menu-menu-2,
	.sidebar-nav-wrap .menu,
	.sidebar-nav-wrap .portal-v2-mobile-menu {
		display: block;
		padding: 0 1.8rem 2rem;
		margin: 0;
		background: transparent;
		list-style: none;
	}

	.sidebar-nav-wrap #menu-menu-2 li,
	.sidebar-nav-wrap .menu li,
	.sidebar-nav-wrap .portal-v2-mobile-menu li {
		padding: 1.35rem 0;
		border-bottom: 1px solid rgba(242, 241, 240, 0.12);
		margin: 0;
	}

	.sidebar-nav-wrap #menu-menu-2 li a,
	.sidebar-nav-wrap .menu li a,
	.sidebar-nav-wrap .portal-v2-mobile-menu li a {
		display: block;
		width: 100%;
		color: #f2f1f0;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.5;
		text-decoration: none;
		background: transparent !important;
		border: 0 !important;
		padding: 0;
	}

	.sidebar-nav-wrap #menu-menu-2 li a:hover,
	.sidebar-nav-wrap .menu li a:hover,
	.sidebar-nav-wrap .portal-v2-mobile-menu li a:hover {
		color: #daf222;
	}

	.fechar-sidebar {
		position: absolute;
		top: 1.8rem;
		right: 1.8rem;
	}

	#result-pesq .content-post article,
	#category .content-post article {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}

	#result-pesq .content-post,
	#category .content-post {
		gap: 2rem;
	}
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: unset !important;
    margin: 0 !important;;
    padding: 0 !important;;
    margin-bottom: 20px !important;;
}

.wpcf7-not-valid-tip {
	display: none !important;
}