@font-face {
	font-family: "OfficinaSansITCPro";
	src: url("../fonts/OfficinaSansITCPro-Book.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OfficinaSansITCPro";
	src: url("../fonts/OfficinaSansITCPro-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OfficinaSansStd";
	src: url("../fonts/OfficinaSansStd-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "OfficinaSansStd";
	src: url("../fonts/OfficinaSansStd-BookItalic.otf") format("opentype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

:root {
	--color-ink: #241E1C;
	--color-muted: #706560;
	--color-soft: #F4EEE1;
	--color-background: #FAF6EE;
	--color-paper: #ffffff;
	--color-surface: #F4EEE1;
	--color-surface-strong: #E7DFD0;
	--color-border: #E4DBD0;
	--color-border-strong: #CFC3B3;
	--color-primary: #2D6A4F;
	--color-primary-hover: #1B4332;
	--color-primary-soft: #E2EFE9;
	--color-secondary: #B04D38;
	--color-secondary-hover: #953E2A;
	--color-secondary-soft: #FDF0ED;
	--color-accent: #D98A29;
	--color-accent-soft: #FAF2E6;
	--color-sky: #4D6D82;
	--color-sky-soft: #F0F4F6;
	--color-highlight: #D98A29;
	--color-highlight-soft: #FAF2E6;
	--color-premium: #7A4B62;
	--color-premium-soft: #F6EFF2;
	--color-pink: #9F627A;
	--color-pink-soft: #F6EEF2;
	--color-on-primary: #ffffff;
	--color-on-secondary: #ffffff;
	--color-on-dark: #ffffff;
	--shadow-soft: 0 12px 30px rgba(36, 30, 28, 0.06), 0 2px 6px rgba(36, 30, 28, 0.02);
	--shadow-hover: 0 16px 40px rgba(36, 30, 28, 0.1), 0 4px 12px rgba(36, 30, 28, 0.04);
	--radius-xs: 4px;
	--radius: 8px;
	--radius-md: 10px;
	--radius-lg: 12px;
	--max-width: 1240px;
	--font-sans: "Plus Jakarta Sans", "OfficinaSansITCPro", "OfficinaSansStd", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Plus Jakarta Sans", "Lora", "OfficinaSansStd", "OfficinaSansITCPro", serif;
	--motion-fast: 140ms;
	--motion-standard: 190ms;
	--motion-medium: 240ms;
	--motion-image: 280ms;
	--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--space-xs: 0.35rem;
	--space-sm: 0.65rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2.2rem;
	--space-section: clamp(2rem, 4.5vw, 3rem);
	--space-gutter: clamp(1rem, 3vw, 1.25rem);
	--text-eyebrow: 0.82rem;
	--text-body-sm: 0.92rem;
	--text-card-title: clamp(1.05rem, 2vw, 1.32rem);
	--text-section-title: clamp(1.6rem, 3.5vw, 2.4rem);
	--focus-ring: 0 0 0 4px rgba(45, 106, 79, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--color-background);
	scroll-behavior: smooth;
}

body {
	background: var(--color-background);
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	line-height: 1.58;
	margin: 0;
	text-rendering: optimizeLegibility;
}

body::before {
	content: none;
	display: none;
}

.page-transition {
	background: var(--color-background);
	display: grid;
	inset: 0;
	opacity: 0;
	place-items: center;
	pointer-events: none;
	position: fixed;
	transition: opacity 560ms var(--ease-out), visibility 0s linear 560ms;
	visibility: hidden;
	z-index: 140;
}

.page-transition::before,
.page-transition::after {
	content: "";
	inset: 0;
	position: absolute;
}

.page-transition::before {
	background: var(--color-primary);
	inset: 0 auto 0 0;
	width: min(18vw, 190px);
}

.page-transition::after {
	background: var(--color-secondary);
	bottom: auto;
	height: 7px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 520ms var(--ease-out) 80ms;
}

.page-transition__panel {
	align-items: center;
	color: var(--color-primary-hover);
	display: grid;
	gap: 0.65rem;
	justify-items: center;
	opacity: 0;
	position: relative;
	transition: opacity 420ms var(--ease-out) 120ms;
	z-index: 1;
}

.page-transition__kicker {
	display: none !important;
	color: var(--color-muted);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.page-transition__mark {
	background: var(--color-primary);
	border-radius: 50%;
	box-shadow: 0 16px 34px rgba(32, 36, 33, 0.12);
	color: var(--color-on-primary);
	font-size: 2.35rem;
	opacity: 0;
	padding: 0.72rem;
	transition: opacity 220ms var(--ease-out);
}

.page-transition__mark--logo {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.page-transition__logo {
	display: block;
	height: auto;
	max-height: 88px;
	max-width: min(280px, 60vw);
	object-fit: contain;
	width: auto;
}

.page-transition__icon {
	display: block;
	line-height: 1;
}

.page-transition__line {
	background: var(--color-secondary-soft);
	display: none;
	height: 2px;
	overflow: hidden;
	position: relative;
	width: min(220px, 42vw);
}

html.page-transition-icons-ready .page-transition__mark {
	opacity: 1;
}

html.page-transition-icons-ready .page-transition__line {
	display: block;
}

.page-transition__line::after {
	animation: pueblito-transition-line 720ms var(--ease-out) infinite;
	background: var(--color-primary);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 38%;
}

.page-transition.is-active,
html.page-is-loading .page-transition {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
	visibility: visible;
}

.page-transition.is-active::after,
html.page-is-loading .page-transition::after {
	transform: scaleX(1);
}

.page-transition.is-active .page-transition__panel,
html.page-is-loading .page-transition__panel {
	opacity: 1;
}

@keyframes pueblito-transition-line {
	0% {
		transform: translateX(-120%);
	}

	100% {
		transform: translateX(270%);
	}
}

/* Disable CSS transitions when GSAP is active to avoid conflicts */
html.js-gsap .page-transition,
html.js-gsap .page-transition::after,
html.js-gsap .page-transition__panel,
html.js-gsap .page-transition__mark,
html.js-gsap .page-transition__line {}

html.js-gsap .listing-card,
html.js-gsap .listing-card__rating-badge,
html.js-gsap .post-card,
html.js-gsap .rubro-chip,
html.js-gsap .rubro-chip__icon,
html.js-gsap .localidad-card,
html.js-gsap .localidad-card__icon,
html.js-gsap .button,
html.js-gsap .hero-actions__link,
html.js-gsap .site-branding,
html.js-gsap .site-navigation a,
html.js-gsap .menu-toggle {
	transition-property: color, background-color, border-color, opacity, box-shadow, filter !important;
}

html.js-gsap .listing-card__media img,
html.js-gsap .post-card__media img {
	transition-property: filter, opacity !important;
}

/* Re-enable transitions on transform/all properties once the reveal animation is complete */
html.js-gsap .listing-card.reveal-complete,
html.js-gsap .post-card.reveal-complete,
html.js-gsap .localidad-card.reveal-complete,
html.js-gsap .category-card.reveal-complete,
html.js-gsap .rubro-chip.reveal-complete {
	transition-property: border-color, box-shadow, transform, background-color, color, opacity, filter !important;
}

html.js-gsap .listing-card.reveal-complete .listing-card__media img,
html.js-gsap .post-card.reveal-complete .post-card__media img {
	transition-property: transform, filter, opacity !important;
}


img,
svg {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: var(--color-primary-hover);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
}

a:hover,
a:focus {
	color: var(--color-secondary-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	box-shadow: var(--focus-ring);
	outline: 0;
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	color: var(--color-ink);
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0 0 0.65rem;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.35rem, 5vw, 4.15rem);
	max-width: 860px;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 3.05rem);
}

h3 {
	font-size: 1.35rem;
}

p {
	margin: 0 0 1rem;
	text-wrap: pretty;
}

.material-symbols-outlined {
	display: inline-flex;
	font-family: "Material Symbols Outlined";
	font-style: normal;
	font-weight: normal;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: "liga";
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	font-variation-settings: "FILL" 0, "wght" 430, "GRAD" 0, "opsz" 24;
}

.brand-icon {
	display: inline-block;
	flex: 0 0 auto;
	height: 1.1em;
	width: 1.1em;
}

.screen-reader-text,
.skip-link:not(:focus) {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	background: var(--color-secondary-soft);
	border: 1px solid var(--color-secondary);
	border-radius: var(--radius);
	color: var(--color-ink);
	left: 1rem;
	padding: 0.65rem 0.9rem;
	position: fixed;
	top: 1rem;
	z-index: 90;
}

.site-header {
	--site-header-admin-offset: 0px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.72);
	border-bottom: 1px solid rgba(228, 219, 208, 0.5);
	box-shadow: 0 8px 30px rgba(36, 30, 28, 0.05);
	position: sticky;
	top: var(--site-header-admin-offset);
	transition: background-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out);
	z-index: 50;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.85);
	border-bottom-color: rgba(207, 195, 179, 0.6);
}

.admin-bar .site-header {
	--site-header-admin-offset: 32px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--max-width);
	min-height: 74px;
	padding: 0 1.25rem;
}

.site-branding {
	min-width: 190px;
}

.site-branding__lockup {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-branding__title {
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: 1.32rem;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

.site-branding__title:hover,
.site-branding__title:focus {
	color: var(--color-primary-hover);
}

.site-branding__name,
.site-footer__brand {
	align-items: center;
	color: var(--color-ink);
	display: inline-flex;
	font-family: var(--font-display);
	font-size: 1.32rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.site-branding__name::before,
.site-footer__brand::before {
	background: var(--color-primary);
	border-radius: var(--radius-xs);
	box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.16);
	content: "";
	display: inline-block;
	height: 0.78em;
	margin-right: 0.55rem;
	transform: rotate(-4deg);
	width: 0.78em;
}

.site-branding__tagline {
	color: var(--color-muted);
	font-size: 0.82rem;
	margin: 0.32rem 0 0;
}

.custom-logo {
	max-height: 56px;
	width: auto;
}

.site-navigation ul,
.site-footer__nav ul {
	align-items: center;
	display: flex;
	gap: 0.3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation a {
	border-radius: var(--radius);
	color: var(--color-muted);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0;
	padding: 0.52rem 0.72rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out);
}

.site-navigation a:hover,
.site-navigation a:focus,
.site-navigation .current-menu-item>a,
.site-navigation .current_page_item>a {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
}

.menu-toggle {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	width: 44px;
}

.menu-toggle:active {
	transform: scale(0.97);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	background: var(--color-primary);
	border-radius: 99px;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.menu-toggle__bars::before {
	position: absolute;
	top: -6px;
}

.menu-toggle__bars::after {
	position: absolute;
	top: 6px;
}

.button,
button.button {
	align-items: center;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: var(--radius);
	box-shadow: 0 8px 18px rgba(36, 30, 28, 0.08);
	color: var(--color-on-primary);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 800;
	gap: 0.45rem;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	white-space: nowrap;
}

.button:hover,
.button:focus {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	box-shadow: 0 10px 24px rgba(36, 30, 28, 0.12);
	color: #ffffff;
}

.button:active,
.pagination .page-numbers:active {
	transform: scale(0.98);
}

.button .material-symbols-outlined {
	font-size: 1.12rem;
}

.button--secondary {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.1);
	color: var(--color-on-secondary);
}

.button--secondary:hover,
.button--secondary:focus {
	background-color: var(--color-secondary-hover);
	border-color: var(--color-secondary-hover);
	color: #ffffff;
}

.button--ghost {
	background: var(--color-paper);
	border-color: var(--color-border);
	box-shadow: none;
	color: var(--color-primary-hover);
}

.button--ghost:hover,
.button--ghost:focus {
	background-color: var(--color-soft);
	border-color: var(--color-border-strong);
	color: var(--color-primary-hover);
}

.button--whatsapp {
	background: #2d7656;
	border-color: #2d7656;
}

.button--whatsapp:hover,
.button--whatsapp:focus {
	background-color: #255f47;
	border-color: #255f47;
}

.button--light {
	background: var(--color-paper);
	border-color: var(--color-paper);
	box-shadow: none;
	color: var(--color-primary-hover);
}

.button--light:hover,
.button--light:focus {
	background-color: var(--color-soft);
	border-color: var(--color-soft);
	color: var(--color-primary-hover);
}

.button--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.56);
	box-shadow: none;
	color: #ffffff;
}

.button--outline-light:hover,
.button--outline-light:focus {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
	color: #ffffff;
}

.button--small {
	font-size: 0.92rem;
	min-height: 40px;
	padding: 0.55rem 0.82rem;
}

.text-link {
	color: var(--color-primary-hover);
	font-weight: 800;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.text-link--underlined {
	align-items: center;
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.08);
	display: inline-flex;
	gap: 0.42rem;
	line-height: 1.1;
	min-height: 42px;
	padding: 0.68rem 0.86rem;
	white-space: nowrap;
	width: fit-content;
}

.text-link--underlined::after {
	content: "arrow_forward";
	display: inline-flex;
	font-family: "Material Symbols Outlined";
	font-size: 1.05rem;
	font-weight: normal;
	line-height: 1;
	transition: transform var(--motion-fast) var(--ease-out);
}

.text-link--underlined:hover,
.text-link--underlined:focus {
	background-color: var(--color-secondary-soft);
	border-color: var(--color-border-strong);
	box-shadow: 0 10px 24px rgba(32, 36, 33, 0.1);
	color: var(--color-secondary-hover);
}

.text-link--underlined:hover::after,
.text-link--underlined:focus::after {
	transform: translateX(2px);
}

.text-link--underlined:active {
	transform: scale(0.98);
}

.text-link--muted {
	color: var(--color-muted);
}

.home-hero {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(250, 246, 238, 1) 100%),
		url("../img/hero.webp") center / cover no-repeat;
	border-bottom: 0;
	display: flex;
	overflow: visible;
	padding: 8rem 1.25rem;
	position: relative;
}

.home-hero::before {
	background: rgba(0, 0, 0, 0.08);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.home-hero__inner {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 920px;
	position: relative;
	width: 100%;
}

.home-hero__content {
	color: var(--color-on-dark);
	margin: 0 auto;
	max-width: 860px;
	text-align: center;
	width: 100%;
}

.home-hero h1 {
	color: var(--color-on-dark);
	font-size: clamp(2.65rem, 6vw, 3.8rem);
	line-height: 1.05;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.home-hero p {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.08rem, 2vw, 1.32rem);
	line-height: 1.55;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.hero-kicker,
.eyebrow {
	align-items: center;
	color: var(--color-secondary);
	display: flex;
	font-size: var(--text-eyebrow);
	font-weight: 800;
	gap: 0.48rem;
	letter-spacing: 0.02em;
	margin: 0 0 0.7rem;
	text-transform: none;
}

.hero-kicker span,
.eyebrow::before {
	background: var(--color-secondary);
	border-radius: var(--radius-xs);
	content: "";
	height: 0.58rem;
	width: 0.58rem;
}

.hero-search {
	align-items: stretch;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
	display: flex;
	gap: 0.5rem;
	margin: 3rem auto 0;
	max-width: 720px;
	padding: 0.5rem;
	width: 100%;
}

.search-form {
	align-items: stretch;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	display: flex;
	gap: 0.65rem;
	margin: 2rem 0 0;
	max-width: 780px;
	padding: 0.58rem;
	width: 100%;
}

.hero-search__field {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 0.75rem;
	min-width: 0;
	padding-left: 1rem;
}

.hero-search__field .material-symbols-outlined {
	color: var(--color-primary);
	font-size: 1.45rem;
}

.hero-search input,
.search-form input,
.listing-filters input:not([type="checkbox"]),
.listing-filters select,
.contact-form input,
.contact-form textarea,
.article-newsletter-form input {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-ink);
	font: inherit;
	min-height: 48px;
	padding: 0.76rem 0.9rem;
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), background-color var(--motion-standard) var(--ease-out);
	width: 100%;
}

.hero-search input {
	background: transparent;
	border: 0;
	min-height: 56px;
	padding-left: 0;
}

.hero-search input:focus {
	box-shadow: none;
	outline: 0;
}

.search-form input:focus,
.listing-filters input:not([type="checkbox"]):focus,
.listing-filters select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.article-newsletter-form input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(47, 111, 98, 0.12);
	outline: 0;
}

