:root {
	--hcp-primary: #7c3aed;
	--hcp-accent: #f59e0b;
	--hcp-bg: #ffffff;
	--hcp-surface: #f8fafc;
	--hcp-text: #111827;
	--hcp-link: #0d6efd;
	--hcp-muted: #6b7280;
	--hcp-header: #ffffff;
	--hcp-header-text: #ffffff;
	--hcp-footer: #111827;
	--hcp-container: 1180px;
	--hcp-radius: 18px;
	--hcp-shadow: 0 16px 40px rgba(17, 24, 39, .08);
	--hcp-border: 1px solid rgba(107, 114, 128, .18);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--hcp-bg);
	color: var(--hcp-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

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

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

p {
	margin: 0 0 1.35rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.15;
	letter-spacing: -0.025em;
	margin: 0 0 1rem;
}

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto !important;
	clip-path: none;
	height: auto;
	left: 16px;
	padding: 10px 16px;
	position: fixed;
	top: 16px;
	width: auto;
	z-index: 100000;
	background: var(--hcp-text);
	color: #fff;
	border-radius: 999px;
}

.site-header {
	background: var(--hcp-header);
	border-bottom: var(--hcp-border);
	box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.header-inner {
	padding: 20px 0 14px;
	display: grid;
	gap: 14px;
}

.site-branding {
	text-align: center;
	display: grid;
	gap: 5px;
	justify-items: center;
}

.custom-logo-wrap img,
.custom-logo-link img {
	max-height: 120px;
	width: auto;
	object-fit: contain;
}

.site-title {
	font-size: clamp(1.9rem, 5vw, 3.7rem);
	font-weight: 900;
	margin: 0;
	text-transform: uppercase;
}

.site-title a {
	color: var(--hcp-text);
}

.site-description {
	margin: 0;
	color: var(--hcp-muted);
	font-size: .95rem;
}

.main-navigation {
	position: relative;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	border: 0;
	background: var(--hcp-primary);
	color: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 800;
	cursor: pointer;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
	display: block;
	width: 17px;
	height: 2px;
	background: currentColor;
	border-radius: 99px;
	content: "";
}

.menu-toggle-line::before {
	transform: translateY(-6px);
}

.menu-toggle-line::after {
	transform: translateY(4px);
}

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

.primary-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 8px;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 10px 13px;
	border-radius: 999px;
	color: var(--hcp-text);
	font-weight: 800;
	font-size: .94rem;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	background: var(--hcp-surface);
	color: var(--hcp-primary);
}

.primary-menu .sub-menu,
.primary-menu .children {
	position: absolute;
	z-index: 25;
	left: 0;
	top: 100%;
	min-width: 210px;
	padding: 10px;
	margin: 0;
	list-style: none;
	background: var(--hcp-header);
	border: var(--hcp-border);
	border-radius: 14px;
	box-shadow: var(--hcp-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-menu li:hover > .children,
.primary-menu li:focus-within > .children {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-search,
.search-page-form,
.centered-content .search-form {
	display: flex;
	justify-content: center;
}

.search-form {
	display: flex;
	width: min(100%, 520px);
	background: var(--hcp-surface);
	border: var(--hcp-border);
	border-radius: 999px;
	padding: 5px;
}

.search-field {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 11px 14px;
	font: inherit;
	color: var(--hcp-text);
	outline: 0;
}

.search-submit,
.wp-block-search__button,
button,
input[type="submit"] {
	border: 0;
	border-radius: 999px;
	background: var(--hcp-primary);
	color: #fff;
	font-weight: 900;
	padding: 10px 16px;
	cursor: pointer;
}

.search-submit:hover,
.search-submit:focus,
.wp-block-search__button:hover,
.wp-block-search__button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--hcp-accent);
}

.page-container {
	padding: 20px 0 46px;
}

.breadcrumbs {
	margin-bottom: 22px;
	font-size: .88rem;
	color: var(--hcp-muted);
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumbs a {
	color: var(--hcp-muted);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
	color: var(--hcp-primary);
}

.archive-header,
.search-header {
	margin: 18px 0 28px;
	text-align: center;
}

.page-title {
	font-size: clamp(2rem, 4vw, 3.7rem);
	font-weight: 950;
	margin-bottom: .55rem;
}

.archive-description {
	max-width: 720px;
	margin-inline: auto;
	color: var(--hcp-muted);
}

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

.post-card {
	background: var(--hcp-surface);
	border: var(--hcp-border);
	border-radius: var(--hcp-radius);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
	transition: transform .18s ease, box-shadow .18s ease;
}

.post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--hcp-shadow);
}

.post-card-media {
	display: block;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--hcp-primary), var(--hcp-accent));
	overflow: hidden;
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-placeholder,
.hcp-thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--hcp-primary), var(--hcp-accent));
}

.post-card-body {
	padding: 18px;
}

.entry-meta {
	display: flex;
	gap: 7px;
	align-items: center;
	flex-wrap: wrap;
	font-size: .84rem;
	color: var(--hcp-muted);
	font-weight: 700;
	margin-bottom: 10px;
}

.entry-meta a {
	color: var(--hcp-muted);
}

.entry-meta a:hover,
.entry-meta a:focus {
	color: var(--hcp-primary);
}

.post-card-title {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 950;
	margin-bottom: 10px;
}

.post-card-title a {
	color: var(--hcp-text);
}

.post-card-title a:hover,
.post-card-title a:focus {
	color: var(--hcp-primary);
}

.post-card-excerpt {
	color: var(--hcp-muted);
	font-size: .96rem;
}

.post-card-excerpt p:last-child {
	margin-bottom: 0;
}

.site-main-single {
	max-width: 850px;
	margin-inline: auto;
}

.single-article {
	background: var(--hcp-bg);
}

.single-header {
	text-align: center;
	margin: 20px 0 24px;
}

.single-header .entry-meta {
	justify-content: center;
}

.entry-title {
	font-size: clamp(2.1rem, 5.5vw, 4.8rem);
	font-weight: 1000;
}

.entry-summary {
	font-size: clamp(1.06rem, 2vw, 1.25rem);
	color: var(--hcp-muted);
	max-width: 760px;
	margin-inline: auto;
}

.single-featured-image {
	margin: 0 0 28px;
	border-radius: var(--hcp-radius);
	overflow: hidden;
	box-shadow: var(--hcp-shadow);
}

.single-featured-image img {
	width: 100%;
}

.single-featured-image figcaption {
	font-size: .86rem;
	color: var(--hcp-muted);
	padding: 9px 13px;
	background: var(--hcp-surface);
}

.entry-content {
	font-size: clamp(1.05rem, 1.7vw, 1.18rem);
}

.entry-content > * {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content .alignwide {
	max-width: 980px;
}

.entry-content .alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2.2rem;
}

.entry-content a {
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	border-left: 5px solid var(--hcp-primary);
	padding: 16px 20px;
	background: var(--hcp-surface);
	border-radius: 0 14px 14px 0;
}

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

.entry-content th,
.entry-content td {
	border: var(--hcp-border);
	padding: 10px;
}