.hero-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.hero-actions__link {
	align-items: center;
	background: #ffffff;
	border: 1px solid transparent;
	border-radius: 100px;
	color: var(--color-primary);
	display: inline-flex;
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 700;
	gap: 0.5rem;
	padding: 0.68rem 1.45rem;
	text-decoration: none;
	text-shadow: none;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
}

.hero-actions__link:hover,
.hero-actions__link:focus {
	background: var(--color-primary-soft);
	color: var(--color-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-actions__link:last-child {
	background: var(--color-secondary);
	border-color: transparent;
	color: #ffffff;
}

.hero-actions__link:last-child:hover,
.hero-actions__link:last-child:focus {
	background: var(--color-secondary-hover);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(176, 77, 56, 0.35);
}

.hero-actions__link .material-symbols-outlined {
	font-size: 1.25rem;
}

.home-hero__panel {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero-panel__header {
	align-items: flex-start;
	background: var(--color-accent);
	color: #ffffff;
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 42px minmax(0, 1fr);
	padding: 1.3rem;
}

.hero-panel__header .material-symbols-outlined {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	display: inline-flex;
	font-size: 1.55rem;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.hero-panel__header strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	line-height: 1.15;
}

.hero-panel__header small,
.hero-panel__footer,
.term-chip small,
.article-related-item small,
.listing-feature-card small,
.contact-detail small {
	color: inherit;
	display: block;
	font-size: 0.86rem;
	line-height: 1.35;
	opacity: 0.78;
}

.hero-panel__links {
	display: grid;
}

.hero-panel__links a {
	align-items: center;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-ink);
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.3rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out);
}

.hero-panel__links a:hover,
.hero-panel__links a:focus {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
}

.hero-panel__links span {
	font-weight: 800;
}

.hero-panel__links small {
	color: var(--color-muted);
}

.hero-panel__footer {
	background: var(--color-soft);
	color: var(--color-muted);
	padding: 1rem 1.3rem;
}

.section {
	margin: 0 auto;
	max-width: var(--max-width);
	padding: var(--space-section) var(--space-gutter);
	position: relative;
}

.section+.section:not(.section--filters) {
	border-top: 1px solid rgba(221, 227, 221, 0.22);
}

#destacados {
	background: linear-gradient(to bottom, var(--color-background) 0%, var(--color-surface) 100%);
	border-top: 0;
	max-width: none;
	padding-left: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
	padding-right: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
}

#destacados>.section-heading,
#destacados>.listings-carousel {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--max-width);
}

.section--compact {
	overflow: visible;
	z-index: 20;
}

#rubros {
	margin-top: -4rem;
	max-width: none;
	padding: 0 1.25rem;
	z-index: 20;
}

.rubros-section__wrapper {
	background: var(--color-paper);
	border: 1px solid rgba(221, 227, 221, 0.72);
	border-radius: 32px;
	box-shadow: 0 22px 55px rgba(32, 36, 33, 0.14);
	margin: 0 auto;
	max-width: var(--max-width);
	overflow: hidden;
	padding: 1.6rem 1.75rem 1.8rem;
}

.rubros-section__header {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.8rem;
	padding: 0 0.25rem;
}

.rubros-section__header h2 {
	align-items: center;
	color: var(--color-ink);
	display: inline-flex;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	gap: 0.65rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
	text-transform: none;
}

.rubros-section__header h2 span {
	background: var(--color-primary);
	border-radius: 50%;
	display: inline-flex;
	height: 0.55rem;
	width: 0.55rem;
}

.rubros-section__header a {
	color: var(--color-primary);
	flex: 0 0 auto;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.rubros-section__header a:hover,
.rubros-section__header a:focus {
	color: var(--color-primary-hover);
	text-decoration: underline;
}

.section--tinted,
.section--categories,
.section--magazine {
	max-width: none;
	padding-left: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
	padding-right: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
}

.section--localidades {
	background: var(--color-paper);
	max-width: none;
	padding-left: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
	padding-right: max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
}

.section--localidades>.section-heading,
.section--localidades>.localidades-grid {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--max-width);
}

.section--tinted,
.section--categories {
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}

.section--magazine {
	background: var(--color-paper);
}

.section--magazine>.section-heading,
.section--magazine>.grid {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--max-width);
}

.section--filters {
	margin-top: -2.75rem;
	padding-bottom: 1.65rem;
	padding-top: 1rem;
	z-index: 12;
}

.section--filters+.section {
	padding-top: 1.9rem;
}

.section-heading {
	margin-bottom: var(--space-lg);
}

.section-heading h2,
.results-heading h2 {
	font-size: var(--text-section-title);
	line-height: 1.12;
}

.section-heading--row,
.results-heading {
	align-items: end;
	display: flex;
	gap: 1.25rem;
	justify-content: space-between;
}

.section-heading--center {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading--with-action {
	align-items: flex-end;
	gap: 1.25rem;
}

.section-heading--with-action h2 {
	margin-bottom: 0;
}

.section-heading--with-action .text-link--underlined {
	align-self: center;
	margin-top: 0.85rem;
}

.grid {
	display: grid;
	gap: var(--space-md);
}

.grid--listings {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.75rem;
}

.grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-layout--bento {
	grid-auto-flow: dense;
}

.news-layout--bento .post-card:nth-child(4n+1) {
	grid-column: span 2;
}

.news-layout--bento .post-card:nth-child(4n+1) .post-card__media {
	aspect-ratio: 21 / 9;
}

.term-grid,
.category-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.rubro-picker {
	display: none;
	margin: 1rem 0 1.15rem;
	position: relative;
	z-index: 40;
}

.rubro-picker__button {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius);
	box-shadow: 0 10px 24px rgba(32, 36, 33, 0.08);
	color: var(--color-ink);
	cursor: pointer;
	display: grid;
	font: inherit;
	gap: 0.8rem;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	padding: 0.78rem 0.85rem;
	text-align: left;
	width: 100%;
}

.rubro-picker__button strong,
.rubro-picker__option strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.12;
}

.rubro-picker__button small,
.rubro-picker__option small {
	color: var(--color-muted);
	display: block;
	font-size: 0.88rem;
	line-height: 1.25;
	margin-top: 0.1rem;
}

.rubro-picker__button-icon,
.rubro-picker__option-icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	color: var(--color-primary-hover);
	display: inline-flex;
	font-size: 1.45rem;
	height: 42px;
	justify-content: center;
	width: 42px;
	flex-shrink: 0;
	overflow: hidden;
}

.rubro-picker__chevron {
	color: var(--color-secondary);
	font-size: 1.55rem;
	transition: transform var(--motion-medium) var(--ease-out);
}

.rubro-picker__menu {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	display: grid;
	gap: 0.35rem;
	left: 0;
	margin-top: 0.45rem;
	max-height: min(58dvh, 430px);
	opacity: 0;
	overflow-y: auto;
	padding: 0.45rem;
	pointer-events: none;
	position: absolute;
	right: 0;
	transform: translateY(-6px);
	transition: opacity var(--motion-medium) var(--ease-out), transform var(--motion-medium) var(--ease-out), visibility 0s linear var(--motion-medium);
	visibility: hidden;
	z-index: 45;
}

.rubro-picker.is-open .rubro-picker__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition-delay: 0s;
	visibility: visible;
}

.rubro-picker.is-open .rubro-picker__chevron {
	transform: rotate(180deg);
}

.rubro-picker__option {
	align-items: center;
	border-radius: var(--radius-xs);
	color: var(--color-ink);
	display: grid;
	gap: 0.72rem;
	grid-template-columns: 42px minmax(0, 1fr);
	padding: 0.62rem;
	text-decoration: none;
}

.rubro-picker__option:hover,
.rubro-picker__option:focus {
	background: var(--color-soft);
	color: var(--color-primary-hover);
}

.rubro-picker__option--all .rubro-picker__option-icon {
	background: var(--color-primary);
	color: var(--color-on-primary);
}

.term-chip,
.category-card,
.listing-feature-card {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-ink);
	text-decoration: none;
	transition: background-color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.term-chip--visual {
	align-content: start;
	display: grid;
	gap: 0.75rem;
	min-height: 150px;
	padding: 1rem;
}

.term-chip__icon,
.category-card__media {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	display: inline-flex;
	font-size: 2rem;
	height: 56px;
	justify-content: center;
	width: 56px;
}

.term-chip>span:not(.term-chip__icon),
.category-card__title {
	font-family: var(--font-display);
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.15;
}

.term-chip small,
.category-card__count {
	color: var(--color-muted);
	font-size: 0.9rem;
}

.term-chip:hover,
.term-chip:focus,
.category-card:hover,
.category-card:focus,
.listing-feature-card:hover,
.listing-feature-card:focus {
	background-color: var(--color-primary-soft);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-soft);
	color: var(--color-primary-hover);
	transform: translateY(-3px);
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), color var(--motion-standard) var(--ease-out), transform var(--motion-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.term-chip:active,
.category-card:active,
.listing-feature-card:active {
	transform: scale(0.97);
	transition: transform 80ms var(--ease-out);
}

.category-card {
	align-items: center;
	display: grid;
	gap: 0.8rem;
	grid-template-columns: 58px minmax(0, 1fr);
	padding: 0.9rem;
}

.category-card__media img {
	height: 30px;
	object-fit: contain;
	width: 30px;
}

.category-card__body {
	display: grid;
	gap: 0.12rem;
}

.post-card,
.info-panel,
.contact-panel,
.article-content,
.single-content,
.article-sidebar-card,
.article-share-card,
.listing-contact-card,
.listing-highlight-card {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.post-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.post-card:hover {
	transform: translateY(-4px);
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.post-card:active {
	transform: scale(0.97);
	transition: transform 80ms var(--ease-out);
}

.post-card__media {
	aspect-ratio: 16 / 10;
	background: var(--term-accent, var(--color-primary-soft));
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.post-card__media img,
.listing-card__media img,
.single-hero__media img,
.gallery-strip img,
.article-hero-image img,
.listing-gallery__item img,
.article-related-item__media img,
.archive-hero__icon img,
.media-placeholder img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 1;
	transition: filter var(--motion-fast) var(--ease-out), opacity var(--motion-fast) var(--ease-out), transform var(--motion-standard) var(--ease-out);
	width: 100%;
}

.post-card__media,
.listing-card__media,
.article-hero-image,
.article-related-item__media,
.listing-gallery__item,
.archive-hero__icon,
.media-placeholder {
	overflow: hidden;
	position: relative;
}

.image-is-loading::before {
	animation: pueblito-image-sheen 1150ms linear infinite;
	background: var(--color-surface);
	background-size: 230% 100%;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 2;
}

.image-is-loading::after {
	background: var(--color-border);
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	transform-origin: left;
	width: 100%;
	z-index: 3;
}

.image-is-loading img {
	opacity: 0;
	transform: scale(1.015);
}

.image-is-loaded img,
.image-load-failed img {
	opacity: 1;
}

.image-load-failed::before {
	background: var(--color-surface);
	content: "";
	inset: 0;
	opacity: 0.55;
	position: absolute;
	z-index: 1;
}

@keyframes pueblito-image-sheen {
	0% {
		background-position: 160% 0;
	}

	100% {
		background-position: -80% 0;
	}
}

.post-card__body {
	display: flex;
	flex-direction: column;
	padding: var(--space-md);
}

.post-card__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--color-muted);
	display: -webkit-box;
	font-size: var(--text-body-sm);
	line-height: 1.5;
	margin-bottom: 0;
	overflow: hidden;
}

.post-card__meta {
	align-items: center;
	color: var(--color-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.82rem;
	font-weight: 800;
	gap: 0.55rem;
	margin-bottom: 0.7rem;
}

.post-card__category,
.article-category-pill,
.listing-profile__badge,
.badge {
	align-items: center;
	border-radius: var(--radius-xs);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 0.3rem;
	line-height: 1.1;
	padding: 0.26rem 0.48rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
}

.post-card__category,
.article-category-pill,
.listing-profile__badge--secondary {
	background: var(--color-pink-soft);
	color: var(--color-premium);
}

.post-card__title {
	font-size: var(--text-card-title);
	line-height: 1.18;
	margin-bottom: 0.55rem;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card p:not(.post-card__excerpt) {
	color: var(--color-muted);
	font-size: var(--text-body-sm);
	margin-bottom: 0;
}

.media-placeholder {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	color: var(--color-primary-hover);
	display: flex;
	font-family: var(--font-display);
	font-weight: 700;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.media-placeholder--icon img {
	height: 64px;
	object-fit: contain;
	width: 64px;
}

.media-placeholder--icon .material-symbols-outlined {
	color: var(--color-primary-hover);
	font-size: 3.2rem;
}

.listing-card {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-rows: 1fr auto;
	overflow: hidden;
	transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.listing-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
	transform: translateY(-4px);
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.listing-card:active {
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transform: scale(0.97);
	transition: transform 80ms var(--ease-out), box-shadow 80ms var(--ease-out);
}

.listing-card--featured {
	border-radius: 24px 8px 24px 8px;
	background: linear-gradient(135deg, var(--color-paper) 30%, var(--term-accent, var(--color-paper)) 100%);
}

.listing-card--banner-grid {
	display: block;
	position: relative;
	height: 100%;
	aspect-ratio: auto;
}

.listing-card__banner-link {
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.listing-card__banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--motion-fast) var(--ease-out);
}

.listing-card--banner-grid:hover .listing-card__banner-image {
	transform: scale(1.03);
}

.listing-card__pub-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(36, 30, 28, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-xs);
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	pointer-events: none;
}



.listing-card__media-wrap {
	isolation: isolate;
	overflow: hidden;
	position: relative;
	height: 100%;
	width: 100%;
}

.listing-card__media {
	aspect-ratio: 16 / 10;
	background: var(--color-primary-soft);
	display: block;
	overflow: hidden;
	text-decoration: none;
	height: 100%;
	width: 100%;
}

.listing-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding: var(--space-md);
}

.listing-card__image-badges {
	align-items: flex-start;
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
	left: 0.72rem;
	pointer-events: none;
	position: absolute;
	right: 0.72rem;
	top: 0.72rem;
	z-index: 2;
}

.listing-card__badge-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.36rem;
	min-width: 0;
}

.badge--featured {
	background: var(--color-premium);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	height: 1.72rem;
	justify-content: center;
	padding: 0 0.5rem;
	pointer-events: auto;
	width: auto;
}

.badge--featured .badge__text {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.badge .material-symbols-outlined {
	font-size: 0.95rem;
	font-variation-settings: "FILL" 1, "wght" 520, "GRAD" 0, "opsz" 20;
}

.listing-card__rubro-pill {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-xs);
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.1);
	color: var(--color-premium);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.1;
	max-width: 9.5rem;
	overflow: hidden;
	padding: 0.28rem 0.5rem;
	pointer-events: auto;
	text-decoration: none;
	text-overflow: ellipsis;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
	white-space: nowrap;
}