.entry-content iframe {
	max-width: 100%;
}

.entry-tags {
	max-width: 760px;
	margin: 28px auto 0;
	font-size: .92rem;
	color: var(--hcp-muted);
}

.entry-tags span {
	font-weight: 900;
	color: var(--hcp-text);
}

.hcp-related-inline,
.hcp-after-post {
	max-width: 760px;
	margin: 32px auto;
	background: var(--hcp-surface);
	border: var(--hcp-border);
	border-radius: var(--hcp-radius);
	padding: 18px;
	box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
}

.hcp-after-post {
	max-width: 980px;
}

.section-title {
	font-size: clamp(1.2rem, 2.2vw, 1.6rem);
	font-weight: 950;
	margin-bottom: 14px;
}

.hcp-links-list {
	display: grid;
	gap: 10px;
}

.hcp-links-layout-thumbnails .hcp-links-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.hcp-link-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 14px;
	background: var(--hcp-bg);
	border: var(--hcp-border);
	color: var(--hcp-text);
	font-weight: 900;
	text-decoration: none;
}

.hcp-link-card:hover,
.hcp-link-card:focus {
	background: #fff;
	color: var(--hcp-primary);
}

.hcp-link-thumb {
	flex: 0 0 92px;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--hcp-primary), var(--hcp-accent));
}

.hcp-link-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hcp-links-layout-thumbnails .hcp-link-card {
	display: grid;
	align-content: start;
	padding: 0;
	overflow: hidden;
}

.hcp-links-layout-thumbnails .hcp-link-thumb {
	flex: none;
	width: 100%;
	border-radius: 0;
}

.hcp-links-layout-thumbnails .hcp-link-title {
	padding: 0 13px 13px;
}

.nav-links,
.comment-navigation,
.posts-navigation,
.post-navigation {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 32px;
}

.page-numbers,
.nav-links a,
.nav-links span {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--hcp-surface);
	border: var(--hcp-border);
	font-weight: 900;
}

.page-numbers.current {
	background: var(--hcp-primary);
	color: #fff;
}

.comments-area {
	max-width: 760px;
	margin: 42px auto 0;
	background: var(--hcp-surface);
	border: var(--hcp-border);
	border-radius: var(--hcp-radius);
	padding: 20px;
}

.comment-list {
	padding-left: 20px;
}

.comment-reply-title,
.comments-title {
	font-size: 1.35rem;
	font-weight: 950;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	border: var(--hcp-border);
	border-radius: 12px;
	padding: 12px;
	font: inherit;
}

.centered-content {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.site-footer {
	background: var(--hcp-footer);
	color: rgba(255, 255, 255, .82);
	padding: 36px 0;
}

.footer-inner {
	display: grid;
	gap: 20px;
	justify-items: center;
	text-align: center;
}

.footer-widgets {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	text-align: left;
}

.site-footer a {
	color: #fff;
}

.footer-menu {
	display: flex;
	gap: 12px 18px;
	flex-wrap: wrap;
	justify-content: center;
}

.site-info {
	font-size: .92rem;
}

@media (max-width: 960px) {
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hcp-links-layout-thumbnails .hcp-links-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}

	.header-inner {
		padding-top: 16px;
	}

	.menu-toggle {
		display: inline-flex;
		margin: 0 auto;
	}

	.primary-menu {
		display: none;
		margin-top: 12px;
		padding: 10px;
		background: var(--hcp-surface);
		border: var(--hcp-border);
		border-radius: 16px;
		align-items: stretch;
	}

	.main-navigation.toggled .primary-menu {
		display: grid;
		gap: 4px;
	}

	.primary-menu a {
		border-radius: 12px;
	}

	.primary-menu .sub-menu,
	.primary-menu .children {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		border: 0;
		padding: 0 0 0 16px;
		min-width: 0;
	}

	.search-form {
		border-radius: 18px;
	}

	.search-submit {
		padding-inline: 12px;
	}

	.post-grid,
	.hcp-links-layout-thumbnails .hcp-links-list {
		grid-template-columns: 1fr;
	}

	.page-container {
		padding-bottom: 32px;
	}

	.hcp-link-card,
	.hcp-links-layout-thumbnails .hcp-link-card {
		display: flex;
		padding: 12px;
	}

	.hcp-links-layout-thumbnails .hcp-link-thumb {
		width: auto;
		flex: 0 0 96px;
		border-radius: 10px;
	}

	.hcp-links-layout-thumbnails .hcp-link-title {
		padding: 0;
	}
}

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

.hcp-header-ad-zone {
	width: 100%;
	display: grid;
	gap: 12px;
	justify-items: center;
	margin-top: 8px;
}

.hcp-code-block,
.hcp-header-ad,
.hcp-footer-visits {
	max-width: 100%;
	text-align: center;
}

.hcp-header-ad {
	width: min(100%, 970px);
	margin-inline: auto;
	min-height: 1px;
}

.hcp-header-ad ins,
.hcp-header-ad iframe,
.hcp-footer-visits iframe,
.hcp-footer-visits img,
.hcp-footer-visits a {
	max-width: 100%;
}

.hcp-footer-visits {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto 14px;
	min-height: 1px;
}

.post-grid {
	grid-template-columns: repeat(var(--hcp-grid-columns, 3), minmax(0, 1fr));
}

.hcp-post-navigation {
	max-width: 980px;
	margin: 34px auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hcp-post-nav-item {
	background: var(--hcp-surface);
	border: var(--hcp-border);
	border-radius: var(--hcp-radius);
	padding: 16px;
}

.hcp-post-nav-item span {
	display: block;
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--hcp-muted);
	margin-bottom: 6px;
}

.hcp-post-nav-item a {
	font-weight: 900;
	color: var(--hcp-text);
}

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

.hcp-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 100000;
	background: transparent;
}

.hcp-reading-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--hcp-primary), var(--hcp-accent));
	transition: width .08s linear;
}

.hcp-back-to-top {
	position: fixed !important;
	right: max(18px, env(safe-area-inset-right)) !important;
	bottom: max(18px, env(safe-area-inset-bottom)) !important;
	z-index: 99998 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 999px;
	background: var(--hcp-primary);
	color: #fff;
	font-size: 1.45rem;
	line-height: 1;
	font-weight: 900;
	box-shadow: 0 16px 35px rgba(0,0,0,.26);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px) scale(.96);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease, background .18s ease;
}

.hcp-back-to-top:hover,
.hcp-back-to-top:focus {
	background: var(--hcp-accent);
	outline: 3px solid rgba(255,255,255,.35);
	outline-offset: 2px;
}

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

.admin-bar .hcp-back-to-top {
	z-index: 99998 !important;
}

@media (max-width: 720px) {
	.hcp-back-to-top {
		right: max(14px, env(safe-area-inset-right)) !important;
		bottom: max(14px, env(safe-area-inset-bottom)) !important;
		width: 48px;
		height: 48px;
		font-size: 1.35rem;
	}
}

@media (max-width: 720px) {
	.hcp-post-navigation {
		grid-template-columns: 1fr;
	}

	.hcp-post-nav-next {
		text-align: left;
	}
}

/* v9: menu colapsable tipo portal */
.hcp-header-menu-drawer .header-inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px 18px;
	padding: 14px 0;
}

.hcp-header-menu-drawer .site-branding {
	justify-self: center;
	text-align: center;
}

.hcp-header-menu-drawer .site-title {
	font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.hcp-header-menu-drawer .custom-logo-wrap img,
.hcp-header-menu-drawer .custom-logo-link img {
	max-height: 72px;
}

.hcp-header-menu-drawer .main-navigation {
	justify-self: start;
}

.hcp-header-menu-drawer .header-search {
	justify-self: end;
	width: min(360px, 30vw);
}

.hcp-header-menu-drawer .hcp-header-ad-zone {
	grid-column: 1 / -1;
}

.hcp-menu-mode-drawer .menu-toggle {
	display: inline-flex;
	align-items: center;
	border: var(--hcp-border);
	background: var(--hcp-surface);
	color: var(--hcp-text);
	box-shadow: 0 8px 20px rgba(17, 24, 39, .08);
}

.hcp-menu-mode-drawer .menu-toggle:hover,
.hcp-menu-mode-drawer .menu-toggle:focus {
	background: var(--hcp-primary);
	color: #fff;
}

.hcp-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 99980;
	background: rgba(17, 24, 39, .62);
	backdrop-filter: blur(2px);
}

.hcp-menu-drawer {
	position: fixed;
	z-index: 99990;
	top: 0;
	left: 0;
	width: min(340px, 88vw);
	height: 100vh;
	overflow-y: auto;
	padding: 18px 14px 28px;
	background: var(--hcp-header);
	border-right: var(--hcp-border);
	box-shadow: 20px 0 45px rgba(17, 24, 39, .2);
	transform: translateX(-105%);
	transition: transform .22s ease;
}

.hcp-menu-mode-drawer.toggled .hcp-menu-drawer {
	transform: translateX(0);
}

body.hcp-menu-open {
	overflow: hidden;
}

.hcp-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.hcp-drawer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-weight: 950;
	color: var(--hcp-text);
	text-transform: uppercase;
}

.hcp-drawer-brand .custom-logo-link img {
	max-width: 54px;
	max-height: 54px;
	border-radius: 999px;
}

.hcp-drawer-close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 999px;
	font-size: 26px;
	line-height: 1;
	background: var(--hcp-surface);
	color: var(--hcp-text);
}

.hcp-drawer-search {
	margin-bottom: 12px;
}

.hcp-drawer-search .search-form {
	width: 100%;
	border-radius: 14px;
}

.hcp-menu-mode-drawer .primary-menu {
	display: grid;
	gap: 8px;
}

.hcp-menu-mode-drawer .primary-menu a {
	border: var(--hcp-border);
	border-radius: 14px;
	background: #fff;
	padding: 12px 14px;
	color: var(--hcp-text);
}

.hcp-menu-mode-drawer .primary-menu a:hover,
.hcp-menu-mode-drawer .primary-menu a:focus,
.hcp-menu-mode-drawer .primary-menu .current-menu-item > a,
.hcp-menu-mode-drawer .primary-menu .current_page_item > a {
	background: var(--hcp-primary);
	color: #fff;
}

.hcp-menu-mode-drawer .primary-menu .sub-menu,
.hcp-menu-mode-drawer .primary-menu .children {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	background: transparent;
	border: 0;
	padding: 7px 0 0 14px;
	min-width: 0;
}

.hcp-header-menu-classic .main-navigation {
	order: 2;
}

.hcp-header-menu-classic .site-branding {
	order: 1;
}

.hcp-header-menu-classic .header-search {
	order: 3;
}

.hcp-header-menu-classic .hcp-header-ad-zone {
	order: 4;
}

@media (max-width: 720px) {
	.hcp-header-menu-drawer .header-inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.hcp-header-menu-drawer .header-search {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
	}

	.hcp-header-menu-drawer .site-title {
		font-size: clamp(1.15rem, 7vw, 1.8rem);
	}

	.hcp-header-menu-drawer .custom-logo-wrap img,
	.hcp-header-menu-drawer .custom-logo-link img {
		max-height: 58px;
	}
}

.hcp-menu-mode-classic .hcp-drawer-header,
.hcp-menu-mode-classic .hcp-drawer-search,
.hcp-menu-mode-classic .hcp-menu-overlay {
	display: none !important;
}

.hcp-menu-mode-classic .hcp-menu-drawer {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: none;
	transition: none;
}

/* v10: header tipo portal y buscador de menu estilo Argentina Portal */
.hcp-header-layout-portal.hcp-header-menu-drawer .header-inner {
	grid-template-columns: auto auto minmax(0, 1fr) auto;
}

.hcp-header-layout-portal.hcp-header-menu-drawer .site-branding {
	justify-self: start;
	text-align: left;
	justify-items: start;
}

.hcp-header-layout-portal.hcp-header-menu-drawer .site-branding .site-description {
	text-align: left;
}

.hcp-header-layout-portal.hcp-header-menu-drawer .header-search {
	grid-column: 4;
	justify-self: end;
}

.hcp-header-layout-centered.hcp-header-menu-drawer .site-branding {
	justify-self: center;
	text-align: center;
	justify-items: center;
}

.hcp-drawer-search .search-form {
	display: grid;
	width: 100%;
	gap: 10px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.hcp-drawer-search .search-field {
	width: 100%;
	border: var(--hcp-border);
	border-radius: 14px;
	background: #fff;
	padding: 13px 14px;
}

.hcp-drawer-search .search-submit {
	width: 100%;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.entry-meta .tag-links::before {
	content: "#";
	font-weight: 900;
	color: var(--hcp-primary);
}

@media (max-width: 920px) {
	.hcp-header-layout-portal.hcp-header-menu-drawer .header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.hcp-header-layout-portal.hcp-header-menu-drawer .site-branding {
		grid-column: 2;
	}

	.hcp-header-layout-portal.hcp-header-menu-drawer .header-search {
		grid-column: 1 / -1;
		justify-self: stretch;
		width: 100%;
	}
}

@media (max-width: 720px) {
	.hcp-header-layout-portal.hcp-header-menu-drawer .header-inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.hcp-header-layout-portal.hcp-header-menu-drawer .site-branding {
		grid-column: 2;
	}

	.hcp-header-layout-portal.hcp-header-menu-drawer .header-search {
		grid-column: 1 / -1;
	}
}

/* v11: menu colapsable igual a Argentina Portal */
.site-header.hcp-appbar {
	position: relative;
	z-index: 80;
	background: var(--hcp-header);
	color: var(--hcp-header-text);
	border-bottom: 0;
	box-shadow: 0 10px 32px rgba(7, 21, 36, .14);
}

.site-header.hcp-appbar::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 3px;
	background: linear-gradient(90deg, var(--hcp-primary), #fff, var(--hcp-accent));
}

.hcp-appbar-inner {
	width: min(calc(100% - 32px), var(--hcp-container));
	margin: 0 auto;
	min-height: 74px;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 10px 0;
}

.hcp-menu-toggle,
.hcp-menu-close {
	appearance: none;
	cursor: pointer;
	border: 0;
}

.hcp-menu-toggle.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 10px 15px;
	border-radius: 16px;
	color: var(--hcp-header-text);
	background: rgba(255,255,255,.10);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
	flex: 0 0 auto;
}

.hcp-menu-toggle.menu-toggle:hover,
.hcp-menu-toggle.menu-toggle:focus {
	background: rgba(255,255,255,.20);
	color: var(--hcp-header-text);
}

.hcp-menu-lines {
	width: 18px;
	display: grid;
	gap: 4px;
}

.hcp-menu-lines span {
	height: 2px;
	background: currentColor;
	border-radius: 99px;
}

.hcp-compact-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: var(--hcp-header-text);
	flex: 1 1 auto;
}