.listing-card__rubro-pill:hover,
.listing-card__rubro-pill:focus {
	background-color: var(--color-secondary-hover);
	color: #ffffff;
}

.listing-card__locality {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-xs);
	bottom: 0.72rem;
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.1);
	color: var(--color-primary-hover);
	font-size: 0.78rem;
	font-weight: 800;
	left: 0.72rem;
	line-height: 1.1;
	max-width: calc(100% - 1.44rem);
	overflow: hidden;
	padding: 0.32rem 0.48rem;
	position: absolute;
	text-decoration: none;
	text-overflow: ellipsis;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
	white-space: nowrap;
	z-index: 2;
}

.listing-card__locality:hover,
.listing-card__locality:focus {
	background-color: var(--color-primary-hover);
	color: #ffffff;
}

.listing-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.listing-card__mobile-meta {
	display: none;
}

.listing-card__mobile-rubro {
	background: var(--color-secondary-soft);
	border-radius: var(--radius-xs);
	color: var(--color-secondary-hover);
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1.1;
	max-width: 100%;
	overflow: hidden;
	padding: 0.22rem 0.45rem;
	text-decoration: none;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Status Pulse Animations */
@keyframes status-pulse-open {
	0% {
		box-shadow: 0 0 0 0 rgba(47, 111, 98, 0.65);
	}

	70% {
		box-shadow: 0 0 0 5px rgba(47, 111, 98, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(47, 111, 98, 0);
	}
}

@keyframes status-pulse-closed {
	0% {
		box-shadow: 0 0 0 0 rgba(168, 76, 86, 0.65);
	}

	70% {
		box-shadow: 0 0 0 5px rgba(168, 76, 86, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(168, 76, 86, 0);
	}
}

@keyframes status-pulse-holiday {
	0% {
		box-shadow: 0 0 0 0 rgba(137, 58, 86, 0.65);
	}

	70% {
		box-shadow: 0 0 0 5px rgba(137, 58, 86, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(137, 58, 86, 0);
	}
}

.listing-card__mobile-status {
	align-items: center;
	color: var(--color-muted);
	display: inline-flex;
	font-size: 0.66rem;
	font-weight: 800;
	gap: 0.28rem;
	line-height: 1.1;
	text-transform: uppercase;
	white-space: nowrap;
}

.listing-card__mobile-status>span {
	background: var(--color-muted);
	border-radius: 999px;
	height: 0.42rem;
	width: 0.42rem;
	flex-shrink: 0;
}

.listing-card__mobile-status--open {
	color: var(--color-primary-hover);
}

.listing-card__mobile-status--open>span {
	background: var(--color-primary);
	animation: status-pulse-open 2s infinite;
}

.listing-card__mobile-status--closed {
	color: var(--color-secondary-hover);
}

.listing-card__mobile-status--closed>span {
	background: var(--color-secondary);
	animation: status-pulse-closed 2s infinite;
}

.listing-card__mobile-status--holiday {
	color: var(--color-premium);
}

.listing-card__mobile-status--holiday>span {
	background: var(--color-premium);
	animation: status-pulse-holiday 2s infinite;
}

.listing-card__terms {
	color: var(--color-secondary);
	font-size: 0.82rem;
	font-weight: 800;
	margin-bottom: 0.38rem;
}

.listing-card__terms a {
	color: inherit;
	text-decoration: none;
}

.listing-card__title-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.4rem;
	width: 100%;
}

.listing-card__title {
	font-size: 1.28rem;
	line-height: 1.13;
	margin-bottom: 0;
	flex: 1;
}

.listing-card__title a {
	color: inherit;
	text-decoration: none;
}

.listing-card__excerpt {
	color: var(--color-muted);
	display: -webkit-box;
	font-size: 0.86rem;
	line-height: 1.6;
	margin-bottom: 0.62rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.listing-card__status {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.1);
	display: inline-flex;
	justify-content: center;
	margin: 0;
	padding: 0.38rem;
	pointer-events: auto;
}

.listing-card__status span {
	background: var(--color-muted);
	border-radius: 999px;
	box-shadow: 0 0 0 3px rgba(95, 102, 99, 0.16);
	height: 0.52rem;
	width: 0.52rem;
	flex-shrink: 0;
}

.listing-card__status--open {
	color: var(--color-primary-hover);
}

.listing-card__status--open span {
	background: var(--color-primary);
	animation: status-pulse-open 2s infinite;
}

.listing-card__status--closed {
	color: var(--color-secondary-hover);
}

.listing-card__status--closed span {
	background: var(--color-secondary);
	animation: status-pulse-closed 2s infinite;
}

.listing-card__status--holiday {
	color: var(--color-premium);
}

.listing-card__status--holiday span {
	background: var(--color-premium);
	animation: status-pulse-holiday 2s infinite;
}

.listing-card__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.85rem;
	margin-top: auto;
	margin-bottom: 0.5rem;
	width: 100%;
}

.listing-card__meta-item {
	display: flex;
	align-items: center;
	font-size: 0.85rem;
	color: var(--color-muted);
	gap: 0.35rem;
	line-height: 1.2;
}

.listing-card__meta-item .material-symbols-outlined {
	font-size: 0.98rem;
	flex-shrink: 0;
}

.listing-card__meta-item--hours .material-symbols-outlined {
	color: var(--color-primary-hover);
}

.listing-card__meta-item--address {
	flex: 1;
	min-width: 120px;
}

.listing-card__meta-item--address .material-symbols-outlined {
	color: var(--color-secondary);
}

.listing-card__address-text {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.listing-card__actions {
	align-items: center;
	border-top: 1px solid var(--color-border);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-top: 0.5rem;
	padding-top: 0.5rem;
}

.listing-card__primary-link {
	align-items: center;
	color: var(--color-primary-hover);
	display: inline-flex;
	font-weight: 800;
	gap: 0.3rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out);
}

.listing-card__primary-link .material-symbols-outlined {
	font-size: 1rem;
	transition: transform var(--motion-fast) var(--ease-out);
}

.listing-card__primary-link:hover .material-symbols-outlined,
.listing-card__primary-link:focus .material-symbols-outlined {
	transform: translateX(2px);
}

.listing-card__quick-action,
.icon-button,
.article-share-card__links a,
.site-footer__social a {
	align-items: center;
	background: var(--color-primary-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	display: inline-flex;
	height: 42px;
	justify-content: center;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	width: 42px;
}

.listing-card__quick-action:hover,
.listing-card__quick-action:focus,
.icon-button:hover,
.icon-button:focus,
.article-share-card__links a:hover,
.article-share-card__links a:focus,
.site-footer__social a:hover,
.site-footer__social a:focus {
	background-color: var(--color-primary-hover);
	color: #ffffff;
}

.listing-card__quick-action:active,
.icon-button:active {
	transform: scale(0.97);
}

.archive-hero {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
	padding: var(--space-section) var(--space-gutter) var(--space-xl);
	position: relative;
}

.archive-hero--guide {
	background: var(--color-primary-soft);
	padding-bottom: 3.5rem;
	padding-left: 0;
	padding-right: 0;
	padding-top: 3.5rem;
}

.archive-hero--guide::before,
.archive-hero--guide::after {
	content: "";
	pointer-events: none;
	position: absolute;
}

.archive-hero--guide::before {
	content: none;
	display: none;
}

.archive-hero--guide::after {
	background: var(--color-border);
	bottom: 0;
	height: 1px;
	left: 0;
	right: 0;
}

.archive-hero__inner,
.article-layout,
.listing-profile-hero,
.listing-profile-layout,
.listing-related__inner {
	margin: 0 auto;
	max-width: var(--max-width);
}

.archive-hero__inner {
	max-width: var(--max-width);
}

.archive-hero--guide .archive-hero__inner {
	align-items: center;
	display: grid;
	gap: 4.5rem;
	grid-template-columns: minmax(0, 1fr);
	max-width: var(--max-width);
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: relative;
	z-index: 1;
}

.archive-hero__content {
	max-width: 820px;
}

.archive-hero--guide .eyebrow {
	color: var(--color-primary-hover);
	margin-bottom: 0.95rem;
}

.archive-hero--guide .eyebrow::before {
	background: var(--color-primary);
	box-shadow: 0 0 0 5px rgba(47, 111, 98, 0.1);
}

.archive-hero--guide h1 {
	font-size: 4.2rem;
	line-height: 0.94;
	margin-bottom: 0;
	max-width: 780px;
}

.archive-hero__title-group {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1.05rem;
}

.archive-description,
.archive-hero__inner>p {
	color: var(--color-muted);
	font-size: 1.08rem;
	max-width: 720px;
}

.archive-hero--guide .archive-description {
	font-size: 1.22rem;
	line-height: 1.52;
	max-width: 740px;
}

.archive-hero--guide .archive-description p:last-child {
	margin-bottom: 0;
}

.archive-hero__icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	display: inline-flex;
	flex-shrink: 0;
	height: 64px;
	justify-content: center;
	margin-bottom: 0;
	width: 64px;
}

.archive-hero__icon img {
	height: 42px;
	object-fit: contain;
	width: 42px;
}

.archive-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.archive-hero--guide .archive-hero__meta {
	gap: 0.75rem;
	margin-top: 1.65rem;
}

.archive-hero__meta span {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	color: var(--color-primary-hover);
	font-weight: 800;
	padding: 0.42rem 0.62rem;
}

.archive-hero--guide .archive-hero__meta span {
	background: rgba(255, 255, 255, 0.82);
	border-color: var(--color-border);
	box-shadow: 0 10px 24px rgba(32, 36, 33, 0.08);
	color: var(--color-primary-hover);
}

.listing-filters {
	align-items: end;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
	display: grid;
	gap: 0.9rem;
	grid-template-columns: minmax(180px, 1.3fr) minmax(140px, 1fr) minmax(140px, 1fr) minmax(140px, 1fr) auto;
	padding: 1.1rem;
	position: relative;
}

.listing-filters.listing-filters--no-subrubro {
	grid-template-columns: minmax(180px, 1.3fr) minmax(140px, 1fr) minmax(140px, 1fr) auto;
}

.field label {
	color: var(--color-ink);
	display: block;
	font-size: 0.9rem;
	font-weight: 800;
	margin-bottom: 0.35rem;
}

.listing-filters__actions {
	align-items: end;
	display: flex;
	gap: 0.5rem;
}

.listing-filters input:not([type="checkbox"]),
.listing-filters select,
.listing-filters .button,
.filter-toggle {
	min-height: 54px;
}

.listing-filters select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--color-primary) 50%),
		linear-gradient(135deg, var(--color-primary) 50%, transparent 50%);
	background-position:
		calc(100% - 1rem) 50%,
		calc(100% - 0.72rem) 50%;
	background-repeat: no-repeat;
	background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
	cursor: pointer;
	padding-right: 2.35rem;
}

.listing-filters select:hover {
	background-color: var(--color-soft);
	border-color: var(--color-border-strong);
}

.listing-filters .button,
.filter-toggle {
	height: 54px;
	padding-bottom: 0;
	padding-top: 0;
}

.listing-filters__actions>* {
	flex: 0 0 auto;
}