.hcp-compact-brand:hover,
.hcp-compact-brand:focus {
	color: var(--hcp-header-text);
}

.hcp-logo-frame,
.hcp-compact-mark,
.hcp-menu-mark {
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	border: 2px solid rgba(255,255,255,.72);
	box-shadow: 0 8px 18px rgba(0,0,0,.12);
	overflow: hidden;
	flex: 0 0 auto;
}

.hcp-logo-frame img,
.hcp-compact-mark,
.hcp-menu-mark {
	object-fit: cover;
}

.hcp-logo-frame-compact,
.hcp-logo-frame-compact img,
.hcp-compact-mark {
	width: 50px;
	height: 50px;
}

.hcp-compact-mark,
.hcp-menu-mark {
	color: var(--hcp-primary);
	font-weight: 1000;
	font-size: 22px;
}

.hcp-compact-brand strong {
	display: block;
	max-width: min(44vw, 560px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: clamp(20px, 2.25vw, 34px);
	line-height: .98;
	font-weight: 1000;
	letter-spacing: -.055em;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(0,0,0,.12);
}

.hcp-quick-search {
	display: flex;
	align-items: center;
	width: min(310px, 26vw);
	min-width: 190px;
	gap: 8px;
	padding: 5px 6px 5px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.11);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
	flex: 0 1 auto;
}

.hcp-quick-search input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 14px;
	padding: 8px 0;
}

.hcp-quick-search input::placeholder {
	color: rgba(255,255,255,.66);
}

.hcp-quick-search button {
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 12px;
	min-width: 36px;
	min-height: 36px;
	background: var(--hcp-accent);
	color: #071524;
	cursor: pointer;
	font-weight: 950;
}

.hcp-appbar .hcp-header-ad-zone {
	width: min(calc(100% - 32px), var(--hcp-container));
	margin: 0 auto;
	padding: 0 0 10px;
}

.hcp-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 99980;
	background: rgba(3, 9, 16, .62);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s ease;
	backdrop-filter: none;
}

.hcp-left-menu {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 99990;
	width: min(390px, 92vw);
	background: #fff;
	color: var(--hcp-text);
	box-shadow: 24px 0 60px rgba(7, 21, 36, .28);
	transform: translateX(-105%);
	transition: transform .25s ease;
	overflow-y: auto;
}

.admin-bar .hcp-left-menu {
	top: 32px;
}

body.hcp-menu-open {
	overflow: hidden;
}

body.hcp-menu-open .hcp-menu-overlay {
	opacity: 1;
	pointer-events: auto;
}

body.hcp-menu-open .hcp-left-menu {
	transform: translateX(0);
}

.hcp-menu-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 18px;
	padding: 26px;
	background: radial-gradient(circle at 85% 0%, rgba(245,158,11,.28), transparent 36%), linear-gradient(135deg, #071524, var(--hcp-primary));
	color: #fff;
}

.hcp-menu-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	color: #fff;
}

.hcp-menu-brand:hover,
.hcp-menu-brand:focus {
	color: #fff;
}

.hcp-logo-frame-menu,
.hcp-logo-frame-menu img,
.hcp-menu-mark {
	width: 58px;
	height: 58px;
}

.hcp-menu-brand strong {
	display: block;
	font-size: 19px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -.04em;
}

.hcp-menu-brand small {
	display: block;
	margin-top: 6px;
	color: rgba(255,255,255,.74);
	font-size: 12px;
	line-height: 1.25;
}

.hcp-menu-close.hcp-drawer-close {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(255,255,255,.14);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	padding: 0;
	flex: 0 0 auto;
}

.hcp-menu-search {
	display: grid;
	gap: 10px;
	padding: 16px 16px 10px;
	border-bottom: 1px solid rgba(107,114,128,.18);
}

.hcp-menu-search input {
	width: 100%;
	border: 1px solid rgba(107,114,128,.24);
	border-radius: 14px;
	padding: 13px 14px;
	outline: 0;
	background: #fff;
	color: var(--hcp-text);
}

.hcp-menu-search button {
	border: 0;
	border-radius: 14px;
	padding: 13px 16px;
	background: var(--hcp-primary);
	color: #fff;
	cursor: pointer;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.hcp-drawer-nav {
	padding: 8px 16px 18px;
}

.hcp-drawer-nav .primary-menu,
.hcp-drawer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}

.hcp-drawer-nav .primary-menu li {
	position: static;
}

.hcp-drawer-nav .primary-menu a,
.hcp-drawer-nav li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 14px;
	border: 1px solid rgba(107,114,128,.18);
	border-radius: 15px;
	background: #fff;
	color: var(--hcp-text);
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.hcp-drawer-nav .primary-menu a:hover,
.hcp-drawer-nav .primary-menu a:focus,
.hcp-drawer-nav .primary-menu .current-menu-item > a,
.hcp-drawer-nav .primary-menu .current_page_item > a,
.hcp-drawer-nav li a:hover,
.hcp-drawer-nav li a:focus {
	background: rgba(124,58,237,.08);
	color: var(--hcp-primary);
	border-color: rgba(124,58,237,.20);
}

.hcp-drawer-nav .primary-menu .sub-menu,
.hcp-drawer-nav .primary-menu .children {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	background: transparent;
	border: 0;
	padding: 7px 0 0 14px;
	min-width: 0;
	display: grid;
	gap: 7px;
}

.hcp-header-menu-classic .hcp-appbar-inner {
	justify-content: center;
}

.hcp-header-menu-classic + nav.main-navigation {
	width: min(calc(100% - 32px), var(--hcp-container));
	margin: 12px auto 0;
}

@media (max-width: 920px) {
	.hcp-appbar-inner {
		gap: 12px;
	}

	.hcp-quick-search {
		width: min(260px, 34vw);
		min-width: 160px;
	}

	.hcp-compact-brand strong {
		font-size: clamp(18px, 4vw, 28px);
		max-width: 40vw;
	}
}