.button--clear-filter {
	position: absolute;
	top: -12px;
	right: -12px;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	min-height: 32px !important;
	max-width: 32px !important;
	max-height: 32px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	aspect-ratio: 1 / 1 !important;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
	background: var(--color-paper) !important;
	border: 1px solid var(--color-border) !important;
	color: var(--color-muted) !important;
	z-index: 100;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.listing-filters.is-filtering .button--clear-filter {
	display: flex;
}

.button--clear-filter:hover,
.button--clear-filter:focus {
	background-color: var(--color-secondary-soft) !important;
	border-color: var(--color-secondary) !important;
	color: var(--color-secondary) !important;
	transform: scale(1.08);
}

.button--clear-filter:active {
	transform: scale(0.95);
}

.button--clear-filter .material-symbols-outlined {
	font-size: 1.1rem !important;
}

.results-heading {
	margin-bottom: 1.5rem;
}

.results-heading .text-link--underlined {
	align-self: flex-end;
	margin-bottom: 0.15rem;
}

.localities-band {
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.localities-band p {
	color: var(--color-muted);
	max-width: 540px;
}

.localities-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.locality-link {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 3vw, 2rem);
	font-weight: 700;
	padding: 0.7rem 0.9rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.locality-link:hover,
.locality-link:focus {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #ffffff;
}

.cta-band {
	align-items: center;
	background:
		repeating-linear-gradient(-12deg,
			transparent,
			transparent 18px,
			rgba(255, 255, 255, 0.03) 18px,
			rgba(255, 255, 255, 0.03) 19px),
		linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
	color: rgba(255, 255, 255, 0.88);
	display: flex;
	gap: var(--space-lg);
	justify-content: space-between;
	padding: var(--space-section) max(var(--space-gutter), calc((100vw - var(--max-width)) / 2));
}

.cta-band h2,
.cta-band .eyebrow {
	color: #ffffff;
}

.cta-band .eyebrow::before {
	background: #ffffff;
}

.cta-band p {
	max-width: 680px;
}

.cta-band .button--outline-light {
	border-color: rgba(255, 255, 255, 0.72);
	color: #ffffff;
}

.cta-band .button--outline-light:hover,
.cta-band .button--outline-light:focus {
	background: rgba(255, 255, 255, 0.14);
	border-color: #ffffff;
	color: #ffffff;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: flex-end;
}

.article-page {
	padding: var(--space-lg) var(--space-gutter) var(--space-section);
}

.article-layout {
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1fr) 330px;
}

.article-main {
	min-width: 0;
}

.article-header {
	margin-bottom: 1.5rem;
}

.article-header h1 {
	font-size: clamp(2.2rem, 5vw, 4.4rem);
	margin-top: 0.6rem;
	max-width: 980px;
}

.article-meta-bar {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 1.5rem;
}

.article-author {
	align-items: center;
	display: flex;
	gap: 0.8rem;
}

.article-author__avatar {
	border-radius: var(--radius);
	height: 48px;
	width: 48px;
}

.article-author strong {
	display: block;
	font-weight: 800;
}

.article-author span {
	color: var(--color-muted);
	display: block;
	font-size: 0.92rem;
}

.article-actions {
	display: flex;
	gap: 0.5rem;
}

.article-hero-image {
	aspect-ratio: 16 / 9;
	background: var(--color-primary-soft);
	border-radius: var(--radius-lg);
	margin: 0 0 1.5rem;
	overflow: hidden;
}

.article-hero-image--placeholder {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	justify-content: center;
}

.article-hero-image--placeholder .material-symbols-outlined {
	color: var(--color-primary-hover);
	font-size: 3rem;
}

.article-content,
.single-content {
	margin: 0 auto;
	max-width: 820px;
	padding: var(--space-lg);
}

.page-content {
	margin: 0 auto;
	max-width: 820px;
	padding: var(--space-lg);
}

.page-single .page-content {
	margin-bottom: var(--space-section);
	margin-top: var(--space-lg);
}

.article-content>*:first-child,
.single-content>*:first-child,
.page-content>*:first-child {
	margin-top: 0;
}

.article-content>*:last-child,
.single-content>*:last-child,
.page-content>*:last-child {
	margin-bottom: 0;
}

.article-prose>*+* {
	margin-top: 1.15rem;
}

.article-prose p,
.article-prose li {
	color: var(--color-ink);
	font-size: 1.08rem;
	line-height: 1.78;
}

.article-prose>* {
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}

.article-prose h2,
.article-prose h3,
.article-prose h4 {
	margin-top: 2rem;
}

.article-prose a {
	font-weight: 800;
}

.article-prose .wp-block-quote,
.wp-block-quote.is-style-pueblito-editorial-quote {
	background: var(--color-primary-soft);
	border-left: 4px solid var(--color-primary);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.48;
	margin: 2rem auto;
	padding: 1.25rem 1.35rem;
}

.article-share-card {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 1.5rem;
	padding: 1rem;
}

.article-share-card__links,
.article-tags {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.article-share-card__links>span {
	color: var(--color-muted);
	font-weight: 800;
}

.article-tags a {
	background: var(--color-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	color: var(--color-muted);
	font-weight: 800;
	padding: 0.28rem 0.48rem;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out);
}

.article-sidebar {
	align-content: start;
	display: grid;
	gap: 1rem;
	position: sticky;
	top: 96px;
}

.article-sidebar-card {
	padding: 1.15rem;
}

.article-sidebar-card h2 {
	font-size: 1.25rem;
}

.article-sidebar-card p {
	color: var(--color-muted);
	font-size: 0.98rem;
}

.article-sidebar-card--cta {
	background: var(--color-premium);
	color: rgba(255, 255, 255, 0.82);
}

.article-sidebar-card--cta h2,
.article-sidebar-card--cta p {
	color: inherit;
}

.article-sidebar-card--cta h2 {
	color: #ffffff;
}

.article-related-list {
	display: grid;
	gap: 0.75rem;
}

.article-related-item {
	align-items: center;
	color: var(--color-ink);
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 82px minmax(0, 1fr);
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out);
}

.article-related-item__media {
	aspect-ratio: 4 / 3;
	background: var(--color-primary-soft);
	border-radius: var(--radius);
	overflow: hidden;
}

.article-related-item strong {
	display: block;
	line-height: 1.18;
}

.article-newsletter-form {
	display: grid;
	gap: 0.6rem;
}

.listing-profile-hero {
	padding: var(--space-xl) var(--space-gutter) var(--space-section);
}

.listing-profile-hero__heading {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.listing-profile__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.9rem;
}

.listing-profile__badge--featured {
	background: var(--color-premium);
	color: #ffffff;
	height: 1.76rem;
	justify-content: center;
	padding: 0 0.5rem;
	width: auto;
}

.listing-profile__badge--featured .badge__text {
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.listing-profile__badge .material-symbols-outlined {
	font-size: 0.95rem;
}

.listing-profile-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	max-width: 920px;
}

.listing-profile__location {
	align-items: flex-start;
	color: var(--color-muted);
	display: flex;
	font-weight: 800;
	gap: 0.45rem;
	max-width: 740px;
}

.listing-profile__location .material-symbols-outlined {
	color: var(--color-secondary);
	font-size: 1.2rem;
	margin-top: 0.12rem;
}

.listing-profile__quick-actions {
	display: flex;
	gap: 0.5rem;
}

.listing-share-menu {
	position: relative;
}

.listing-share-menu>summary {
	cursor: pointer;
	list-style: none;
}

.listing-share-menu>summary::-webkit-details-marker {
	display: none;
}

.listing-share-menu>summary::marker {
	content: "";
}

.listing-share-menu[open]>summary {
	background-color: var(--color-primary-hover);
	color: #ffffff;
}

.listing-share-menu__panel {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 16px 36px rgba(32, 36, 33, 0.12);
	display: grid;
	gap: 0.28rem;
	min-width: 188px;
	padding: 0.42rem;
	position: absolute;
	right: 0;
	top: calc(100% + 0.5rem);
	z-index: 25;
}

.listing-share-menu__panel a {
	align-items: center;
	border-radius: var(--radius-xs);
	color: var(--color-ink);
	display: grid;
	font-weight: 800;
	gap: 0.58rem;
	grid-template-columns: 22px minmax(0, 1fr);
	line-height: 1.15;
	padding: 0.58rem 0.62rem;
	text-decoration: none;
}

.listing-share-menu__panel a:hover,
.listing-share-menu__panel a:focus {
	background: var(--color-primary-soft);
	color: var(--color-primary-hover);
}

.listing-share-menu__panel .material-symbols-outlined,
.listing-share-menu__panel .brand-icon {
	color: var(--color-primary-hover);
	height: 1.15rem;
	width: 1.15rem;
}

.listing-profile-top {
	align-items: start;
	display: grid;
	gap: 1.15rem;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
}

.listing-profile-media {
	display: grid;
	gap: 1.35rem;
	min-width: 0;
}

.listing-gallery {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: 1.35fr 0.75fr 0.75fr;
	grid-template-rows: repeat(2, minmax(160px, 1fr));
	min-height: clamp(360px, 37vw, 520px);
}

.listing-gallery--single {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	height: clamp(360px, 37vw, 520px);
	min-height: 0;
}

.listing-gallery__item {
	background: var(--color-primary-soft);
	border-radius: var(--radius-lg);
	margin: 0;
	overflow: hidden;
}

.listing-gallery--single .listing-gallery__item {
	aspect-ratio: auto;
	height: 100%;
	max-height: none;
}

.listing-gallery__button {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: zoom-in;
	display: block;
	height: 100%;
	padding: 0;
	text-align: left;
	width: 100%;
}

.listing-gallery__button:focus-visible {
	border-radius: inherit;
	box-shadow: var(--focus-ring);
	outline: 0;
}

.listing-gallery__item:first-child {
	grid-row: span 2;
}

.listing-gallery--single .listing-gallery__item:first-child {
	grid-row: auto;
}

.listing-gallery__placeholder {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	color: var(--color-primary-hover);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	grid-column: 1 / -1;
	justify-content: center;
	min-height: 320px;
}

.listing-gallery__placeholder .material-symbols-outlined {
	font-size: 4rem;
}

.listing-profile-layout {
	padding: 2rem 1.25rem 5rem;
}

.listing-profile-main {
	display: grid;
	gap: 2rem;
	max-width: 860px;
}

.listing-profile-section {
	border-top: 1px solid var(--color-border);
	padding-top: 2rem;
}

.listing-profile-section--intro {
	padding-top: 1.45rem;
}

.listing-profile-section h2 {
	font-size: 2rem;
}

.listing-profile-copy {
	color: var(--color-ink);
	font-size: 1.08rem;
	line-height: 1.78;
	max-width: 760px;
}

.listing-feature-grid {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-feature-card {
	display: grid;
	gap: 0.45rem;
	padding: 1rem;
}

.listing-feature-card .material-symbols-outlined {
	color: var(--color-secondary);
	font-size: 1.75rem;
}

.listing-feature-card strong {
	color: var(--color-ink);
	line-height: 1.15;
}

.listing-map-card {
	background: var(--color-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	color: var(--color-primary-hover);
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	justify-content: center;
	min-height: 260px;
	padding: 2rem;
	text-align: center;
	text-decoration: none;
}

.listing-map-card .material-symbols-outlined {
	color: var(--color-secondary);
	font-size: 2.5rem;
}

.listing-map-card strong {
	color: var(--color-primary-hover);
	font-family: var(--font-display);
	font-size: 1.35rem;
}

.listing-map-card--static {
	cursor: default;
}

.listing-contact-sidebar {
	align-self: start;
	display: grid;
	gap: 1rem;
	position: sticky;
	top: 96px;
}

.listing-contact-card {
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	padding: var(--space-md);
}

/* Cartel Tradicional - Single Listing Profile adjustments */
.listing-profile--featured .listing-contact-card {
	border-radius: 24px 8px 24px 8px;
}

.listing-profile--featured .listing-gallery__item {
	border-radius: 20px 6px 20px 6px;
}

.listing-contact-card__title {
	border-bottom: 1px solid var(--color-border);
	font-size: 1.45rem;
	margin: 0;
	padding-bottom: 0.9rem;
}

.listing-contact-card__cta {
	min-height: 48px;
	white-space: normal;
	width: 100%;
}

.listing-profile__quick-actions .button {
	min-height: 48px;
}

.listing-open-status {
	align-items: flex-start;
	background: var(--color-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 28px minmax(0, 1fr);
	padding: 0.9rem;
}

.listing-open-status>.material-symbols-outlined {
	color: var(--color-muted);
	font-size: 1.45rem;
	margin-top: 0.04rem;
}

.listing-open-status strong {
	color: var(--color-ink);
	display: block;
	font-weight: 800;
	line-height: 1.25;
}

.listing-open-status p {
	color: var(--color-muted);
	font-size: 0.92rem;
	margin: 0.2rem 0 0;
}

.listing-open-status--open {
	background: var(--color-primary-soft);
	border-color: rgba(47, 111, 98, 0.18);
}

.listing-open-status--open>.material-symbols-outlined,
.listing-open-status--open strong {
	color: var(--color-primary-hover);
}

.listing-open-status--closed {
	background: var(--color-secondary-soft);
	border-color: rgba(168, 76, 86, 0.18);
}

.listing-open-status--holiday {
	background: var(--color-premium-soft);
	border-color: rgba(137, 58, 86, 0.28);
}

.listing-open-status--closed>.material-symbols-outlined,
.listing-open-status--closed strong {
	color: var(--color-secondary-hover);
}

.listing-open-status--holiday>.material-symbols-outlined,
.listing-open-status--holiday strong {
	color: var(--color-premium);
}

.listing-open-status--closed p {
	color: var(--color-secondary-hover);
}

.listing-open-status--holiday p {
	color: var(--color-premium);
}

.listing-open-status--unknown {
	background: var(--color-soft);
	border-color: var(--color-border);
}

.listing-open-status--unknown>.material-symbols-outlined,
.listing-open-status--unknown strong {
	color: var(--color-muted);
}

.listing-rating-panel {
	display: grid;
	gap: 1rem;
}

.listing-rating-panel__header {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
}

.listing-rating-panel__controls {
	display: flex;
	gap: 0.25rem;
}

.listing-rating-panel__star {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	color: var(--color-border-strong);
	cursor: pointer;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	padding: 0;
	transition: color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out);
	width: 42px;
}

.listing-rating-panel__star .material-symbols-outlined {
	font-size: 1.45rem;
	font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.listing-rating-panel__star:hover,
.listing-rating-panel__star:focus,
.listing-rating-panel__star.is-selected {
	background: var(--color-highlight-soft);
	border-color: var(--color-highlight);
	color: var(--color-highlight);
}

.listing-rating-panel__star.is-selected .material-symbols-outlined {
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.listing-rating-panel__star:disabled {
	cursor: not-allowed;
	opacity: 0.72;
}

.listing-rating-panel__submit {
	justify-self: start;
}

.listing-rating-panel__message {
	color: var(--color-muted);
	font-size: 0.92rem;
	margin: 0;
}

.contact-detail-list {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-detail {
	align-items: start;
	display: grid;
	gap: 0.7rem;
	grid-template-columns: 24px minmax(0, 1fr);
}

.contact-detail>.material-symbols-outlined {
	color: var(--color-primary-hover);
	font-size: 1.25rem;
	margin-top: 0.1rem;
}

.contact-detail div {
	display: grid;
	gap: 0.12rem;
	min-width: 0;
}

.contact-detail a,
.contact-detail>div>span {
	color: var(--color-ink);
	font-weight: 800;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.contact-detail__link {
	color: var(--color-secondary);
	font-size: 0.9rem;
	text-decoration: underline;
}

.contact-hours-list {
	display: grid;
	gap: 0.25rem;
	list-style: none;
	margin: 0.18rem 0 0;
	padding: 0;
	width: 100%;
}

.contact-hours-list__row {
	align-items: baseline;
	color: var(--color-muted);
	display: flex;
	font-size: 0.92rem;
	gap: 1rem;
	justify-content: space-between;
	line-height: 1.35;
}

.contact-hours-list__row--today {
	color: var(--color-ink);
	font-weight: 800;
}

.contact-hours-list__row--closed {
	color: var(--color-secondary-hover);
	font-weight: 800;
}

.listing-social-links {
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding-top: 1.15rem;
}

.listing-social-links a {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-ink);
	display: inline-flex;
	font-weight: 800;
	font-size: 0.88rem;
	gap: 0.5rem;
	padding: 0.55rem 0.95rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-standard) var(--ease-out);
	flex: 1;
	justify-content: center;
	min-height: 44px;
}

.listing-social-links a.social-link--instagram {
	--social-brand-color: #E1306C;
	--social-brand-soft: #FDF0F3;
}

.listing-social-links a.social-link--facebook {
	--social-brand-color: #1877F2;
	--social-brand-soft: #EEF4FC;
}

.listing-social-links a:hover,
.listing-social-links a:focus {
	background-color: var(--social-brand-soft, var(--color-primary-soft));
	border-color: var(--social-brand-color, var(--color-primary));
	color: var(--social-brand-color, var(--color-primary-hover));
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.listing-social-links a:active {
	transform: translateY(0);
	box-shadow: none;
}

.listing-highlight-card {
	background: var(--color-secondary-soft);
	color: var(--color-secondary-hover);
	padding: 1.15rem;
	text-align: center;
}

.listing-highlight-card .material-symbols-outlined {
	color: var(--color-secondary);
	font-size: 2.3rem;
	font-variation-settings: "FILL" 1, "wght" 520, "GRAD" 0, "opsz" 40;
}

.listing-highlight-card strong {
	display: block;
	font-weight: 800;
	margin-bottom: 0.2rem;
}

.listing-highlight-card p {
	font-size: 0.92rem;
	margin: 0;
}

.listing-lightbox {
	align-items: center;
	display: grid;
	inset: 0;
	justify-items: center;
	padding: 1.25rem;
	pointer-events: none;
	position: fixed;
	z-index: 150;
}

.listing-lightbox[hidden] {
	display: none;
}

.listing-lightbox.is-open {
	pointer-events: auto;
}

.listing-lightbox__backdrop {
	background: rgba(31, 35, 30, 0.82);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 220ms var(--ease-out);
}

.listing-lightbox.is-open .listing-lightbox__backdrop {
	opacity: 1;
}

.listing-lightbox__dialog {
	align-items: center;
	display: grid;
	gap: 0.75rem;
	grid-template-areas: "prev figure next";
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	max-height: min(88vh, 820px);
	max-width: min(1100px, calc(100vw - 2.5rem));
	opacity: 0;
	position: relative;
	transform: translateY(12px) scale(0.975);
	transform-origin: center;
	transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
	width: 100%;
	will-change: opacity, transform;
	z-index: 1;
}

.listing-lightbox.is-open .listing-lightbox__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.listing-lightbox.is-closing .listing-lightbox__backdrop {
	opacity: 0;
	transition-duration: 210ms;
}

.listing-lightbox.is-closing .listing-lightbox__dialog {
	opacity: 0;
	transform: translateY(8px) scale(0.985);
	transition-duration: 230ms;
}

.listing-lightbox__figure {
	background: #11140f;
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
	display: grid;
	gap: 0;
	grid-area: figure;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	width: 100%;
}

.listing-lightbox__image {
	display: block;
	max-height: calc(88vh - 72px);
	object-fit: contain;
	width: 100%;
}

.listing-lightbox__caption {
	background: var(--color-soft);
	color: var(--color-ink);
	font-size: 0.95rem;
	font-weight: 800;
	padding: 0.85rem 1rem;
}

.listing-lightbox__close {
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	z-index: 2;
}

.listing-lightbox__nav {
	background: rgba(255, 255, 255, 0.92);
	justify-self: center;
	z-index: 2;
}

.listing-lightbox__nav--prev {
	grid-area: prev;
}

.listing-lightbox__nav--next {
	grid-area: next;
}

.listing-lightbox__nav[hidden] {
	display: none;
}

.listing-related {
	border-top: 1px solid var(--color-border);
	padding-bottom: var(--space-section);
	padding-top: var(--space-section);
}

.contact-panel {
	margin: 0 auto var(--space-section);
	max-width: 860px;
	padding: var(--space-lg);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.field-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice {
	border-radius: var(--radius);
	font-weight: 800;
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
}

.notice--success {
	background: var(--color-primary-soft);
	color: var(--color-primary-hover);
}

.notice--error {
	background: var(--color-secondary-soft);
	color: var(--color-secondary-hover);
}

.search-fallback-message {
	align-items: center;
	background: var(--color-primary-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-ink);
	display: flex;
	gap: 0.8rem;
	grid-column: 1 / -1;
	padding: 1rem 1.25rem;
	margin-bottom: 0.5rem;
}

.search-fallback-message h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.search-fallback-message .material-symbols-outlined {
	color: var(--color-primary);
	font-size: 1.5rem;
}

.empty-state {
	align-items: center;
	background: var(--color-paper);
	border: 1px dashed var(--color-border-strong);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	grid-column: 1 / -1;
	margin: 0 auto;
	max-width: 760px;
	padding: var(--space-xl) var(--space-lg);
	text-align: center;
	width: 100%;
}

.empty-state__icon {
	background: var(--color-primary-soft);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	font-size: 2rem;
	margin-bottom: 0.8rem;
	padding: 0.7rem;
}

.empty-state p {
	color: var(--color-muted);
	max-width: 540px;
}

.empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 0.5rem;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2rem;
}

[data-listing-pagination] {
	min-height: 58px;
	position: relative;
}

[data-listing-pagination].is-loading .pagination {
	opacity: 0.45;
	pointer-events: none;
}

[data-listing-pagination].is-loading::after {
	animation: pueblito-pagination-spin 700ms linear infinite;
	border: 2px solid var(--color-primary-soft);
	border-radius: 50%;
	border-top-color: var(--color-primary);
	content: "";
	height: 18px;
	left: 50%;
	margin-left: -9px;
	margin-top: -9px;
	position: absolute;
	top: 50%;
	width: 18px;
	z-index: 1;
}

[data-listing-pagination].is-loading::before {
	background: var(--color-background);
	border-radius: 50%;
	content: "";
	height: 18px;
	left: 50%;
	margin-left: -9px;
	margin-top: -9px;
	position: absolute;
	top: 50%;
	width: 18px;
	z-index: 1;
}

.pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	padding: 0.45rem 0.8rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
	background: var(--color-primary-soft);
	border-color: var(--color-primary);
}

.pagination .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-on-primary);
}

@keyframes pueblito-pagination-spin {
	to {
		transform: rotate(360deg);
	}
}

.site-footer {
	background: var(--color-ink);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #a89f97;
	padding: var(--space-section) var(--space-gutter) var(--space-xl);
}

.site-footer__inner {
	margin: 0 auto;
	max-width: var(--max-width);
}

.site-footer__top {
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	margin-bottom: 2.5rem;
}

.site-footer__desc {
	color: #cfc3b3;
	font-size: 0.94rem;
	line-height: 1.6;
	margin-top: 1.25rem;
	max-width: 460px;
}

.site-footer__social-wrap {
	margin-top: 1.5rem;
}

.site-footer__social-wrap h3 {
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.site-footer__social {
	display: flex;
	gap: 0.65rem;
}

.site-footer .site-footer__social a.social-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #cfc3b3;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-standard) var(--ease-out);
	width: 42px;
}

.site-footer .site-footer__social a.social-icon:hover,
.site-footer .site-footer__social a.social-icon:focus {
	transform: translateY(-2px);
}

.site-footer .site-footer__social a.social-icon--whatsapp:hover,
.site-footer .site-footer__social a.social-icon--whatsapp:focus {
	background: #25d366;
	border-color: #25d366;
	color: #ffffff;
	box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}

.site-footer .site-footer__social a.social-icon--instagram:hover,
.site-footer .site-footer__social a.social-icon--instagram:focus {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) border-box;
	border-color: transparent;
	background-size: 120% 120%;
	background-position: center;
	color: #ffffff;
	box-shadow: 0 0 12px rgba(214, 36, 159, 0.4);
}

.site-footer .site-footer__social a.social-icon--facebook:hover,
.site-footer .site-footer__social a.social-icon--facebook:focus {
	background: #1877f2;
	border-color: #1877f2;
	color: #ffffff;
	box-shadow: 0 0 12px rgba(24, 119, 242, 0.4);
}

.site-footer .site-footer__social a.social-icon--email:hover,
.site-footer .site-footer__social a.social-icon--email:focus {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
	box-shadow: 0 0 12px rgba(217, 138, 41, 0.4);
}

.site-footer__columns {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer h2 {
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin: 0 0 1.2rem;
	padding-bottom: 0.5rem;
	position: relative;
	text-transform: uppercase;
}

.site-footer h2::after {
	background: var(--color-accent);
	border-radius: var(--radius-xs);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 32px;
}

.site-footer__nav ul,
.site-footer__links {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer a {
	color: #a89f97;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.site-footer__links a {
	align-items: center;
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
}

.site-footer__links a:hover,
.site-footer__links a:focus,
.site-footer__nav a:hover,
.site-footer__nav a:focus {
	color: #ffffff;
	transform: translateX(4px);
}

.footer-count {
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-xs);
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.78rem;
	font-weight: 600;
	padding: 0.1rem 0.45rem;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
}

.site-footer__links a:hover .footer-count,
.site-footer__links a:focus .footer-count {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.site-footer__branding .custom-logo {
	display: block;
	max-height: 60px;
	opacity: 0.9;
	transition: opacity var(--motion-standard) var(--ease-out);
	width: auto;
}

.site-footer__branding .custom-logo:hover,
.site-footer__branding .custom-logo:focus {
	opacity: 1;
}

.site-footer__branding .site-branding__title,
.site-footer__branding .site-branding__name {
	color: #ffffff;
	font-size: 1.42rem;
}

.site-footer__branding .site-branding__title:hover,
.site-footer__branding .site-branding__title:focus,
.site-footer__branding .site-branding__name:hover,
.site-footer__branding .site-branding__name:focus {
	color: var(--color-accent);
}

/* Footer Middle: CTA & Search Box */
.site-footer__middle {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin: 2.2rem 0;
	padding: 1.8rem 0;
}

.site-footer__cta-small {
	max-width: 520px;
}

.site-footer__cta-small h4 {
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.12rem;
	font-weight: 800;
	margin-bottom: 0.35rem;
}

.site-footer__cta-small p {
	color: #a89f97;
	font-size: 0.88rem;
	margin: 0;
}

.site-footer__search {
	flex: 0 1 400px;
	width: 100%;
}

.footer-search-form__field {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	display: flex;
	padding: 0.35rem;
	transition: border-color var(--motion-standard) var(--ease-out), background-color var(--motion-standard) var(--ease-out);
}

.footer-search-form__field:focus-within {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.24);
}

.footer-search-form__field .material-symbols-outlined {
	color: rgba(255, 255, 255, 0.36);
	font-size: 1.25rem;
	margin-left: 0.5rem;
}

.footer-search-form__field input {
	background: transparent;
	border: 0;
	color: #ffffff;
	font-family: inherit;
	font-size: 0.9rem;
	padding: 0.4rem 0.65rem;
	width: 100%;
}

.footer-search-form__field input::placeholder {
	color: rgba(255, 255, 255, 0.36);
}

.footer-search-form__field input:focus {
	outline: 0;
}

.footer-search-form__button {
	background: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: none;
	font-size: 0.88rem;
	min-height: 36px;
	padding: 0.4rem 1rem;
}

.footer-search-form__button:hover,
.footer-search-form__button:focus {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
}

/* Footer Bottom styles */
.site-footer__bottom {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
}

.site-footer__copy-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.site-footer__copy {
	color: rgba(255, 255, 255, 0.36);
	font-size: 0.88rem;
	margin: 0;
}

.site-footer__signature {
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.82rem;
}

.site-footer__signature strong {
	color: var(--color-accent);
	font-weight: 700;
}

.site-footer__back-to-top {
	align-items: center;
	color: #a89f97;
	display: inline-flex;
	gap: 0.45rem;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.site-footer__back-to-top:hover,
.site-footer__back-to-top:focus {
	color: #ffffff;
	transform: translateY(-3px);
}

.site-footer__back-to-top .material-symbols-outlined {
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-flex;
	height: 32px;
	justify-content: center;
	transition: all var(--motion-standard) var(--ease-out);
	width: 32px;
}

.site-footer__back-to-top:hover .material-symbols-outlined,
.site-footer__back-to-top:focus .material-symbols-outlined {
	background: var(--color-accent);
	border-color: var(--color-accent);
	box-shadow: 0 0 10px rgba(217, 138, 41, 0.4);
	color: #ffffff;
}

@media (max-width: 1060px) {
	.site-footer__middle {
		align-items: stretch;
		flex-direction: column;
		gap: 1.5rem;
	}

	.site-footer__search {
		flex: none;
	}

	.site-footer__bottom {
		align-items: center;
		flex-direction: column-reverse;
		text-align: center;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}

.post-card.reveal,
.listing-card.reveal,
.term-chip.reveal,
.category-card.reveal,
.listing-feature-card.reveal,
.locality-link.reveal,
.localidad-card.reveal {
	transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), color var(--motion-standard) var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {

	.post-card:hover,
	.listing-card:hover {
		border-color: var(--color-primary);
		box-shadow: var(--shadow-hover);
	}


	.post-card:hover .post-card__media img,
	.listing-card:hover .listing-card__media img,
	.article-related-item:hover img,
	.listing-gallery__item:hover img {
		filter: saturate(1.05);
		transform: scale(1.035);
		transition: filter var(--motion-medium) var(--ease-out), opacity var(--motion-medium) var(--ease-out), transform var(--motion-image) var(--ease-out);
	}
}

@media (max-width: 1060px) {

	.home-hero__inner,
	.archive-hero--guide .archive-hero__inner,
	.article-layout,
	.listing-profile-top,
	.listing-profile-layout,
	.localities-band,
	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.home-hero__panel,
	.article-sidebar,
	.listing-contact-sidebar {
		position: static;
	}

	.article-sidebar {
		order: -1;
	}

	.listing-profile-top {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
		width: 100%;
	}

	.listing-profile-top>* {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.listing-profile-media,
	.listing-contact-sidebar {
		display: contents;
	}

	.listing-gallery {
		order: 1;
	}

	.listing-contact-card {
		order: 2;
	}

	#sobre-el-comercio {
		order: 3;
	}

	.pueblito-espacios--sidebar {
		order: 4;
	}

	#ubicacion {
		order: 5;
	}

	.listing-rating-panel {
		order: 6;
	}

	.grid--posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.grid--listings {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.localidades-grid {
		gap: var(--space-lg);
	}

	.section-heading--row,
	.results-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: var(--space-sm);
	}

	.section-heading--with-action .text-link--underlined {
		align-self: flex-start;
		margin-top: 0;
	}

	.news-layout--bento .post-card:nth-child(4n+1) {
		grid-column: span 2;
	}

	.news-layout--bento .post-card:nth-child(4n+1) .post-card__media {
		aspect-ratio: 21 / 9;
	}

	/* position: sticky overrides removed */

	.term-grid {
		grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
	}

	.category-grid,
	.listing-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.archive-hero--guide {
		background-color: var(--color-primary-soft);
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.archive-hero--guide h1 {
		font-size: 4.25rem;
	}

	.section--filters {
		margin-top: -2.1rem;
		padding-top: 0.85rem;
	}

	.listing-filters {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
		gap: 1.2rem;
	}

	.listing-filters.listing-filters--no-subrubro {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 1.2rem;
	}

	.field--search,
	.listing-filters__actions {
		grid-column: 1 / -1;
	}

	.listing-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
		min-height: 0;
	}

	.listing-gallery--single {
		grid-template-columns: 1fr;
		height: auto;
	}

	.listing-gallery__item {
		aspect-ratio: 4 / 3;
	}

	.listing-gallery--single .listing-gallery__item {
		aspect-ratio: 4 / 3;
		height: auto;
	}

	.listing-gallery__item:first-child {
		grid-column: span 2;
		grid-row: auto;
	}

	.cta-band {
		align-items: flex-start;
		flex-direction: column;
	}

	.cta-band__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.grid--listings {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {

	.listing-filters,
	.listing-filters.listing-filters--no-subrubro {
		grid-template-columns: 1fr;
		gap: 1.45rem;
	}

	.field label {
		font-size: 0.85rem;
		margin-bottom: 0.45rem;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}

	.admin-bar .site-header {
		--site-header-admin-offset: 46px;
	}

	.site-header__inner {
		min-height: 70px;
	}

	.site-branding {
		min-width: 0;
	}

	.site-branding__name {
		font-size: 1.16rem;
	}

	.site-branding__title {
		font-size: 1.05rem;
		max-width: 11rem;
	}

	.site-branding__tagline {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-navigation {
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid var(--color-border);
		left: 0;
		opacity: 0;
		padding: 1rem;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 70px;
		transform: translateY(-8px);
		transition: opacity var(--motion-standard) var(--ease-out), transform var(--motion-standard) var(--ease-out);
	}

	.site-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-navigation ul {
		align-items: stretch;
		flex-direction: column;
	}

	.site-footer__nav a,
	.site-footer__links a {
		min-height: 44px;
		padding: 0.35rem 0;
	}

	.site-navigation a {
		justify-content: space-between;
		min-height: 44px;
		padding: 0.8rem;
	}

	.home-hero {
		padding: 5rem 1rem 4rem;
	}

	.home-hero h1 {
		font-size: clamp(2.4rem, 12vw, 3.8rem);
	}

	#rubros {
		margin-top: -2rem;
	}

	.home-hero p {
		font-size: 1.08rem;
	}

	.hero-search,
	.search-form,
	.section-heading--row,
	.results-heading,
	.hero-actions,
	.article-meta-bar,
	.article-share-card {
		align-items: stretch;
		flex-direction: column;
	}

	.section-heading--row.section-heading--with-action {
		align-items: stretch;
		flex-direction: column;
		gap: var(--space-sm);
	}

	.section-heading--row.section-heading--with-action .text-link--underlined {
		align-self: flex-start;
		flex: 0 0 auto;
		margin-top: 0;
	}

	.hero-search__field {
		padding-left: 0.35rem;
	}

	.hero-actions {
		align-items: center;
		flex-direction: row;
		gap: 1rem 1.25rem;
		justify-content: center;
	}

	.hero-search__button,
	.hero-actions .button,
	.cta-band__actions,
	.cta-band__actions .button {
		width: 100%;
	}

	.section,
	.section--tinted,
	.section--categories,
	.section--magazine,
	.section--localidades,
	#destacados {
		padding: var(--space-xl) var(--space-gutter);
	}

	.localidades-grid {
		gap: var(--space-lg);
	}

	.section--filters {
		position: static;
		top: auto;
	}

	.rubros-section__wrapper {
		border-radius: 24px;
		padding: 1.25rem 1rem 1.35rem;
	}

	.rubros-swiper-wrap {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.archive-hero {
		padding: 3.2rem 1rem 2.8rem;
	}

	.archive-hero--guide {
		padding-bottom: 5.9rem;
		padding-left: 0;
		padding-right: 0;
		padding-top: 3.8rem;
	}

	.archive-hero--guide .archive-hero__inner {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.archive-hero--guide h1 {
		font-size: 3.2rem;
		line-height: 0.98;
	}

	.archive-hero--guide .archive-description {
		font-size: 1.06rem;
	}

	.section--filters {
		margin-top: -4.8rem;
		padding-bottom: 1.25rem;
		padding-top: 0.75rem;
	}

	.section--filters+.section {
		padding-top: 1.7rem;
	}

	.rubro-picker {
		display: none;
	}

	.rubro-picker--mobile {
		margin: 0.35rem 0 0;
	}

	#rubros .rubros-swiper {
		display: block;
	}

	.rubro-picker--mobile .rubro-picker__button {
		background: var(--color-paper);
		border-color: var(--color-border);
		box-shadow: 0 10px 24px rgba(32, 36, 33, 0.08);
		grid-template-columns: 46px minmax(0, 1fr) auto;
		min-height: 76px;
		padding: 0.78rem 0.82rem;
	}

	.rubro-picker--mobile .rubro-picker__button-icon,
	.rubro-picker--mobile .rubro-picker__option-icon {
		box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.18);
		height: 46px;
		width: 46px;
		flex: 0 0 46px;
		flex-shrink: 0;
	}

	.rubro-picker--mobile .rubro-picker__menu {
		border-color: var(--color-border);
		box-shadow: 0 18px 44px rgba(32, 36, 33, 0.12);
		gap: 0.25rem;
		margin-top: 0.5rem;
		max-height: min(58dvh, 420px);
		padding: 0.42rem;
	}

	.rubro-picker--mobile .rubro-picker__option {
		grid-template-columns: 46px minmax(0, 1fr);
		min-height: 60px;
		padding: 0.58rem;
	}

	.rubro-picker--mobile .rubro-picker__option strong {
		font-size: 0.98rem;
	}

	.rubro-picker--mobile .rubro-picker__option small,
	.rubro-picker--mobile .rubro-picker__button small {
		font-size: 0.84rem;
	}

	.section--compact .term-grid {
		display: none;
	}

	.grid--posts,
	.grid--listings,
	.category-grid,
	.listing-feature-grid,
	.listing-filters,
	.field-grid,
	.site-footer__columns {
		grid-template-columns: 1fr;
	}

	.grid--listings {
		gap: 1.35rem;
		grid-template-columns: 1fr;
	}

	.grid--listings .listing-card {
		border-color: rgba(195, 200, 194, 0.7);
		border-radius: var(--radius-lg);
		box-shadow: 0 4px 20px -2px rgba(24, 40, 30, 0.05);
		display: flex;
		flex-direction: row;
		min-height: 172px;
		overflow: hidden;
	}

	.grid--listings .listing-card__media-wrap {
		flex: 0 0 38%;
		min-width: 118px;
		overflow: hidden;
	}

	.grid--listings .listing-card__media {
		aspect-ratio: auto;
		height: 100%;
	}

	.grid--listings .listing-card__media img,
	.grid--listings .media-placeholder {
		height: 100%;
		object-fit: cover;
		width: 100%;
	}

	.grid--listings .media-placeholder--icon .material-symbols-outlined {
		font-size: 2.15rem;
	}

	.grid--listings .listing-card__image-badges,
	.grid--listings .listing-card__locality {
		display: none;
	}

	.grid--listings .listing-card__body {
		flex: 1;
		min-width: 0;
		padding: 0.85rem;
	}

	.grid--listings .listing-card__mobile-meta {
		align-items: flex-start;
		display: flex;
		gap: 0.5rem;
		justify-content: space-between;
		margin-bottom: 0.32rem;
		min-width: 0;
	}

	.grid--listings .listing-card__mobile-rubro {
		flex: 0 1 auto;
	}

	.grid--listings .listing-card__mobile-status {
		flex: 0 0 auto;
	}

	.grid--listings .listing-card__title {
		display: -webkit-box;
		font-size: 1rem;
		line-height: 1.12;
		margin-bottom: 0.25rem;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.grid--listings .listing-card__excerpt {
		font-size: 0.81rem;
		line-height: 1.22;
		margin-bottom: 0.46rem;
		-webkit-line-clamp: 1;
	}

	.grid--listings .listing-card__today-hours,
	.grid--listings .listing-card__address {
		background: transparent;
		border: 0;
		color: var(--color-muted);
		font-size: 0.76rem;
		font-weight: 600;
		gap: 0.32rem;
		line-height: 1.18;
		margin: 0 0 0.2rem;
		padding: 0;
	}

	.grid--listings .listing-card__today-hours .material-symbols-outlined,
	.grid--listings .listing-card__address .material-symbols-outlined {
		font-size: 0.9rem;
		margin-top: 0;
	}

	.grid--listings .listing-card__address-text {
		-webkit-line-clamp: 1;
	}

	.grid--listings .listing-card__actions {
		border-top: 0;
		flex-direction: row;
		margin-top: auto;
		padding-top: 0.25rem;
	}

	.grid--listings .listing-card__primary-link {
		align-items: center;
		background: var(--color-primary-soft);
		border: 1px solid var(--color-border);
		border-radius: var(--radius);
		color: var(--color-primary-hover);
		font-size: 0.78rem;
		gap: 0.24rem;
		min-height: 36px;
		padding: 0 0.62rem;
	}

	.grid--listings .listing-card__primary-link .material-symbols-outlined {
		font-size: 1rem;
	}

	.grid--listings .listing-card__primary-link:active {
		background: var(--color-surface-strong);
		transform: scale(0.98);
	}

	.grid--listings .listing-card__quick-action {
		background: var(--color-primary-soft);
		border-color: var(--color-border);
		color: var(--color-primary-hover);
		flex: 0 0 36px;
		height: 36px;
		width: 36px;
	}

	.grid--listings .listing-card__quick-action svg {
		height: 18px;
		width: 18px;
	}

	.news-layout--bento .post-card:nth-child(4n+1) {
		grid-column: auto;
	}

	.listing-profile-hero,
	.listing-profile-layout,
	.article-page {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.listing-profile-hero {
		padding-bottom: 3.5rem;
	}

	.listing-profile-hero__heading {
		flex-direction: column;
	}

	.listing-gallery {
		gap: 0.6rem;
		grid-template-columns: 1fr;
	}

	.listing-gallery--single {
		grid-template-columns: 1fr;
	}

	.listing-gallery__item:first-child {
		grid-column: auto;
	}

	.listing-gallery__item:not(:first-child) {
		display: block;
	}

	.listing-lightbox {
		padding: 0.75rem;
	}

	.listing-lightbox__dialog {
		grid-template-areas: "figure";
		grid-template-columns: 1fr;
		max-height: 88vh;
		max-width: calc(100vw - 1.5rem);
	}

	.listing-lightbox__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.listing-lightbox__nav--prev {
		left: 0.5rem;
	}

	.listing-lightbox__nav--next {
		right: 0.5rem;
	}

	.listing-lightbox__image {
		max-height: calc(88vh - 62px);
	}

	.article-content,
	.single-content,
	.page-content,
	.contact-panel {
		padding: 1.25rem;
	}

	.article-related-item {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.cta-band {
		padding: 3.5rem 1rem;
	}

	.site-footer {
		padding: 3rem 1rem 1.5rem;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .site-header {
		--site-header-admin-offset: 0px;
	}
}

@media (max-width: 440px) {
	.grid--listings {
		grid-template-columns: 1fr;
	}

	.archive-hero__meta,
	.empty-state__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.listing-card__image-badges {
		gap: 0.4rem;
	}

	.listing-card__status {
		max-width: 46%;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.listing-card__locality {
		max-width: 100%;
		width: fit-content;
	}

	.grid--listings .listing-card__quick-action {
		width: 36px;
	}
}

/* Forced animations always — Bypassed reduced motion query
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.page-transition,
	.page-transition::before,
	.page-transition::after,
	.page-transition__panel,
	.listing-lightbox,
	.listing-lightbox__backdrop,
	.listing-lightbox__dialog,
	.image-is-loading::before,
	.image-is-loading::after {
		animation: none !important;
		transition: none !important;
	}
}
*/

/* ==========================================================================
   ENHANCED FEATURES: SWIPER, CAROUSELS, ACTIVE FILTERS & MAP EMBED
   ========================================================================== */

/* SwiperJS Shared Styles */
.swiper-button-prev,
.swiper-button-next {
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	height: 44px;
	width: 44px;
	margin-top: 0;
	transform: translateY(-50%);
	z-index: 5;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 1.1rem;
	font-weight: 700;
}

.swiper-pagination-bullet {
	background: var(--color-border-strong);
	opacity: 1;
	transition: background-color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

/* SwiperJS — Rubros */
.rubros-swiper-wrap {
	padding: 0 4.25rem;
	position: relative;
}

.rubros-swiper.swiper {
	overflow: hidden;
	padding: 0;
}

.rubros-swiper .swiper-wrapper {
	align-items: stretch;
	padding-top: 0.1rem;
	padding-bottom: 0.4rem;
}

.rubros-swiper .swiper-slide {
	display: flex;
	height: auto;
	width: auto;
}

.rubros-swiper .swiper-slide>.rubro-chip {
	height: 100%;
	width: 100%;
}

.rubros-swiper .swiper-pagination {
	bottom: 0;
}

.rubros-swiper .swiper-pagination-bullet {
	height: 8px;
	width: 8px;
}

.rubros-swiper .swiper-pagination-bullet-active {
	background: var(--color-primary);
	transform: scale(1.3);
}

.rubros-swiper-wrap>.swiper-button-prev,
.rubros-swiper-wrap>.swiper-button-next {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	box-shadow: 0 12px 26px rgba(47, 111, 98, 0.28);
	color: var(--color-on-primary);
}

.rubros-swiper-wrap>.swiper-button-prev {
	left: 0;
}

.rubros-swiper-wrap>.swiper-button-next {
	right: 0;
}

.rubros-swiper-wrap>.swiper-button-prev:hover,
.rubros-swiper-wrap>.swiper-button-next:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #ffffff;
}

/* SwiperJS — Listings Carousel */
.listings-carousel.swiper {
	--listings-carousel-gutter: var(--space-sm);
	padding: 2px;
	padding-bottom: 1.25rem;
}

.listings-carousel .swiper-wrapper {
	align-items: stretch;
	padding: var(--space-sm) 0 2.1rem;
}

.listings-carousel .swiper-slide {
	align-self: stretch;
	display: flex;
	height: auto;
}

.listings-carousel .swiper-slide>.listing-card {
	height: 100%;
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {
	.listings-carousel .swiper-slide>.listing-card:hover {
		box-shadow: 0 14px 30px rgba(32, 36, 33, 0.1);
	}
}

.listings-carousel .swiper-pagination {
	bottom: -0.25rem;
}

.listings-carousel .swiper-pagination-bullet {
	height: 10px;
	width: 10px;
}

.listings-carousel .swiper-pagination-bullet-active {
	background: var(--color-primary);
	transform: scale(1.25);
}

.listings-carousel .swiper-button-prev,
.listings-carousel .swiper-button-next {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink);
}

.listings-carousel .swiper-button-prev {
	left: 0;
}

.listings-carousel .swiper-button-next {
	right: 0;
}

.listings-carousel .swiper-button-prev:hover,
.listings-carousel .swiper-button-next:hover {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #ffffff;
}

@media (max-width: 767px) {

	.rubros-swiper-wrap>.swiper-button-prev,
	.rubros-swiper-wrap>.swiper-button-next {
		display: none;
	}

	.results-heading .text-link--underlined {
		display: none;
	}

	.listings-carousel.swiper {
		--listings-carousel-gutter: 0px;
	}
}

@media (max-width: 1024px) {

	.listings-carousel .swiper-button-prev,
	.listings-carousel .swiper-button-next {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1340px) {
	.rubros-swiper-wrap {
		padding-left: 3.85rem;
		padding-right: 3.85rem;
	}
}

/* Rubro chip modifications */
.rubro-chip {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--color-muted);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: flex-start;
	min-height: 88px;
	padding: 0;
	text-align: center;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.rubro-chip:hover,
.rubro-chip:focus {
	color: var(--color-primary-hover);
}

.rubro-chip__icon-wrap {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid rgba(47, 111, 98, 0.08);
	border-radius: 12px;
	color: var(--color-primary);
	display: inline-flex;
	height: 52px;
	justify-content: center;
	position: relative;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	width: 52px;
}

.rubro-chip:hover .rubro-chip__icon-wrap,
.rubro-chip:focus .rubro-chip__icon-wrap {
	background: var(--color-primary);
	box-shadow: 0 10px 20px rgba(47, 111, 98, 0.2);
	color: var(--color-on-primary);
}

.rubro-chip__icon {
	color: currentColor;
	font-size: 1.45rem;
}

.rubro-chip__badge {
	align-items: center;
	background: var(--color-primary);
	border: 2px solid var(--color-paper);
	border-radius: 999px;
	color: var(--color-on-primary);
	display: inline-flex;
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 800;
	height: 18px;
	justify-content: center;
	line-height: 1;
	min-width: 18px;
	padding: 0 3px;
	pointer-events: none;
	position: absolute;
	right: -6px;
	top: -6px;
}

.rubro-chip__name {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.18;
	max-width: 100%;
}

/* Localidades grid on Home */
.localidades-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	justify-content: center;
}

.localidad-card {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	color: var(--color-ink);
	display: grid;
	gap: 0.2rem 1rem;
	grid-template-areas:
		"icon name"
		"icon count";
	grid-template-columns: auto 1fr;
	padding: 1rem 1.25rem;
	text-decoration: none;
	transition: background-color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	flex: 1 1 calc(33.333% - 1rem);
	min-width: 280px;
	max-width: 380px;
}

.localidad-card:focus-visible {
	box-shadow: var(--focus-ring);
	outline: 0;
}

.localidad-card:hover {
	background-color: var(--color-primary-soft);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-soft);
	transform: translateY(-3px);
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.localidad-card:active {
	transform: scale(0.97);
	transition: transform 80ms var(--ease-out);
}

.localidad-card__icon {
	align-items: center;
	background: var(--color-primary-soft);
	border: 1px solid rgba(47, 111, 98, 0.12);
	border-radius: var(--radius);
	color: var(--color-primary-hover);
	display: flex;
	grid-area: icon;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.localidad-card__icon .material-symbols-outlined {
	font-size: 1.5rem;
}

.localidad-card__name {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 800;
	grid-area: name;
	line-height: 1.2;
}

.localidad-card__count {
	align-self: start;
	background: var(--color-secondary-soft);
	border-radius: var(--radius-xs);
	color: var(--color-secondary-hover);
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 800;
	grid-area: count;
	justify-self: start;
	padding: 0.22rem 0.5rem;
}

/* Image count badges in listings */
.listing-card__photo-badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-xs);
	box-shadow: 0 8px 18px rgba(32, 36, 33, 0.1);
	color: var(--color-muted);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 0.25rem;
	line-height: 1.1;
	padding: 0.28rem 0.5rem;
}

.listing-card__rating-badge {
	align-items: center;
	background: #ffffff;
	border: 1.5px solid #D98A29;
	border-radius: var(--radius-xs);
	box-shadow: 0 2px 6px rgba(36, 30, 28, 0.08);
	color: var(--color-ink);
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	gap: 0.25rem;
	line-height: 1.1;
	padding: 0.28rem 0.52rem;
	flex-shrink: 0;
}

.listing-card__rating-badge .material-symbols-outlined {
	color: #D98A29;
	font-size: 0.98rem;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.listing-card__badge-group--right {
	align-items: flex-end;
	flex-direction: column;
	gap: 0.36rem;
}

.listing-rating-summary {
	align-items: center;
	color: var(--color-primary-hover);
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 0.32rem;
	line-height: 1.2;
}

.listing-rating-summary .material-symbols-outlined {
	color: var(--color-highlight);
	font-size: 1.05rem;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.listing-rating-summary--empty {
	color: var(--color-muted);
	font-weight: 700;
}

.listing-rating-summary--empty .material-symbols-outlined {
	color: var(--color-border-strong);
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.listing-rating-summary--card {
	margin-bottom: 0.46rem;
}

.listing-rating-summary--header {
	margin-bottom: 0.9rem;
	margin-top: -0.4rem;
}

.listing-card__address-text--link {
	color: inherit;
	text-decoration: none;
	transition: color var(--motion-standard) var(--ease-out);
}

.listing-card__address-text--link:hover {
	color: var(--color-primary-hover);
	text-decoration: underline;
}

/* AJAX active filters chips block */
.active-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.9rem;
}

.active-filters__label {
	color: var(--color-muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.active-filters__chip {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 99px;
	color: var(--color-ink);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	gap: 0.3rem;
	padding: 0.3rem 0.65rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
}

.active-filters__chip:hover {
	background-color: var(--color-secondary-soft);
	border-color: var(--color-secondary-hover);
	color: var(--color-secondary-hover);
}

.active-filters__chip .material-symbols-outlined {
	font-size: 0.95rem;
}

/* AJAX Filter Loading/Skeleton Overlay */
[data-listing-grid] {
	position: relative;
	transition: opacity var(--motion-medium) var(--ease-out);
}

[data-listing-grid].is-loading {
	opacity: 0.55;
	pointer-events: none;
}

[data-listing-grid].is-loading::after {
	animation: pueblito-grid-loading-pulse 1s ease-in-out infinite alternate;
	background: var(--color-soft);
	border-radius: var(--radius-lg);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 5;
}

@keyframes pueblito-grid-loading-pulse {
	0% {
		opacity: 0.1;
	}

	100% {
		opacity: 0.4;
	}
}

/* Filter toggle design */
.filter-toggle {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-ink);
	cursor: pointer;
	display: inline-flex;
	gap: 0.45rem;
	height: 54px;
	justify-content: center;
	min-height: 54px;
	padding: 0 1rem;
	transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
	user-select: none;
	white-space: nowrap;
}

.filter-toggle:hover {
	background-color: var(--color-soft);
	border-color: var(--color-border-strong);
}

.filter-toggle--active {
	background-color: var(--color-primary-soft) !important;
	border-color: var(--color-primary) !important;
	color: var(--color-primary-hover) !important;
}

.filter-toggle .material-symbols-outlined {
	font-size: 1.25rem;
}

/* Google Maps iframe embed styling */
.listing-map-embed {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	margin-bottom: 1.25rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* Aspect-ratio shim for iframes (16:9) */
.listing-map-embed::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.listing-map-embed iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* Native Google Maps div — needs explicit dimensions */
.listing-map-embed #pueblito-listing-map {
	height: 360px;
	width: 100%;
}

/* When a native map div is present, disable the ::before shim */
.listing-map-embed:has(#pueblito-listing-map)::before {
	display: none;
}


/* Compact map card when maps are embedded */
.listing-map-card--static {
	cursor: default;
}

/* Contact form spacing fix */
.contact-panel {
	margin-top: 3rem !important;
}

.contact-panel .section-heading {
	margin-bottom: 2.5rem !important;
}

.contact-panel .contact-form {
	margin-top: 2.5rem !important;
}

/* Mobile Rubro Picker Dropdown Styling */
.rubro-picker {
	display: none;
	margin: 1.5rem 0;
	position: relative;
	width: 100%;
}

.rubros-swiper-wrap {
	display: block;
}

@media (max-width: 767px) {
	.rubros-section__wrapper {
		overflow: visible !important;
	}

	.rubro-picker {
		display: block;
	}

	.rubros-swiper-wrap {
		display: none;
	}
}

.rubro-picker__button {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink);
	cursor: pointer;
	display: flex;
	gap: 0.8rem;
	padding: 0.75rem 1rem;
	text-align: left;
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
	width: 100%;
}

.rubro-picker__button:hover,
.rubro-picker__button:focus {
	border-color: var(--color-border-strong);
	outline: 0;
}

.rubro-picker__button>span:nth-child(2) {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}



.rubro-picker__button strong {
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
}

.rubro-picker__button small {
	color: var(--color-muted);
	font-size: 0.75rem;
	margin-top: 0.15rem;
}

.rubro-picker__button-icon {
	align-items: center;
	background: var(--color-primary-soft);
	border-radius: var(--radius);
	color: var(--color-primary);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.rubro-picker__chevron {
	color: var(--color-muted);
	font-size: 1.5rem;
	transition: transform var(--motion-standard) var(--ease-out);
}

.rubro-picker.is-open .rubro-picker__chevron {
	transform: rotate(180deg);
}

.rubro-picker.is-open .rubro-picker__button {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-color: var(--color-primary);
}

.rubro-picker__menu {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-bottom-left-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
	box-shadow: var(--shadow-hover);
	display: none;
	left: 0;
	max-height: 280px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 100;
}

.rubro-picker.is-open .rubro-picker__menu {
	border-color: var(--color-primary);
	border-top: 0;
	display: block;
}

.rubro-picker__option {
	align-items: center;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-ink);
	display: flex;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out);
}

.rubro-picker__option:last-child {
	border-bottom: 0;
}

.rubro-picker__option:hover,
.rubro-picker__option:focus {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
	outline: 0;
}

.rubro-picker__option-icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border-radius: var(--radius-xs);
	color: var(--color-primary);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
	width: 40px;
	flex: 0 0 40px;
	flex-shrink: 0;
	overflow: hidden;
}

.rubro-picker__option:hover .rubro-picker__option-icon,
.rubro-picker__option:focus .rubro-picker__option-icon {
	background-color: var(--color-primary);
	color: var(--color-on-primary);
}

.rubro-picker__option span:nth-child(2) {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rubro-picker__option strong {
	font-size: 0.88rem;
	font-weight: 700;
}

.rubro-picker__option small {}

.rubro-picker__button-icon {
	align-items: center;
	background: var(--color-primary-soft);
	border-radius: var(--radius);
	color: var(--color-primary);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	width: 40px;
	flex: 0 0 40px;
	flex-shrink: 0;
	overflow: hidden;
}

.rubro-picker__chevron {
	color: var(--color-muted);
	font-size: 1.5rem;
	transition: transform var(--motion-standard) var(--ease-out);
}

.rubro-picker.is-open .rubro-picker__chevron {
	transform: rotate(180deg);
}

.rubro-picker.is-open .rubro-picker__button {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-color: var(--color-primary);
}

.rubro-picker__menu {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-bottom-left-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
	box-shadow: var(--shadow-hover);
	display: none;
	left: 0;
	max-height: 280px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 100;
}

.rubro-picker.is-open .rubro-picker__menu {
	border-color: var(--color-primary);
	border-top: 0;
	display: block;
}

.rubro-picker__option {
	align-items: center;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-ink);
	display: flex;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out);
}

.rubro-picker__option:last-child {
	border-bottom: 0;
}

.rubro-picker__option:hover,
.rubro-picker__option:focus {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
	outline: 0;
}

.rubro-picker__option-icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border-radius: var(--radius-xs);
	color: var(--color-primary);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
	width: 40px;
	flex: 0 0 40px;
	flex-shrink: 0;
	overflow: hidden;
}

.rubro-picker__option:hover .rubro-picker__option-icon,
.rubro-picker__option:focus .rubro-picker__option-icon {
	background-color: var(--color-primary);
	color: var(--color-on-primary);
}

.rubro-picker__option span:nth-child(2) {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rubro-picker__option strong {
	font-size: 0.88rem;
	font-weight: 700;
}

.rubro-picker__option small {
	color: var(--color-muted);
	font-size: 0.72rem;
	margin-top: 0.1rem;
}

.rubro-picker__option:hover small,
.rubro-picker__option:focus small {
	color: var(--color-primary-hover);
}

/* Ensure search containers stack above other elements (like GSAP transformed actions) for autocomplete visibility */
.hero-search {
	position: relative !important;
	z-index: 30 !important;
}

.search-form {
	position: relative !important;
	z-index: 10 !important;
}

/* Autocomplete Dropdown styling */
.search-autocomplete-dropdown {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-hover);
	left: 0;
	margin-top: 0.5rem;
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
	position: absolute;
	min-width: 100%;
	width: max-content;
	max-width: min(480px, 95vw);
	top: 100%;
	z-index: 1000;
}

.search-autocomplete-list {
	list-style: none;
	margin: 0;
	padding: 0.4rem;
}

.search-autocomplete-item {
	align-items: center;
	border-radius: var(--radius);
	cursor: pointer;
	display: flex;
	gap: 0.8rem;
	padding: 0.65rem 0.82rem;
	transition: background-color var(--motion-fast) var(--ease-out);
}

.search-autocomplete-item:hover,
.search-autocomplete-item.is-active {
	background-color: var(--color-surface);
}

.search-autocomplete-icon {
	color: var(--color-primary);
	flex-shrink: 0;
	font-size: 1.32rem;
}

.search-autocomplete-content {
	align-items: center;
	display: flex;
	flex-grow: 1;
	gap: 0.5rem;
	justify-content: space-between;
	text-align: left;
}

.search-autocomplete-title {
	color: var(--color-ink);
	font-size: 0.95rem;
	font-weight: 700;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.search-autocomplete-badge {
	border-radius: 99px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 0.15rem 0.5rem;
	text-transform: uppercase;
	flex-shrink: 0;
}

.search-autocomplete-badge--rubro {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
}

.search-autocomplete-badge--localidad {
	background-color: var(--color-accent-soft);
	color: var(--color-highlight);
}

.search-autocomplete-badge--comercio {
	background-color: var(--color-secondary-soft);
	color: var(--color-secondary);
}

/* ==========================================================================
   Premium Custom Select Dropdowns
   ========================================================================== */

.custom-select-wrapper {
	position: relative;
	width: 100%;
}

.custom-select__button {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink);
	cursor: pointer;
	display: flex;
	gap: 0.8rem;
	padding: 0.4rem 1rem;
	min-height: 54px;
	text-align: left;
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
	width: 100%;
}

.custom-select__button:hover,
.custom-select__button:focus {
	border-color: var(--color-border-strong);
	outline: 0;
}

.custom-select-wrapper.is-open .custom-select__button {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-color: var(--color-primary);
}

.custom-select__button-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-width: 0;
}

.custom-select__button-content strong {
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 0.84rem;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.25;
}

.custom-select__button-content small {
	color: var(--color-muted);
	font-size: 0.72rem;
	margin-top: 0.05rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

.custom-select__button-icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid rgba(47, 111, 98, 0.08);
	border-radius: var(--radius);
	color: var(--color-primary);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
	flex-shrink: 0;
	overflow: hidden;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
}

.custom-select__chevron {
	color: var(--color-muted);
	font-size: 1.4rem;
	transition: transform var(--motion-standard) var(--ease-out);
	flex-shrink: 0;
}

.custom-select-wrapper.is-open .custom-select__chevron {
	transform: rotate(180deg);
}

.custom-select__menu {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-bottom-left-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
	box-shadow: var(--shadow-hover);
	display: none;
	left: 0;
	max-height: 280px;
	overflow-y: auto;
	position: absolute;
	min-width: 100%;
	width: max-content;
	max-width: min(480px, 95vw);
	top: 100%;
	z-index: 1100;
}

.custom-select-wrapper.is-open .custom-select__menu {
	border-color: var(--color-primary);
	border-top: 0;
	display: block;
}

.custom-select__option {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-ink);
	cursor: pointer;
	display: flex;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
	text-align: left;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out);
	width: 100%;
}

.custom-select__option:last-child {
	border-bottom: 0;
}

.custom-select__option:hover,
.custom-select__option:focus,
.custom-select__option.is-active {
	background-color: var(--color-primary-soft);
	color: var(--color-primary-hover);
	outline: 0;
}

.custom-select__option-icon {
	align-items: center;
	background: var(--term-accent, var(--color-primary-soft));
	border: 1px solid rgba(47, 111, 98, 0.08);
	border-radius: var(--radius-xs);
	color: var(--color-primary);
	display: inline-flex;
	height: 32px;
	justify-content: center;
	transition: background-color var(--motion-standard) var(--ease-out), color var(--motion-standard) var(--ease-out);
	width: 32px;
	flex-shrink: 0;
	overflow: hidden;
}

.custom-select__option:hover .custom-select__option-icon,
.custom-select__option:focus .custom-select__option-icon,
.custom-select__option.is-active .custom-select__option-icon {
	background-color: var(--color-primary);
	color: var(--color-on-primary);
	border-color: var(--color-primary);
}

.custom-select__option-text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-width: 0;
}

.custom-select__option strong {
	font-size: 0.8rem;
	font-weight: 700;
	white-space: normal;
}

/* Prevent text selection across the site, except for the listing description and inputs */
body {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.listing-profile-copy,
.listing-profile-copy *,
input,
textarea,
[contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

/* Mini rotation animation for the search button when form input changes */
.attention-rotate {
	display: inline-block;
	animation: pueblito-attention-rotate 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

@keyframes pueblito-attention-rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Editorial Magazine Layout Styles */
.archive-hero--revista {
	background: var(--color-primary-soft);
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}

.revista-layout {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: var(--space-section) var(--space-gutter) var(--space-section);
	display: flex;
	flex-direction: column;
	gap: var(--space-section);
}

.cover-story {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05), 0 5px 15px -5px rgba(0, 0, 0, 0.02);
	transition: border-color var(--motion-standard) var(--ease-out), box-shadow var(--motion-standard) var(--ease-out), transform var(--motion-medium) var(--ease-out);
}

.cover-story:hover {
	border-color: var(--color-border-strong);
	box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.03);
	transform: translateY(-4px);
}

.cover-story__media {
	aspect-ratio: 16 / 10;
	background: var(--term-accent, var(--color-primary-soft));
	display: block;
	overflow: hidden;
	position: relative;
}

.cover-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--motion-slow) var(--ease-out);
}

.cover-story:hover .cover-story__media img {
	transform: scale(1.03);
}

.cover-story__body {
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

/* Diagonal subtle background highlight representing the local identity */
.cover-story__body::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--term-accent) 0%, transparent 100%);
	opacity: 0.22;
	pointer-events: none;
}