@media (max-width: 720px) {
	.hcp-appbar-inner {
		width: min(calc(100% - 20px), var(--hcp-container));
		min-height: 66px;
		gap: 10px;
	}

	.admin-bar .hcp-left-menu {
		top: 46px;
	}

	.hcp-menu-toggle.menu-toggle {
		min-height: 42px;
		padding: 9px 11px;
		border-radius: 14px;
	}

	.hcp-menu-toggle-text {
		display: none;
	}

	.hcp-logo-frame-compact,
	.hcp-logo-frame-compact img,
	.hcp-compact-mark {
		width: 44px;
		height: 44px;
	}

	.hcp-compact-brand {
		gap: 9px;
	}

	.hcp-compact-brand strong {
		font-size: clamp(18px, 5.5vw, 25px);
		max-width: 54vw;
	}

	.hcp-quick-search {
		display: none;
	}

	.hcp-left-menu {
		width: min(360px, 94vw);
	}

	.hcp-menu-head {
		padding: 22px 18px;
	}
}

@media (max-width: 420px) {
	.admin-bar .hcp-left-menu {
		top: 0;
	}

	.hcp-appbar-inner {
		width: min(calc(100% - 16px), var(--hcp-container));
	}

	.hcp-compact-brand strong {
		max-width: 50vw;
	}
}