.cover-story__meta {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.cover-story__category {
	background: var(--term-accent) !important;
	color: var(--color-ink) !important;
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.cover-story__date {
	color: var(--color-muted);
	font-size: 0.86rem;
	font-weight: 800;
}

.cover-story__title {
	font-size: clamp(1.8rem, 3.2vw, 2.75rem);
	font-weight: 800;
	line-height: 1.06;
	margin-top: 0;
	margin-bottom: 1.15rem;
	position: relative;
	z-index: 1;
}

.cover-story__title a {
	color: var(--color-ink);
	text-decoration: none;
	transition: color var(--motion-fast) var(--ease-out);
}

.cover-story__title a:hover {
	color: var(--color-primary-hover);
}

.cover-story__excerpt {
	color: var(--color-muted);
	font-size: 1.08rem;
	line-height: 1.62;
	margin-top: 0;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cover-story__footer {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.revista-grid-section {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

/* Responsiveness for Editorial layout */
@media (max-width: 992px) {
	.cover-story {
		grid-template-columns: 1.1fr 1fr;
	}

	.cover-story__body {
		padding: 2.25rem 1.75rem;
	}
}

@media (max-width: 768px) {
	.cover-story {
		grid-template-columns: 1fr;
	}

	.cover-story__media {
		aspect-ratio: 16 / 9;
	}

	.cover-story__body {
		padding: 2rem 1.25rem;
	}

	.cover-story__title {
		font-size: 1.75rem;
	}
}

/* Homepage Magazine Grid: 2 on top, 3 below */
.news-layout--front {
	grid-template-columns: repeat(6, 1fr);
}

.news-layout--front .post-card {
	grid-column: span 2;
}

.news-layout--front .post-card:nth-child(-n+2) {
	grid-column: span 3;
}

@media (max-width: 768px) {
	.news-layout--front {
		grid-template-columns: 1fr;
	}

	.news-layout--front .post-card,
	.news-layout--front .post-card:nth-child(-n+2) {
		grid-column: auto;
	}
}

/* Recommended posts section at bottom of articles */
.article-recommended-section {
	border-top: 1px solid var(--color-border);
	margin-top: 5rem;
	padding-top: 4rem;
}

.article-recommended-inner {
	margin: 0 auto;
	max-width: var(--max-width);
}

.article-recommended-inner h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 2.2rem;
}

/* =============================================================================
   ACCESSIBILITY: Improve --color-muted contrast (was #706560, ratio ~3.6:1)
   New value #564d48 achieves ~4.6:1 against --color-background (#FAF6EE)
   ============================================================================= */

:root {
	--color-muted: #564d48;
}

/* =============================================================================
   RESULT COUNT BADGE
   ============================================================================= */

.results-heading__count {
	background: var(--color-primary-soft);
	border: 1px solid rgba(45, 106, 79, 0.15);
	border-radius: 99px;
	color: var(--color-primary-hover);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	margin-left: 0.65rem;
	padding: 0.2rem 0.72rem;
	vertical-align: middle;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.results-heading h2 {
		font-size: clamp(1.2rem, 5vw, 1.6rem);
	}

	.results-heading__count {
		display: block;
		margin-left: 0;
		margin-top: 0.4rem;
		width: fit-content;
	}
}

/* =============================================================================
   HERO SOCIAL BUTTONS
   ============================================================================= */

.hero-social {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.hero-social__link {
	align-items: center;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transition: background-color var(--motion-standard) var(--ease-out),
		border-color var(--motion-standard) var(--ease-out),
		transform var(--motion-fast) var(--ease-out),
		box-shadow var(--motion-medium) var(--ease-out);
	width: 44px;
}

.hero-social__link:hover,
.hero-social__link:focus {
	transform: translateY(-2px);
	color: #ffffff;
}

.hero-social__link--whatsapp {
	background: #25d366;
	border-color: #25d366;
}

.hero-social__link--whatsapp:hover,
.hero-social__link--whatsapp:focus {
	background: #20ba5a;
	border-color: #20ba5a;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.hero-social__link--instagram {
	background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7) border-box;
	border-color: transparent;
	background-size: 120% 120%;
	background-position: center;
}

.hero-social__link--instagram:hover,
.hero-social__link--instagram:focus {
	background: linear-gradient(135deg, #e5be30, #d6266f, #5120b5) border-box;
	box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.hero-social__link--facebook {
	background: #1877f2;
	border-color: #1877f2;
}

.hero-social__link--facebook:hover,
.hero-social__link--facebook:focus {
	background: #166fe5;
	border-color: #166fe5;
	box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.hero-social__link .brand-icon {
	height: 1.2rem;
	width: 1.2rem;
}

.hero-social__link svg.whatsapp-logo {
	height: 1.3rem;
	width: 1.3rem;
}

@media (max-width: 600px) {
	.hero-social {
		gap: 0.5rem;
	}

	.hero-social__link {
		height: 38px;
		width: 38px;
	}

	.hero-social__link .brand-icon {
		height: 1rem;
		width: 1rem;
	}

	.hero-social__link svg.whatsapp-logo {
		height: 1.1rem;
		width: 1.1rem;
	}
}

/* =============================================================================
   FRONT-PAGE REVISTA LAYOUT (cover story + grid)
   ============================================================================= */

.revista-front-layout {
	display: grid;
	gap: var(--space-lg);
}

.revista-front-layout .cover-story {
	margin-bottom: 0;
}

.revista-front-layout__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
	.revista-front-layout__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.revista-front-layout__grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================================================
   LOCALIDADES COMPACT ROW
   ============================================================================= */

.section--localidades-compact {
	padding-top: var(--space-section);
	padding-bottom: var(--space-section);
}

.section--localidades-between-banners {
	padding-bottom: 0;
}

.localidades-compact {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 0 auto;
	max-width: var(--max-width);
	padding: 1rem 1.25rem;
}

.localidades-compact__label {
	align-items: center;
	color: var(--color-muted);
	display: flex;
	font-size: 0.88rem;
	font-weight: 800;
	gap: 0.4rem;
	white-space: nowrap;
}

.localidades-compact__label .material-symbols-outlined {
	color: var(--color-primary);
	font-size: 1.15rem;
}

.localidades-compact__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.localidades-compact__pill {
	align-items: center;
	background: var(--color-primary-soft);
	border: 1px solid rgba(45, 106, 79, 0.12);
	border-radius: 100px;
	color: var(--color-primary-hover);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 0.35rem;
	padding: 0.32rem 0.82rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out),
		border-color var(--motion-standard) var(--ease-out),
		transform var(--motion-fast) var(--ease-out),
		box-shadow var(--motion-medium) var(--ease-out);
}

.localidades-compact__pill:hover,
.localidades-compact__pill:focus {
	background: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
	color: #ffffff;
	transform: translateY(-1px);
}

.localidades-compact__count {
	background: rgba(45, 106, 79, 0.12);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.1rem 0.42rem;
}

.localidades-compact__pill:hover .localidades-compact__count,
.localidades-compact__pill:focus .localidades-compact__count {
	background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
	.localidades-compact {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
	}
}

/* =============================================================================
   CONTACT PAGE (differentiated from Publicità)
   ============================================================================= */

.contact-page {
	margin: 3rem auto var(--space-section);
	max-width: var(--max-width);
	padding: var(--space-lg) var(--space-gutter);
}

.contact-page__inner {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr 1.15fr;
}

.contact-page__info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-page__info-header .eyebrow {
	color: var(--color-secondary);
}

.contact-page__info-header h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.contact-page__info-header p {
	color: var(--color-muted);
	max-width: 420px;
}

.contact-page__channels {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.contact-channel {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink);
	display: flex;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out),
		border-color var(--motion-standard) var(--ease-out),
		box-shadow var(--motion-medium) var(--ease-out),
		transform var(--motion-fast) var(--ease-out);
}

.contact-channel:hover,
.contact-channel:focus {
	border-color: var(--color-border-strong);
	box-shadow: var(--shadow-hover);
	color: var(--color-ink);
	transform: translateY(-2px);
}

.contact-channel__icon {
	align-items: center;
	background: var(--color-primary-soft);
	border-radius: var(--radius);
	color: var(--color-primary);
	display: flex;
	flex: 0 0 auto;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.contact-channel__icon .material-symbols-outlined {
	font-size: 1.5rem;
}

.contact-channel__icon--whatsapp {
	background: #e8f5e9;
	color: #2d7656;
}

.contact-channel__icon--whatsapp svg.whatsapp-logo {
	height: 1.5rem;
	width: 1.5rem;
}

.contact-channel__info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.contact-channel__info strong {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 800;
}

.contact-channel__info span:last-child {
	color: var(--color-muted);
	font-size: 0.92rem;
}

.contact-channel--whatsapp:hover,
.contact-channel--whatsapp:focus {
	border-color: rgba(45, 118, 86, 0.3);
}

.contact-page__social {
	border-top: 1px solid var(--color-border);
	padding-top: 1.5rem;
}

.contact-page__social h3 {
	font-size: 1rem;
	margin-bottom: 0.85rem;
}

.contact-page__social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.contact-social-btn {
	align-items: center;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	color: var(--color-ink);
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	gap: 0.5rem;
	padding: 0.6rem 1.15rem;
	text-decoration: none;
	transition: background-color var(--motion-standard) var(--ease-out),
		border-color var(--motion-standard) var(--ease-out),
		color var(--motion-standard) var(--ease-out),
		transform var(--motion-fast) var(--ease-out),
		box-shadow var(--motion-medium) var(--ease-out);
}

.contact-social-btn .brand-icon {
	height: 1.05em;
	width: 1.05em;
}

.contact-social-btn--instagram:hover,
.contact-social-btn--instagram:focus {
	background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7) border-box;
	border-color: transparent;
	background-size: 120% 120%;
	background-position: center;
	box-shadow: 0 6px 18px rgba(225, 48, 108, 0.25);
	color: #ffffff;
	transform: translateY(-2px);
}

.contact-social-btn--facebook:hover,
.contact-social-btn--facebook:focus {
	background: #1877f2;
	border-color: #1877f2;
	box-shadow: 0 6px 18px rgba(24, 119, 242, 0.3);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Form card on the right side */
.contact-page__form-card {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	padding: 2rem;
}

.contact-page__form-header {
	margin-bottom: 1.25rem;
}

.contact-page__form-header .eyebrow {
	color: var(--color-primary);
}

.contact-page__form-header h3 {
	font-size: 1.35rem;
	margin-bottom: 0;
}

@media (max-width: 860px) {
	.contact-page__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.contact-page__form-card {
		padding: 1.25rem;
	}

	.field-grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================================================
   PUEBLITO ESPACIOS (PUBLICITARIOS)
   ============================================================================= */

.pueblito-espacios {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: var(--space-section) auto;
	max-width: var(--max-width);
	padding: 0 var(--space-gutter);
}

.pueblito-espacios--sidebar {
	margin: 0;
	padding: 0;
}

/* Adjust sibling sections to prevent double spacing */
.pueblito-espacios+.section {
	padding-top: 0;
}

.pueblito-espacio {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.pueblito-espacio__link {
	display: block;
	transition: transform var(--motion-fast) var(--ease-out),
		box-shadow var(--motion-medium) var(--ease-out);
}

.pueblito-espacio__link:hover,
.pueblito-espacio__link:focus {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.pueblito-espacio__image {
	border-radius: var(--radius-lg);
	display: block;
	height: auto;
	width: 100%;
}

/* Responsive adjustments & Demo Mode */
.pueblito-espacio__picture {
	display: block;
	width: 100%;
}

/* Visibility modifiers based on mobile behaviors */
@media (max-width: 767px) {
	.pueblito-espacio--hide-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.pueblito-espacio--only-mobile {
		display: none !important;
	}
}

/* Demo Placeholder styling */
.pueblito-espacio__demo-placeholder {
	align-items: center;
	background-color: var(--color-background-soft, #f4f6f5);
	border: 2px dashed var(--color-border-dark, #b5c7be);
	border-radius: var(--radius-lg);
	box-sizing: border-box;
	color: var(--color-text-muted, #596b61);
	display: flex;
	flex-direction: column;
	font-family: var(--font-primary, sans-serif);
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	transition: background-color var(--motion-fast) var(--ease-out);
	width: 100%;
}

.pueblito-espacio__link:hover .pueblito-espacio__demo-placeholder,
.pueblito-espacio__link:focus .pueblito-espacio__demo-placeholder {
	background-color: var(--color-border-soft, #e6ebe8);
	border-color: var(--color-primary, #1e3d2f);
	color: var(--color-text, #111e17);
}

.pueblito-espacio__demo-placeholder strong {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pueblito-espacio__demo-size {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 500;
	margin-top: 0.25rem;
	padding: 0.15rem 0.5rem;
}

/* Aspect-ratios for Demo Placeholders */
.pueblito-espacios--inicio .pueblito-espacio__demo-placeholder,
.pueblito-espacios--inicio_1 .pueblito-espacio__demo-placeholder,
.pueblito-espacios--inicio_3 .pueblito-espacio__demo-placeholder,
.pueblito-espacios--inicio_4 .pueblito-espacio__demo-placeholder,
.pueblito-espacios--guia .pueblito-espacio__demo-placeholder,
.pueblito-espacios--footer .pueblito-espacio__demo-placeholder {
	aspect-ratio: 1200 / 250;
	min-height: 150px;
}

.pueblito-espacios--sidebar .pueblito-espacio__demo-placeholder {
	aspect-ratio: 300 / 250;
	min-height: 250px;
}

/* Toggle Desktop/Mobile texts in Demo */
.pueblito-espacio__demo-desktop {
	display: block;
}

.pueblito-espacio__demo-mobile {
	display: none;
}

@media (max-width: 767px) {
	.pueblito-espacio__demo-desktop {
		display: none;
	}

	.pueblito-espacio__demo-mobile {
		display: block;
	}

	.pueblito-espacios--inicio .pueblito-espacio__demo-placeholder,
	.pueblito-espacios--inicio_1 .pueblito-espacio__demo-placeholder,
	.pueblito-espacios--inicio_3 .pueblito-espacio__demo-placeholder,
	.pueblito-espacios--inicio_4 .pueblito-espacio__demo-placeholder,
	.pueblito-espacios--guia .pueblito-espacio__demo-placeholder,
	.pueblito-espacios--footer .pueblito-espacio__demo-placeholder {
		aspect-ratio: 400 / 300;
		min-height: 200px;
	}
}