/* v12: identidad configurable en header y menu lateral */
.hcp-brand-text {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.hcp-compact-brand .hcp-brand-text small {
	display: block;
	max-width: min(44vw, 560px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.15;
	color: rgba(255,255,255,.76);
	text-transform: none;
	text-shadow: none;
}

.hcp-compact-brand-with-description strong {
	font-size: clamp(18px, 2vw, 30px);
}

.hcp-menu-brand .hcp-brand-text {
	gap: 0;
}

.hcp-menu-head-no-brand {
	justify-content: flex-end;
	align-items: center;
	min-height: 86px;
}

.hcp-appbar-inner > .hcp-quick-search:first-child,
.hcp-menu-toggle + .hcp-quick-search {
	margin-left: auto;
}

@media (max-width: 720px) {
	.hcp-compact-brand .hcp-brand-text small {
		max-width: 54vw;
		font-size: 11px;
	}
}


/* v13: fuentes configurables y ajustes finos del logo en el menu */
body {
	font-size: var(--hcp-font-body);
}

.entry-meta {
	font-size: var(--hcp-font-meta);
}

.post-card-title {
	font-size: var(--hcp-font-card-title);
}

.page-title {
	font-size: clamp(22px, 5vw, var(--hcp-font-archive-title));
}

.hcp-home-title {
	font-size: clamp(0px, 5vw, var(--hcp-font-home-title));
}

.entry-title {
	font-size: clamp(24px, 6vw, var(--hcp-font-single-title));
}

.entry-content {
	font-size: var(--hcp-font-content);
}

.hcp-menu-toggle.menu-toggle,
.hcp-drawer-nav .primary-menu a,
.hcp-drawer-nav li a,
.primary-menu a,
.hcp-menu-search button {
	font-size: var(--hcp-font-menu);
}

.hcp-logo-frame-compact,
.hcp-logo-frame-compact img,
.hcp-compact-mark {
	width: var(--hcp-header-logo-size);
	height: var(--hcp-header-logo-size);
}

.hcp-logo-frame-menu,
.hcp-menu-mark {
	width: var(--hcp-drawer-logo-size);
	height: var(--hcp-drawer-logo-size);
	transform: translate(var(--hcp-drawer-logo-shift-x), var(--hcp-drawer-logo-shift-y));
}

.hcp-logo-frame-menu img {
	width: var(--hcp-drawer-logo-size);
	height: var(--hcp-drawer-logo-size);
	transform: scale(var(--hcp-drawer-logo-zoom));
	transform-origin: center center;
}

@media (max-width: 720px) {
	.hcp-logo-frame-compact,
	.hcp-logo-frame-compact img,
	.hcp-compact-mark {
		width: min(var(--hcp-header-logo-size), 52px);
		height: min(var(--hcp-header-logo-size), 52px);
	}

	.entry-title {
		font-size: clamp(24px, 10vw, var(--hcp-font-single-title));
	}

	.page-title {
		font-size: clamp(22px, 9vw, var(--hcp-font-archive-title));
	}
}

/* v17: responsive movil y miniaturas completas */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.post-grid,
.post-card,
.post-card-body,
.hcp-link-card,
.hcp-link-title,
.entry-content,
.site-main,
.site-main-single,
.container {
	min-width: 0;
}

.post-card-title,
.entry-title,
.page-title,
.hcp-home-title,
.hcp-link-title {
	overflow-wrap: anywhere;
	word-break: normal;
}

.entry-content img,
.entry-content video,
.entry-content iframe,
.entry-content embed,
.entry-content object,
.wp-block-image img,
.wp-block-cover,
.wp-block-embed,
.wp-block-embed iframe {
	max-width: 100%;
}

.entry-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.post-card-media,
.hcp-link-thumb {
	background: var(--hcp-surface);
}

.post-card-media img,
.hcp-link-thumb img {
	object-position: center center;
}

@media (max-width: 720px) {
	.container,
	.hcp-appbar-inner,
	.hcp-appbar .hcp-header-ad-zone {
		width: min(calc(100% - 18px), var(--hcp-container));
	}

	.page-container {
		padding-top: 16px;
	}

	.post-grid,
	.hcp-links-layout-thumbnails .hcp-links-list {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 20px;
	}

	.post-card {
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
	}

	.post-card-media {
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: auto;
		min-height: 0;
	}

	.post-card-media img {
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
	}

	.post-card-placeholder {
		aspect-ratio: 16 / 9;
	}

	.post-card-body {
		padding: 16px;
	}

	.post-card-title {
		font-size: clamp(18px, 5.7vw, var(--hcp-font-card-title));
		line-height: 1.12;
	}

	.entry-meta {
		font-size: clamp(11px, 3.5vw, var(--hcp-font-meta));
		line-height: 1.35;
	}

	.hcp-links-layout-thumbnails .hcp-link-card,
	.hcp-link-card {
		width: 100%;
		max-width: 100%;
	}

	.hcp-links-layout-thumbnails .hcp-link-thumb,
	.hcp-link-thumb {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 112px;
		width: 112px;
		aspect-ratio: 16 / 9;
	}

	.hcp-links-layout-thumbnails .hcp-link-thumb img,
	.hcp-link-thumb img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.hcp-related-inline,
	.hcp-after-post,
	.comments-area,
	.entry-tags,
	.single-featured-image {
		max-width: 100%;
	}

	.single-featured-image img,
	.page-featured-image img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.hcp-menu-head,
	.hcp-menu-search,
	.hcp-drawer-nav {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.post-grid {
		gap: 18px;
	}

	.hcp-links-layout-thumbnails .hcp-link-card,
	.hcp-link-card {
		align-items: center;
		gap: 10px;
	}

	.hcp-links-layout-thumbnails .hcp-link-thumb,
	.hcp-link-thumb {
		flex-basis: 104px;
		width: 104px;
	}

	.post-card-body {
		padding: 15px;
	}
}


/* v18: anuncios responsive, header color editable, scroll infinito y filtros */
.site-header.hcp-appbar,
.hcp-header-menu-drawer .header-inner,
.hcp-header-menu-classic .header-inner {
	background: var(--hcp-header);
	color: var(--hcp-header-text);
}

.hcp-appbar::after {
	background: linear-gradient(90deg, var(--hcp-primary), var(--hcp-accent));
}

.hcp-code-block,
.hcp-code-block *,
.hcp-header-ad,
.hcp-footer-visits,
.hcp-footer-visits * {
	box-sizing: border-box;
	max-width: 100%;
}

.hcp-header-ad-zone,
.hcp-header-ad,
.hcp-footer-visits {
	display: block;
	visibility: visible;
	overflow: hidden;
}

.hcp-header-ad-zone {
	text-align: center;
}

.hcp-header-ad > *,
.hcp-footer-visits > *,
.hcp-code-block iframe,
.hcp-code-block ins,
.hcp-code-block embed,
.hcp-code-block object,
.hcp-code-block img,
.hcp-footer-visits iframe,
.hcp-footer-visits ins,
.hcp-footer-visits img {
	max-width: 100% !important;
}

.hcp-code-block iframe,
.hcp-code-block ins,
.hcp-footer-visits iframe,
.hcp-footer-visits ins {
	min-width: 0 !important;
}

.hcp-code-block .adsbygoogle,
.hcp-header-ad .adsbygoogle {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

.hcp-infinite-status {
	min-height: 24px;
	margin: 28px auto 12px;
	text-align: center;
	font-weight: 800;
	color: var(--hcp-muted);
}

.hcp-infinite-status.is-loading::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 8px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 999px;
	vertical-align: -2px;
	animation: hcp-spin .8s linear infinite;
}

.hcp-infinite-status.is-error {
	color: #b91c1c;
}

.hcp-infinite-sentinel {
	width: 100%;
	height: 1px;
}

.hcp-pagination-hidden-when-infinite {
	display: none;
}

@keyframes hcp-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.hcp-appbar .hcp-header-ad-zone,
	.hcp-header-ad-zone,
	.hcp-footer-visits {
		width: min(calc(100% - 20px), var(--hcp-container));
		margin-left: auto;
		margin-right: auto;
	}

	.hcp-header-ad {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.hcp-header-ad-zone,
	.hcp-appbar .hcp-header-ad-zone {
		padding-bottom: 8px;
	}

	.hcp-code-block iframe,
	.hcp-code-block ins,
	.hcp-footer-visits iframe,
	.hcp-footer-visits ins {
		width: 100% !important;
	}
}

/* v19: header fijo real, relacionadas moviles completas y enlaces relacionados desparramados */
body.hcp-sticky-header .site-header.hcp-appbar {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99950;
}

body.hcp-sticky-header.hcp-sticky-ready .site-header.hcp-appbar {
	position: fixed;
	top: 0;
}

body.admin-bar.hcp-sticky-header.hcp-sticky-ready .site-header.hcp-appbar {
	top: 32px;
}

body.hcp-sticky-header.hcp-sticky-ready #page {
	padding-top: var(--hcp-sticky-header-height, 0px);
}

body.hcp-sticky-header .hcp-menu-overlay,
body.hcp-sticky-header .hcp-left-menu {
	z-index: 100000;
}

.hcp-related-inline {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.hcp-related-inline-item {
	max-width: 760px;
	margin: 22px auto;
}

.hcp-related-inline-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px;
	border-radius: 16px;
	background: var(--hcp-surface);
	border: var(--hcp-border);
	color: var(--hcp-text);
	font-weight: 950;
	box-shadow: 0 10px 24px rgba(17, 24, 39, .045);
}

.hcp-related-inline-link:hover,
.hcp-related-inline-link:focus {
	background: #fff;
	color: var(--hcp-primary);
}

.hcp-related-inline-thumb {
	flex: 0 0 130px;
	width: 130px;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: var(--hcp-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hcp-related-inline-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hcp-related-inline-title {
	min-width: 0;	overflow-wrap: anywhere;
	line-height: 1.18;
}

@media (max-width: 782px) {
	body.admin-bar.hcp-sticky-header.hcp-sticky-ready .site-header.hcp-appbar {
		top: 46px;
	}
}

@media (max-width: 720px) {
	.hcp-after-post .hcp-links-layout-thumbnails .hcp-links-list,
	.hcp-links-layout-thumbnails .hcp-links-list {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.hcp-after-post .hcp-links-layout-thumbnails .hcp-link-card,
	.hcp-links-layout-thumbnails .hcp-link-card {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 0 !important;
		overflow: hidden;
		align-items: stretch;
	}

	.hcp-after-post .hcp-links-layout-thumbnails .hcp-link-thumb,
	.hcp-links-layout-thumbnails .hcp-link-thumb {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100% !important;
		flex: none !important;
		aspect-ratio: auto;
		min-height: 0;
		border-radius: 0 !important;
		background: var(--hcp-surface);
	}

	.hcp-after-post .hcp-links-layout-thumbnails .hcp-link-thumb img,
	.hcp-links-layout-thumbnails .hcp-link-thumb img {
		width: 100%;
		height: auto !important;
		max-height: none;
		object-fit: contain;
	}

	.hcp-after-post .hcp-links-layout-thumbnails .hcp-link-title,
	.hcp-links-layout-thumbnails .hcp-link-title {
		display: block;
		padding: 14px 15px 16px !important;
		line-height: 1.16;
	}

	.hcp-related-inline-item {
		max-width: 100%;
		margin: 20px auto;
	}

	.hcp-inline-layout-thumbnails .hcp-related-inline-link {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 0;
		overflow: hidden;
		background: var(--hcp-bg);
	}

	.hcp-inline-layout-thumbnails .hcp-related-inline-thumb {
		width: 100%;
		flex: none;
		aspect-ratio: auto;
		border-radius: 0;
	}

	.hcp-inline-layout-thumbnails .hcp-related-inline-thumb img {
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
	}

	.hcp-inline-layout-thumbnails .hcp-related-inline-title {
		display: block;
		padding: 14px 15px 16px;
		font-size: clamp(17px, 5vw, 21px);
	}
}


/* v20: header fijo reforzado con clase propia y fallback sin depender solo del body_class */
body.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky,
body.hcp-sticky-header .site-header.hcp-appbar.hcp-is-sticky,
.site-header.hcp-appbar.hcp-is-sticky {
	position: fixed !important;
	top: var(--hcp-sticky-admin-offset, 0px) !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 999999 !important;
	will-change: transform;
}

body.admin-bar.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky,
body.admin-bar.hcp-sticky-header .site-header.hcp-appbar.hcp-is-sticky,
body.admin-bar .site-header.hcp-appbar.hcp-is-sticky {
	top: 32px !important;
}

body.hcp-sticky-active #page,
body.hcp-sticky-header #page {
	padding-top: var(--hcp-sticky-header-height, 96px) !important;
}

body.hcp-sticky-active .hcp-menu-overlay,
body.hcp-sticky-active .hcp-left-menu,
body.hcp-sticky-header .hcp-menu-overlay,
body.hcp-sticky-header .hcp-left-menu {
	z-index: 1000000 !important;
}

@media (max-width: 782px) {
	body.admin-bar.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky,
	body.admin-bar.hcp-sticky-header .site-header.hcp-appbar.hcp-is-sticky,
	body.admin-bar .site-header.hcp-appbar.hcp-is-sticky {
		top: 46px !important;
	}
}

/* v21: sticky header progresivo para no tapar anuncios superiores antes de hacer scroll */
body.hcp-sticky-header:not(.hcp-sticky-active) .site-header.hcp-appbar.hcp-is-sticky,
body.hcp-sticky-header:not(.hcp-sticky-active) .site-header.hcp-appbar {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
}

body.hcp-sticky-header:not(.hcp-sticky-active) #page {
	padding-top: 0 !important;
}

body.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky {
	position: fixed !important;
	top: var(--hcp-sticky-admin-offset, 0px) !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 999999 !important;
}

body.hcp-sticky-active #page {
	padding-top: var(--hcp-sticky-header-height, 78px) !important;
}

body.admin-bar.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky {
	top: 32px !important;
}

@media (max-width: 782px) {
	body.admin-bar.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky {
		top: 46px !important;
	}
}

/* v22: salida neutral para codigos de cabecera y Adsense automatico sin bloqueo por envoltorios */
.hcp-top-code-zone {
	width: min(calc(100% - 32px), var(--hcp-container));
	max-width: 100%;
	margin: 8px auto 0;
	display: block;
	text-align: center;
	visibility: visible !important;
	overflow: visible !important;
	contain: none !important;
	isolation: auto !important;
	position: relative;
	z-index: 1;
}

.hcp-top-code-slot {
	width: min(100%, 970px);
	max-width: 100%;
	margin: 0 auto 12px;
	display: block;
	visibility: visible !important;
	overflow: visible !important;
	contain: none !important;
	min-height: 1px;
	text-align: center;
	box-sizing: border-box;
}

.hcp-top-code-slot > *,
.hcp-top-code-slot iframe,
.hcp-top-code-slot embed,
.hcp-top-code-slot object,
.hcp-top-code-slot img,
.hcp-top-code-slot ins {
	max-width: 100% !important;
	box-sizing: border-box;
}

.hcp-top-code-slot iframe,
.hcp-top-code-slot embed,
.hcp-top-code-slot object {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.hcp-top-code-slot ins {
	display: block;
	margin-left: auto;
	margin-right: auto;
	min-width: 0 !important;
}

@media (max-width: 1024px) {
	.hcp-top-code-zone {
		width: min(calc(100% - 20px), var(--hcp-container));
	}

	.hcp-top-code-slot {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.hcp-top-code-zone {
		width: min(calc(100% - 18px), var(--hcp-container));
		margin-top: 6px;
	}

	.hcp-top-code-slot iframe,
	.hcp-top-code-slot ins {
		width: 100% !important;
	}
}

/* v23: compatibilidad con barra de administrador de WordPress */
body.hcp-sticky-active .site-header.hcp-appbar.hcp-is-sticky,
body.hcp-sticky-header .site-header.hcp-appbar.hcp-is-sticky,
.site-header.hcp-appbar.hcp-is-sticky {
	z-index: 9000 !important;
}

body.hcp-sticky-active .hcp-menu-overlay,
body.hcp-sticky-header .hcp-menu-overlay,
.hcp-menu-overlay {
	z-index: 8990 !important;
}

body.hcp-sticky-active .hcp-left-menu,
body.hcp-sticky-header .hcp-left-menu,
.hcp-left-menu,
.hcp-menu-drawer {
	z-index: 9010 !important;
}

body.admin-bar .hcp-left-menu,
body.admin-bar .hcp-menu-drawer {
	top: var(--hcp-sticky-admin-offset, 32px) !important;
	height: calc(100vh - var(--hcp-sticky-admin-offset, 32px)) !important;
}

@media (max-width: 782px) {
	body.admin-bar .hcp-left-menu,
	body.admin-bar .hcp-menu-drawer {
		top: 46px !important;
		height: calc(100vh - 46px) !important;
	}
}


/* v25: el color azul configurable es solo para enlaces internos del contenido.
   No afecta titulos de tarjetas en Home, archivos, busquedas, categorias o etiquetas. */
.entry-content a:not(.wp-block-button__link):not(.hcp-related-inline-link):not(.post-card-media),
.page-content a:not(.wp-block-button__link),
.comment-content a,
.textwidget a {
	color: var(--hcp-link);
}

.entry-content a:not(.wp-block-button__link):hover,
.entry-content a:not(.wp-block-button__link):focus,
.page-content a:not(.wp-block-button__link):hover,
.page-content a:not(.wp-block-button__link):focus,
.comment-content a:hover,
.comment-content a:focus,
.textwidget a:hover,
.textwidget a:focus {
	color: var(--hcp-accent);
}

.hcp-inline-layout-titles.hcp-related-inline-item {
	margin: 18px 0;
	max-width: none;
}

.hcp-inline-layout-titles .hcp-related-inline-link {
	display: inline;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--hcp-link);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.hcp-inline-layout-titles .hcp-related-inline-link:hover,
.hcp-inline-layout-titles .hcp-related-inline-link:focus {
	background: transparent;
	color: var(--hcp-accent);
}

.hcp-inline-layout-titles .hcp-related-inline-title {
	display: inline;
}

@media (max-width: 720px) {
	.hcp-inline-layout-titles.hcp-related-inline-item {
		margin: 17px 0;
	}

	.hcp-inline-layout-titles .hcp-related-inline-link {
		font-size: 1rem;
		line-height: 1.35;
	}
}


/* v25: los titulos de listados nunca toman el color azul de enlaces internos. */
.home .post-card-title a,
.blog .post-card-title a,
.archive .post-card-title a,
.category .post-card-title a,
.tag .post-card-title a,
.search .post-card-title a,
.post-grid .post-card-title a,
.hcp-infinite-grid .post-card-title a,
.post-card .post-card-title a {
	color: var(--hcp-text) !important;
	text-decoration: none !important;
}

.home .post-card-title a:hover,
.home .post-card-title a:focus,
.blog .post-card-title a:hover,
.blog .post-card-title a:focus,
.archive .post-card-title a:hover,
.archive .post-card-title a:focus,
.category .post-card-title a:hover,
.category .post-card-title a:focus,
.tag .post-card-title a:hover,
.tag .post-card-title a:focus,
.search .post-card-title a:hover,
.search .post-card-title a:focus,
.post-grid .post-card-title a:hover,
.post-grid .post-card-title a:focus,
.hcp-infinite-grid .post-card-title a:hover,
.hcp-infinite-grid .post-card-title a:focus,
.post-card .post-card-title a:hover,
.post-card .post-card-title a:focus {
	color: var(--hcp-primary) !important;
}

.entry-content .hcp-inline-layout-titles .hcp-related-inline-link,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link {
	color: var(--hcp-link) !important;
}

.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:hover,
.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:focus,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:hover,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:focus {
	color: var(--hcp-accent) !important;
}

/* v27: boton volver arriba reforzado para quedar visible sobre header, anuncios y layout movil sin tapar admin bar. */

/* v28: titulos siempre en mayusculas, enlaces internos azules en movil y miniaturas relacionadas compactas. */
h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.entry-title,
.post-card-title,
.section-title,
.widget-title,
.comments-title,
.comment-reply-title,
.hcp-home-title,
.hcp-link-title,
.hcp-related-inline-title,
.site-title,
.site-branding .site-name,
.hcp-drawer-title {
	text-transform: uppercase;
}

.hcp-inline-layout-titles .hcp-related-inline-link,
.hcp-inline-layout-titles .hcp-related-inline-link:visited,
.entry-content .hcp-inline-layout-titles .hcp-related-inline-link,
.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:visited,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:visited {
	color: var(--hcp-link) !important;
}

.hcp-inline-layout-titles .hcp-related-inline-link:hover,
.hcp-inline-layout-titles .hcp-related-inline-link:focus,
.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:hover,
.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:focus,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:hover,
.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:focus {
	color: var(--hcp-accent) !important;
}

@media (max-width: 720px) {
	.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link,
	.single .entry-content .hcp-inline-layout-titles .hcp-related-inline-link:visited,
	.entry-content .hcp-inline-layout-titles .hcp-related-inline-link,
	.entry-content .hcp-inline-layout-titles .hcp-related-inline-link:visited {
		color: var(--hcp-link) !important;
		text-decoration: underline;
		text-decoration-thickness: 2px;
		text-underline-offset: 3px;
	}

	.single .entry-content .hcp-inline-layout-thumbnails.hcp-related-inline-item,
	.entry-content .hcp-inline-layout-thumbnails.hcp-related-inline-item {
		max-width: 760px;
		margin: 20px 0;
	}

	.single .entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-link,
	.entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-link {
		display: flex !important;
		grid-template-columns: initial !important;
		align-items: center;
		gap: 12px;
		padding: 12px !important;
		border-radius: 16px;
		background: var(--hcp-surface);
		overflow: visible;
	}

	.single .entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-thumb,
	.entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-thumb {
		flex: 0 0 118px !important;
		width: 118px !important;
		max-width: 42vw;
		aspect-ratio: 16 / 9 !important;
		border-radius: 12px !important;
		overflow: hidden;
		background: var(--hcp-bg);
	}

	.single .entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-thumb img,
	.entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-thumb img {
		width: 100%;
		height: 100% !important;
		object-fit: contain;
		max-height: none;
	}

	.single .entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-title,
	.entry-content .hcp-inline-layout-thumbnails .hcp-related-inline-title {
		padding: 0 !important;
		font-size: clamp(15px, 4.4vw, 19px);
		line-height: 1.15;
	}
}

/* v29: footer fijo inferior configurable y boton volver arriba por encima de la barra. */
.hcp-fixed-footer-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: var(--hcp-fixed-footer-bg, #000);
	text-align: center;
	z-index: var(--hcp-fixed-footer-z, 99990);
	padding: var(--hcp-fixed-footer-padding-y, 14px) max(10px, env(safe-area-inset-left)) calc(var(--hcp-fixed-footer-padding-y, 14px) + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
	box-sizing: border-box;
	box-shadow: 0 -10px 30px rgba(0,0,0,.18);
}

.hcp-fixed-footer-bar a {
	color: var(--hcp-fixed-footer-color, #ffd700) !important;
	font-weight: var(--hcp-fixed-footer-font-weight, 900);
	text-transform: uppercase;
	text-decoration: none;
	font-size: var(--hcp-fixed-footer-font-size, 20px);
	letter-spacing: var(--hcp-fixed-footer-letter-spacing, 1px);
	display: block;
	line-height: 1.15;
}

.hcp-fixed-footer-bar a:hover,
.hcp-fixed-footer-bar a:focus {
	color: var(--hcp-fixed-footer-hover, #fff000) !important;
	outline: none;
}

body.hcp-fixed-footer-bar-active {
	padding-bottom: calc(var(--hcp-fixed-footer-height, 60px) + env(safe-area-inset-bottom));
}

body.hcp-fixed-footer-bar-active .hcp-back-to-top {
	bottom: calc(var(--hcp-back-to-top-fixed-footer-offset, 82px) + env(safe-area-inset-bottom)) !important;
	z-index: 999999 !important;
}

@media (max-width: 720px) {
	.hcp-fixed-footer-bar a {
		font-size: min(var(--hcp-fixed-footer-font-size, 20px), 20px);
	}

	body.hcp-fixed-footer-bar-active .hcp-back-to-top {
		bottom: calc(var(--hcp-back-to-top-fixed-footer-offset, 82px) + env(safe-area-inset-bottom)) !important;
	}
}


/* v30: enlaces relacionados internos de solo titulo siempre en azul configurable, tambien en moviles. */
body.single .entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link,
body.single .entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:visited,
body.single .entry-content aside.hcp-inline-layout-titles > a.hcp-related-inline-link,
body.single .entry-content aside.hcp-inline-layout-titles > a.hcp-related-inline-link:visited,
body.single .entry-content a.hcp-related-inline-text-link,
body.single .entry-content a.hcp-related-inline-text-link:visited,
body.single .entry-content a.hcp-force-blue-related-link,
body.single .entry-content a.hcp-force-blue-related-link:visited,
.entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link,
.entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:visited,
.entry-content a.hcp-related-inline-text-link,
.entry-content a.hcp-related-inline-text-link:visited,
.entry-content a.hcp-force-blue-related-link,
.entry-content a.hcp-force-blue-related-link:visited {
	color: var(--hcp-link, #0d6efd) !important;
	-webkit-text-fill-color: var(--hcp-link, #0d6efd) !important;
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
	text-underline-offset: 3px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.single .entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link .hcp-related-inline-title,
body.single .entry-content a.hcp-related-inline-text-link .hcp-related-inline-title,
body.single .entry-content a.hcp-force-blue-related-link .hcp-related-inline-title,
.entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link .hcp-related-inline-title,
.entry-content a.hcp-related-inline-text-link .hcp-related-inline-title,
.entry-content a.hcp-force-blue-related-link .hcp-related-inline-title {
	color: inherit !important;
	-webkit-text-fill-color: inherit !important;
}

body.single .entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:hover,
body.single .entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:focus,
body.single .entry-content a.hcp-related-inline-text-link:hover,
body.single .entry-content a.hcp-related-inline-text-link:focus,
body.single .entry-content a.hcp-force-blue-related-link:hover,
body.single .entry-content a.hcp-force-blue-related-link:focus,
.entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:hover,
.entry-content .hcp-related-inline-item.hcp-inline-layout-titles > a.hcp-related-inline-link:focus,
.entry-content a.hcp-related-inline-text-link:hover,
.entry-content a.hcp-related-inline-text-link:focus,
.entry-content a.hcp-force-blue-related-link:hover,
.entry-content a.hcp-force-blue-related-link:focus {
	color: var(--hcp-accent, #7c3aed) !important;
	-webkit-text-fill-color: var(--hcp-accent, #7c3aed) !important;
}
