@font-face {
	font-display: swap;
	font-family: "Cardo";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/cardo/cardo_normal_400.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Cardo";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/cardo/cardo_normal_700.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Cardo";
	font-style: italic;
	font-weight: 400;
	src: url("../fonts/cardo/cardo_italic_400.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Hanken Grotesk";
	font-style: normal;
	font-weight: 100 900;
	src: url("../fonts/Hanken_Grotesk/HankenGrotesk-VariableFont_wght.ttf") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Hanken Grotesk";
	font-style: italic;
	font-weight: 100 900;
	src: url("../fonts/Hanken_Grotesk/HankenGrotesk-Italic-VariableFont_wght.ttf") format("truetype");
}

:root {
	--chh-heading-font: "Cardo", Georgia, serif;
	--chh-text-font: "Hanken Grotesk", "HK Grotesk", "HKGrotesk", "Helvetica Neue", Arial, sans-serif;
	--chh-header-bg: #fffdf8;
	--chh-header-text: #171714;
}

html {
	overflow-x: hidden;
}

@supports (overflow: clip) {
	html {
		overflow-x: clip;
	}
}

body {
	font-family: var(--chh-text-font);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--chh-heading-font);
}

.chh-site-header {
	color: var(--chh-header-text);
	font-family: var(--chh-text-font);
	position: relative;
	z-index: 80;
}

.chh-header-over-hero .chh-site-header {
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.chh-header-over-hero {
	--chh-header-bg: transparent;
	--chh-header-text: #fffdf8;
}

.admin-bar.chh-header-over-hero .chh-site-header {
	top: var(--chh-admin-bar-offset, 0px);
}

.chh-header-over-hero .chh-site-header.is-header-stuck {
	--chh-header-bg: #fffdf8;
	--chh-header-text: #171714;
	padding-bottom: 0;
}

@media (max-width: 782px) {
	.admin-bar .chh-search-panel {
		top: 46px;
	}

	.admin-bar .chh-search-close {
		top: calc(clamp(18px, 3vw, 42px) + 46px);
	}
}

.chh-top-bar {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(12, 42, 27, 0.96), rgba(37, 64, 50, 0.98) 50%, rgba(12, 42, 27, 0.96));
	border-bottom: 1px solid rgba(255, 253, 248, 0.08);
	color: rgba(255, 253, 248, 0.92);
	display: flex;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 820;
	justify-content: center;
	letter-spacing: 0.14em;
	line-height: 1.25;
	min-height: 38px;
	padding: 9px 24px;
	text-align: center;
	text-transform: uppercase;
}

.chh-top-bar a,
.chh-top-bar span {
	align-items: center;
	color: inherit;
	display: inline-flex;
	gap: 14px;
	text-decoration: none;
}

.chh-top-bar a::before,
.chh-top-bar a::after,
.chh-top-bar span::before,
.chh-top-bar span::after {
	background: rgba(208, 175, 108, 0.58);
	content: "";
	display: block;
	height: 1px;
	width: 28px;
}

.chh-top-bar a:hover,
.chh-top-bar a:focus {
	color: #f2dfb4;
}

.chh-header-inner {
	align-items: center;
	backdrop-filter: blur(18px) saturate(1.15);
	-webkit-backdrop-filter: blur(18px) saturate(1.15);
	background: rgba(255, 253, 248, 0.94);
	border-bottom: 1px solid rgba(23, 23, 20, 0.1);
	box-shadow: 0 18px 46px rgba(23, 23, 20, 0.08);
	display: grid;
	gap: clamp(24px, 3vw, 54px);
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	margin: 0;
	max-width: none;
	min-height: 116px;
	padding: 0 max(18px, calc((100vw - 1300px) / 2));
	position: relative;
	transform: translateY(0);
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 220ms ease;
	width: 100%;
	z-index: 90;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.chh-header-inner {
		background: #fffdf8;
	}
}

.chh-header-over-hero .chh-header-inner {
	background: rgba(12, 42, 27, 0.18);
	border-bottom-color: rgba(255, 253, 248, 0.18);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.chh-header-over-hero .chh-header-inner {
		background: rgba(12, 42, 27, 0.52);
	}
}

.chh-site-header.is-header-stuck .chh-header-inner {
	animation: chh-header-slide-down 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
	background: rgba(255, 253, 248, 0.96);
	border-bottom-color: rgba(23, 23, 20, 0.1);
	box-shadow: 0 18px 46px rgba(23, 23, 20, 0.08);
	left: 0;
	position: fixed;
	right: 0;
	top: var(--chh-admin-bar-offset, 0px);
}

.chh-site-header.is-header-stuck.is-header-hidden:not(.is-menu-open) .chh-header-inner {
	transform: translateY(calc(-100% - var(--chh-admin-bar-offset, 0px)));
}

.chh-site-header.is-header-stuck {
	padding-bottom: 116px;
}

@keyframes chh-header-slide-down {
	from {
		opacity: 0.98;
		transform: translateY(calc(-100% - var(--chh-admin-bar-offset, 0px)));
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chh-site-footer {
	background: #0c2a1b;
	color: #fffdf8;
	font-family: var(--chh-text-font);
}

.chh-footer-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-footer-main {
	border-top: 1px solid rgba(255, 253, 248, 0.1);
	padding: clamp(56px, 8vw, 104px) 0 clamp(42px, 6vw, 76px);
}

.chh-footer-main .chh-footer-container {
	display: grid;
	gap: clamp(34px, 5vw, 68px);
	grid-template-columns: 1fr;
	position: relative;
}

.chh-footer-columns {
	display: grid;
	gap: clamp(38px, 6vw, 84px);
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.55fr);
	position: relative;
}

.chh-footer-brand {
	max-width: 430px;
	position: relative;
	z-index: 1;
}

.chh-footer-logo {
	display: inline-flex;
	margin-bottom: 26px;
	max-width: min(340px, 100%);
}

.chh-footer-logo img {
	display: block;
	filter: brightness(0) invert(1);
	height: auto;
	max-height: 120px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.chh-footer-brand p {
	color: rgba(255, 253, 248, 0.74);
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 24px;
}

.chh-footer-map {
	bottom: -18px;
	height: auto;
	max-width: min(360px, 34vw);
	opacity: 0.12;
	pointer-events: none;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 0;
}

.chh-footer-menu,
.chh-footer-legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 11px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-footer-menu a,
.chh-footer-legal-menu a {
	color: inherit;
	font-size: 12px;
	font-weight: 780;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-footer-menu a:hover,
.chh-footer-menu a:focus,
.chh-footer-legal-menu a:hover,
.chh-footer-legal-menu a:focus {
	color: #c7a45d;
}

.chh-footer-widgets {
	display: grid;
	gap: clamp(24px, 3vw, 42px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	position: relative;
	z-index: 1;
}

.chh-footer-widget {
	color: rgba(255, 253, 248, 0.7);
	font-size: 14px;
	line-height: 1.5;
}

.chh-footer-widget-title,
.chh-footer-widget h2,
.chh-footer-widget h3 {
	color: #fffdf8;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.chh-footer-widget p {
	margin: 0 0 14px;
}

.chh-footer-widget ul,
.chh-footer-widget ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-footer-widget li + li {
	margin-top: 10px;
}

.chh-footer-widget a {
	color: rgba(255, 253, 248, 0.76);
	text-decoration: none;
}

.chh-footer-widget a:hover,
.chh-footer-widget a:focus {
	color: #c7a45d;
}

.chh-footer-subscribe {
	align-items: center;
	border: 1px solid rgba(255, 253, 248, 0.14);
	border-radius: 8px;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(22px, 3vw, 34px);
	position: relative;
	z-index: 1;
}

.chh-footer-subscribe::before,
.chh-footer-subscribe::after {
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 180ms ease;
}

.chh-footer-subscribe::before {
	background-image: var(--chh-footer-subscribe-image);
	background-position: center;
	background-size: cover;
	filter: grayscale(1) contrast(1.08) brightness(0.78);
	transform: scale(1.02);
	z-index: 0;
}

.chh-footer-subscribe::after {
	background:
		linear-gradient(135deg, rgba(12, 42, 27, 0.92), rgba(143, 47, 31, 0.62)),
		rgba(0, 0, 0, 0.28);
	z-index: 0;
}

.chh-footer-subscribe-has-image {
	background: #0c2a1b;
	border-color: rgba(255, 253, 248, 0.2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.chh-footer-subscribe-has-image::before,
.chh-footer-subscribe-has-image::after {
	opacity: 1;
}

.chh-footer-subscribe > * {
	position: relative;
	z-index: 1;
}

.chh-footer-subscribe-copy {
	max-width: 680px;
}

.chh-footer-subscribe h2 {
	color: #fffdf8;
	font-family: var(--chh-heading-font);
	font-size: clamp(30px, 3.5vw, 48px);
	font-weight: 400;
	line-height: 1;
	margin: 0 0 8px;
}

.chh-footer-subscribe p {
	color: rgba(255, 253, 248, 0.72);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

.chh-footer-subscribe-button {
	align-items: center;
	background: #c7a45d;
	border: 1px solid #c7a45d;
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.14em;
	line-height: 1;
	min-height: 48px;
	padding: 0 24px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.chh-footer-subscribe-button:hover,
.chh-footer-subscribe-button:focus {
	background: #fffdf8;
	border-color: #fffdf8;
	color: #0c2a1b;
}

.chh-footer-bottom {
	background: #092116;
	border-top: 1px solid rgba(255, 253, 248, 0.1);
	padding: 18px 0;
}

.chh-footer-bottom .chh-footer-container {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: space-between;
}

.chh-footer-bottom p {
	color: rgba(255, 253, 248, 0.62);
	font-size: 12px;
	line-height: 1.3;
	margin: 0;
}

.chh-header-menu {
	align-items: center;
	display: flex;
	gap: 0;
	grid-column: 1;
	grid-row: 1;
	justify-content: flex-start;
	margin-left: 58px;
	min-width: max-content;
	width: auto;
}

.chh-header-nav {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	min-width: max-content;
}

.chh-menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-menu li {
	position: relative;
}

.chh-menu > li > a {
	align-items: center;
	min-height: 116px;
	padding: 0 clamp(10px, 0.9vw, 18px);
	position: relative;
	white-space: nowrap;
}

.chh-menu > li.menu-item-has-children > a::after {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	height: 6px;
	margin-left: 9px;
	margin-top: -4px;
	transform: rotate(45deg);
	width: 6px;
}

.chh-menu a {
	color: inherit;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 14px;
	font-weight: 760;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease, background-color 160ms ease;
}

.chh-menu a:hover,
.chh-menu a:focus,
.chh-menu > li:hover > a,
.chh-menu > li:focus-within > a {
	color: #8f2f1f;
}

.chh-menu .sub-menu {
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.14);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
	color: #25251e;
	left: 50%;
	list-style: none;
	margin: 0;
	min-width: 230px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	top: calc(100% - 1px);
	transform: translate(-50%, 10px);
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
	visibility: hidden;
	z-index: 100;
}

.chh-menu li:hover > .sub-menu,
.chh-menu li:focus-within > .sub-menu {
	opacity: 1;
	transform: translate(-50%, 0);
	visibility: visible;
}

.chh-header-nav-right .chh-menu > li > .sub-menu {
	left: auto;
	right: 0;
	transform: translateY(10px);
}

.chh-header-nav-right .chh-menu > li:hover > .sub-menu,
.chh-header-nav-right .chh-menu > li:focus-within > .sub-menu {
	transform: translateY(0);
}

.chh-menu .sub-menu::before {
	background: #fffdf8;
	border-left: 1px solid rgba(37, 37, 30, 0.14);
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	content: "";
	height: 12px;
	left: 50%;
	position: absolute;
	top: -7px;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
}

.chh-header-nav-right .chh-menu > li > .sub-menu::before {
	left: auto;
	right: 22px;
}

.chh-menu .sub-menu a {
	color: #25251e;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0;
	padding: 12px 14px;
	text-transform: none;
	width: 100%;
}

.chh-menu .sub-menu a:hover,
.chh-menu .sub-menu a:focus {
	background: #f4efe6;
	color: #8f2f1f;
}

.chh-menu .sub-menu .sub-menu {
	left: calc(100% + 10px);
	top: 0;
	transform: translate(10px, 0);
}

.chh-menu .sub-menu li:hover > .sub-menu,
.chh-menu .sub-menu li:focus-within > .sub-menu {
	transform: translate(0, 0);
}

.chh-menu .sub-menu .sub-menu::before {
	display: none;
}

.chh-header-logo {
	align-items: center;
	display: flex;
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	position: relative;
	z-index: 2;
}

.chh-header-logo img {
	display: block;
	height: auto;
	max-height: 104px;
	max-width: 390px;
	object-fit: contain;
	object-position: center;
	width: 32vw;
	width: min(var(--chh-header-logo-width, 390px), 32vw);
}

.chh-header-logo .chh-site-title {
	display: block;
	line-height: 1;
}

.chh-header-logo-overlay {
	display: none;
}

.chh-default-logo img {
	filter: none;
	min-width: 340px;
	min-width: min(var(--chh-header-logo-width, 390px), 32vw);
}

.chh-header-over-hero .chh-default-logo .chh-header-logo-standard {
	filter: brightness(0) invert(1);
}

.chh-header-over-hero .chh-header-logo-has-overlay .chh-header-logo-standard {
	display: none;
}

.chh-header-over-hero .chh-header-logo-has-overlay .chh-header-logo-overlay {
	display: block;
	filter: none;
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-default-logo .chh-header-logo-standard {
	filter: none !important;
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-header-logo-has-overlay .chh-header-logo-standard {
	display: block !important;
	filter: none !important;
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-header-logo-has-overlay .chh-header-logo-overlay {
	display: none !important;
}

.chh-site-title {
	color: inherit;
	font-family: var(--chh-heading-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.chh-header-actions {
	align-items: center;
	display: flex;
	gap: clamp(14px, 1.4vw, 26px);
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	min-width: 0;
}

.chh-header-icon-link {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--chh-header-text);
	cursor: pointer;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	width: 38px;
}

.chh-header-icon-link svg {
	fill: none;
	height: 28px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 28px;
}

.chh-header-icon-link:hover,
.chh-header-icon-link:focus {
	background: rgba(12, 42, 27, 0.08);
	border-color: rgba(12, 42, 27, 0.16);
	color: #0c2a1b;
	outline: none;
	transform: translateY(-1px);
}

.chh-header-over-hero .chh-header-icon-link:hover,
.chh-header-over-hero .chh-header-icon-link:focus {
	background: rgba(255, 253, 248, 0.12);
	border-color: rgba(255, 253, 248, 0.38);
	color: #fffdf8;
}

.chh-search-overlay {
	background: rgba(12, 42, 27, 0.34);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 140;
}

.chh-search-panel {
	background: #fffdf8;
	box-shadow: 0 22px 80px rgba(0, 0, 0, 0.18);
	box-sizing: border-box;
	color: #25251e;
	left: 0;
	padding: clamp(28px, 4vw, 58px) clamp(22px, 6vw, 82px);
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-105%);
	transition: transform 220ms ease;
}

.admin-bar .chh-search-panel {
	top: 32px;
}

.chh-search-form {
	margin: 0 auto;
	max-width: 1300px;
	padding-right: 56px;
}

.chh-search-form label {
	color: #8f2f1f;
	display: block;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.chh-search-field-row {
	align-items: center;
	border-bottom: 0;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.chh-search-field-row input {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(37, 37, 30, 0.24);
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(28px, 3.8vw, 54px);
	font-weight: 400;
	line-height: 1.08;
	min-width: 0;
	outline: 0;
	padding: 0 0 14px;
	width: 100%;
}

.chh-search-field-row input::placeholder {
	color: rgba(37, 37, 30, 0.32);
	opacity: 1;
}

.chh-search-field-row button,
.chh-search-close {
	appearance: none;
	background: transparent;
	border: 0;
	color: #0c2a1b;
	cursor: pointer;
	font-family: var(--chh-text-font);
}

.chh-search-field-row button {
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	border-radius: 999px;
	color: #fffdf8;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1;
	padding: 15px 22px;
	text-transform: uppercase;
}

.chh-search-close:hover,
.chh-search-close:focus {
	color: #8f2f1f;
}

.chh-search-field-row button:hover,
.chh-search-field-row button:focus {
	background: #8f2f1f;
	border-color: #8f2f1f;
	color: #fffdf8;
}

.chh-search-close {
	align-items: center;
	display: inline-flex;
	font-size: 42px;
	height: 48px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: clamp(18px, 4vw, 56px);
	top: clamp(18px, 3vw, 42px);
	width: 48px;
}

.admin-bar .chh-search-close {
	top: calc(clamp(18px, 3vw, 42px) + 32px);
}

.chh-site-header.is-search-open .chh-search-overlay {
	opacity: 1;
	pointer-events: auto;
}

.chh-site-header.is-search-open .chh-search-panel {
	transform: translateY(0);
}

body.chh-search-lock {
	overflow: hidden;
}

.chh-menu-toggle {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--chh-header-text);
	cursor: pointer;
	display: inline-flex;
	grid-column: 1;
	grid-row: 1;
	height: 44px;
	justify-content: center;
	justify-self: start;
	padding: 0;
	position: relative;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	width: 44px;
	z-index: 90;
}

.chh-menu-toggle-label {
	color: #9ea6a1;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.chh-menu-toggle-lines {
	display: grid;
	gap: 6px;
	width: 30px;
}

.chh-menu-toggle-lines span {
	background: currentColor;
	display: block;
	height: 2px;
	border-radius: 999px;
	transform-origin: center;
	transition: transform 180ms ease, width 180ms ease;
	width: 30px;
}

.chh-menu-toggle-lines span:nth-child(2) {
	width: 30px;
}

.chh-menu-toggle-lines span:nth-child(3) {
	width: 30px;
}

.chh-menu-toggle:hover,
.chh-menu-toggle:focus {
	background: rgba(12, 42, 27, 0.08);
	border-color: rgba(12, 42, 27, 0.16);
	color: #0c2a1b;
	outline: none;
	transform: translateY(-1px);
}

.chh-header-over-hero .chh-menu-toggle:hover,
.chh-header-over-hero .chh-menu-toggle:focus {
	background: rgba(255, 253, 248, 0.12);
	border-color: rgba(255, 253, 248, 0.38);
	color: #fffdf8;
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-menu-toggle:hover,
.chh-header-over-hero .chh-site-header.is-header-stuck .chh-menu-toggle:focus {
	background: rgba(12, 42, 27, 0.08);
	border-color: rgba(12, 42, 27, 0.16);
	color: #0c2a1b;
}

.chh-menu-toggle:hover .chh-menu-toggle-lines span:nth-child(2),
.chh-menu-toggle:focus .chh-menu-toggle-lines span:nth-child(2),
.chh-menu-toggle:hover .chh-menu-toggle-lines span:nth-child(3),
.chh-menu-toggle:focus .chh-menu-toggle-lines span:nth-child(3) {
	width: 30px;
}

.chh-site-header.is-menu-open .chh-menu-toggle-lines span:nth-child(1) {
	transform: translateY(8px) rotate(32deg);
}

.chh-site-header.is-menu-open .chh-menu-toggle-lines span:nth-child(2) {
	opacity: 0;
}

.chh-site-header.is-menu-open .chh-menu-toggle-lines span:nth-child(3) {
	transform: translateY(-8px) rotate(-32deg);
	width: 30px;
}

.chh-drawer-backdrop {
	background: rgba(0, 0, 0, 0.42);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 120;
}

.chh-drawer-menu {
	background: #fffdf8;
	box-shadow: 28px 0 70px rgba(0, 0, 0, 0.22);
	color: #25251e;
	display: flex;
	flex-direction: column;
	height: 100vh;
	max-width: min(420px, 88vw);
	overflow-y: auto;
	padding: 28px;
	position: fixed;
	left: 0;
	top: 0;
	transform: translateX(-105%);
	transition: transform 220ms ease;
	width: 100%;
	z-index: 130;
}

.chh-site-header.is-menu-open .chh-drawer-backdrop {
	opacity: 1;
	pointer-events: auto;
}

.chh-site-header.is-menu-open .chh-drawer-menu {
	transform: translateX(0);
}

.chh-drawer-head {
	align-items: center;
	border-bottom: 1px solid rgba(37, 37, 30, 0.12);
	display: flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: space-between;
	letter-spacing: 0.08em;
	padding-bottom: 18px;
	text-transform: uppercase;
}

.chh-drawer-close {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 1px solid rgba(37, 37, 30, 0.18);
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	width: 40px;
}

.chh-drawer-nav {
	padding: 18px 0 0;
}

.chh-drawer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-drawer-list + .chh-drawer-list {
	border-top: 1px solid rgba(37, 37, 30, 0.12);
	margin-top: 8px;
	padding-top: 8px;
}

.chh-drawer-list li {
	margin: 0;
	position: relative;
}

.chh-drawer-list a {
	color: inherit;
	display: block;
	font-family: var(--chh-heading-font);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.05;
	padding: 14px 44px 14px 0;
	text-decoration: none;
}

.chh-drawer-list a:hover,
.chh-drawer-list a:focus {
	color: #8f2f1f;
}

.chh-drawer-list .sub-menu {
	border-left: 1px solid rgba(143, 47, 31, 0.24);
	display: none;
	list-style: none;
	margin: 0 0 8px 2px;
	padding: 0 0 0 16px;
}

.chh-drawer-list .is-submenu-open > .sub-menu {
	display: block;
}

.chh-drawer-list .sub-menu a {
	font-family: var(--chh-text-font);
	font-size: 15px;
	font-weight: 750;
	letter-spacing: 0.04em;
	line-height: 1.2;
	padding: 9px 0;
	text-transform: uppercase;
}

.chh-drawer-submenu-toggle {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 0;
	top: 8px;
	width: 42px;
}

.chh-drawer-submenu-toggle span[aria-hidden="true"] {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	display: block;
	height: 9px;
	transform: rotate(45deg);
	transition: transform 160ms ease;
	width: 9px;
}

.is-submenu-open > .chh-drawer-submenu-toggle span[aria-hidden="true"] {
	transform: rotate(225deg);
}

.chh-drawer-ticket {
	align-items: center;
	background: #8f2f1f;
	color: #fffdf8;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.08em;
	margin-top: auto;
	padding: 15px 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-ticket-button {
	align-self: center;
	background: transparent;
	border: 1px solid rgba(23, 23, 20, 0.18);
	border-radius: 999px;
	box-shadow: none;
	color: var(--chh-header-text);
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 760;
	justify-content: center;
	letter-spacing: 0.14em;
	line-height: 1;
	margin-left: 0;
	padding: 12px 18px;
	pointer-events: auto;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.chh-ticket-button:hover,
.chh-ticket-button:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	box-shadow: none;
	color: #fffdf8;
	transform: none;
}

.chh-header-over-hero .chh-ticket-button {
	border-color: rgba(255, 253, 248, 0.42);
}

.chh-header-over-hero .chh-ticket-button:hover,
.chh-header-over-hero .chh-ticket-button:focus {
	background: #fffdf8;
	border-color: #fffdf8;
	color: #0c2a1b;
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-ticket-button {
	border-color: rgba(23, 23, 20, 0.18);
}

.chh-header-over-hero .chh-site-header.is-header-stuck .chh-ticket-button:hover,
.chh-header-over-hero .chh-site-header.is-header-stuck .chh-ticket-button:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

.chh-ticket-modal-lock {
	overflow: hidden;
}

.chh-ticket-modal {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 1000;
}

.chh-ticket-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.chh-ticket-modal-backdrop {
	background: rgba(10, 24, 16, 0.72);
	inset: 0;
	position: absolute;
}

.chh-ticket-modal-panel {
	background: #fffdf8;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
	color: #25251e;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	left: 50%;
	max-height: min(86vh, 860px);
	max-width: min(940px, calc(100vw - 36px));
	outline: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, calc(-50% + 12px));
	transition: transform 180ms ease;
	width: 100%;
}

.chh-ticket-modal.is-open .chh-ticket-modal-panel {
	transform: translate(-50%, -50%);
}

.chh-ticket-modal-head {
	align-items: center;
	border-bottom: 1px solid rgba(37, 37, 30, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 22px clamp(20px, 3vw, 34px);
}

.chh-ticket-modal-head p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.chh-ticket-modal-head h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-ticket-modal-close {
	align-items: center;
	appearance: none;
	background: #0c2a1b;
	border: 0;
	border-radius: 999px;
	color: #fffdf8;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 28px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	width: 42px;
}

.chh-ticket-modal-body {
	min-height: 320px;
	overflow: auto;
	padding: clamp(18px, 3vw, 34px);
	-webkit-overflow-scrolling: touch;
}

.chh-ticket-modal-body .tt-widget {
	min-height: 360px;
}

.chh-ticket-modal-body .tt-widget-fallback {
	color: rgba(37, 37, 30, 0.72);
	font-family: var(--chh-text-font);
	font-size: 15px;
	line-height: 1.45;
}

.chh-ticket-modal-events {
	border-top: 1px solid rgba(37, 37, 30, 0.12);
	margin-top: clamp(28px, 4vw, 48px);
	padding-top: clamp(24px, 3.5vw, 42px);
}

.chh-ticket-modal-events-head {
	display: grid;
	gap: 9px;
	margin-bottom: 20px;
	max-width: 620px;
}

.chh-ticket-modal-events-head p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.chh-ticket-modal-events-head h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(30px, 3vw, 46px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-ticket-modal-event-list {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chh-ticket-modal-event-link {
	align-items: stretch;
	background: rgba(247, 242, 234, 0.52);
	border: 1px solid rgba(37, 37, 30, 0.1);
	border-radius: 8px;
	color: #0c2a1b;
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 92px;
	padding: 18px 20px;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.chh-ticket-modal-event-link:hover,
.chh-ticket-modal-event-link:focus {
	background: #fffdf8;
	border-color: rgba(12, 42, 27, 0.22);
	box-shadow: 0 14px 34px rgba(37, 37, 30, 0.08);
	color: #0c2a1b;
	outline: none;
	transform: translateY(-1px);
}

.chh-ticket-modal-event-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.chh-ticket-modal-event-copy > span {
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-ticket-modal-event-copy em {
	color: rgba(37, 37, 30, 0.58);
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-style: normal;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-ticket-modal-event-copy em::after {
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	content: "";
	display: inline-block;
	height: 7px;
	margin-left: 9px;
	transform: rotate(45deg);
	width: 7px;
}

.chh-ticket-modal-event-date {
	align-items: center;
	align-self: start;
	border-left: 1px solid rgba(37, 37, 30, 0.1);
	display: inline-flex;
	min-height: 100%;
	padding-left: 18px;
}

.chh-ticket-modal-event-date time {
	color: #8f2f1f;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.chh-ticket-modal-event-link:hover .chh-ticket-modal-event-copy em,
.chh-ticket-modal-event-link:focus .chh-ticket-modal-event-copy em {
	color: #8f2f1f;
}

.chh-directory-modal-lock {
	overflow: hidden;
}

.chh-directory-modal {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 1000;
}

.chh-directory-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.chh-directory-modal-backdrop {
	background: rgba(10, 24, 16, 0.72);
	inset: 0;
	position: absolute;
}

.chh-directory-modal-panel {
	background: #fffdf8;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
	color: #25251e;
	left: 50%;
	max-height: min(86vh, 820px);
	max-width: min(980px, calc(100vw - 36px));
	outline: none;
	overflow: auto;
	position: absolute;
	top: 50%;
	transform: translate(-50%, calc(-50% + 12px));
	transition: transform 180ms ease;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.chh-directory-modal.is-open .chh-directory-modal-panel {
	transform: translate(-50%, -50%);
}

.chh-directory-modal-close {
	align-items: center;
	appearance: none;
	background: #0c2a1b;
	border: 0;
	border-radius: 999px;
	color: #fffdf8;
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 42px;
	z-index: 2;
}

.chh-directory-modal-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	min-height: 520px;
}

.chh-directory-modal-image {
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.32), rgba(255, 253, 248, 0) 45%),
		#e9e0d2;
	margin: 0;
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.chh-directory-modal-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-directory-modal-copy {
	align-content: center;
	display: grid;
	padding: clamp(34px, 5vw, 62px);
	padding-right: clamp(50px, 6vw, 74px);
}

.chh-directory-modal-kicker {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-directory-modal-copy h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-directory-modal-meta {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1.25;
	margin: 12px 0 0;
	text-transform: uppercase;
}

.chh-directory-modal-dek,
.chh-directory-modal-content {
	color: rgba(23, 23, 20, 0.74);
	font-family: var(--chh-text-font);
	font-size: 15px;
	line-height: 1.55;
	margin-top: 18px;
}

.chh-directory-modal-content > *:first-child {
	margin-top: 0;
}

.chh-directory-modal-content > *:last-child {
	margin-bottom: 0;
}

.chh-directory-modal-sponsor {
	align-items: center;
	border-top: 1px solid rgba(23, 23, 20, 0.12);
	display: flex;
	gap: 16px;
	margin-top: 22px;
	padding-top: 18px;
}

.chh-directory-modal-sponsor > span {
	color: rgba(23, 23, 20, 0.58);
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.chh-directory-modal-sponsor a,
.chh-directory-modal-sponsor div {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(23, 23, 20, 0.1);
	display: inline-flex;
	min-height: 58px;
	padding: 10px 14px;
}

.chh-directory-modal-sponsor img {
	display: block;
	max-height: 38px;
	max-width: 150px;
	object-fit: contain;
}

.chh-directory-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.chh-directory-modal-primary {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(12, 42, 27, 0.48);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	min-height: 44px;
	padding: 0 18px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-directory-modal-primary:hover,
.chh-directory-modal-primary:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-directory-modal-loading {
	align-items: center;
	color: rgba(37, 37, 30, 0.72);
	display: flex;
	font-family: var(--chh-text-font);
	font-size: 15px;
	justify-content: center;
	min-height: 260px;
	padding: 34px;
}

.chh-directory-modal-image-placeholder::after,
.chh-directory-modal-skeleton {
	animation: chh-directory-skeleton 1.2s ease-in-out infinite;
	background: linear-gradient(90deg, rgba(12, 42, 27, 0.06), rgba(255, 253, 248, 0.62), rgba(12, 42, 27, 0.06));
	background-size: 220% 100%;
}

.chh-directory-modal-image-placeholder::after {
	content: "";
	inset: 0;
	position: absolute;
}

.chh-directory-modal-card-loading .chh-directory-modal-copy {
	align-content: center;
}

.chh-directory-modal-skeleton {
	border-radius: 999px;
	display: block;
	height: 16px;
	margin-top: 18px;
	max-width: 100%;
}

.chh-directory-modal-skeleton-title {
	border-radius: 4px;
	height: clamp(42px, 5vw, 64px);
	margin-top: 4px;
	width: min(420px, 92%);
}

.chh-directory-modal-skeleton-meta {
	height: 13px;
	width: 180px;
}

.chh-directory-modal-skeleton-line {
	height: 15px;
	margin-top: 26px;
	width: min(520px, 100%);
}

.chh-directory-modal-skeleton-line-short {
	margin-top: 12px;
	width: min(360px, 76%);
}

@keyframes chh-directory-skeleton {
	0% {
		background-position: 120% 0;
	}

	100% {
		background-position: -120% 0;
	}
}

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

.chh-arena-schedule {
	--chh-arena-time-column: 144px;
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.12);
	border-top: 4px solid #8f2f1f;
	border-radius: 6px;
	box-shadow: 0 18px 38px rgba(12, 42, 27, 0.07);
	padding: 20px;
	position: relative;
}

.chh-arena-schedule h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: 24px;
	line-height: 1.1;
	margin: 0 0 8px;
}

.chh-promo-card h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 400;
	line-height: 0.98;
	margin: 0;
}

.chh-schedule-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-schedule-item {
	align-items: baseline;
	background: rgba(247, 242, 234, 0.64);
	border-bottom: 1px solid rgba(42, 41, 31, 0.08);
	border-radius: 4px;
	display: grid;
	gap: 8px 14px;
	grid-template-columns: minmax(var(--chh-arena-time-column), var(--chh-arena-time-column)) minmax(0, 1fr);
	padding: 12px 14px;
}

.chh-schedule-item time {
	color: #6b5f4a;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.chh-schedule-item a,
.chh-promo-card a {
	color: inherit;
	text-decoration: none;
}

.chh-schedule-item a:hover,
.chh-schedule-item a:focus,
.chh-promo-card a:hover,
.chh-promo-card a:focus {
	color: #8f2f1f;
}

.chh-arena-sponsor,
.chh-empty-state {
	color: #6b5f4a;
	font-family: var(--chh-text-font);
	font-size: 14px;
	margin: 0 0 24px;
}

.chh-schedule-list + .chh-empty-state {
	margin-top: 16px;
}

.chh-arena-event-button {
	align-items: center;
	border: 1px solid #8f2f1f;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	margin-top: 18px;
	padding: 13px 18px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease;
}

.chh-arena-event-button:hover,
.chh-arena-event-button:focus {
	background: #8f2f1f;
	color: #fffdf8;
}

.chh-day-schedule-dots {
	display: none;
}

.chh-card-grid {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-exhibitor-promo-carousel.chh-card-grid {
	--chh-exhibitor-carousel-gap: 15px;
	--chh-exhibitor-carousel-width: min(1300px, calc(100vw - 40px));
	--chh-exhibitor-carousel-bleed: max(20px, calc((100vw - var(--chh-exhibitor-carousel-width)) / 2));
	display: block;
	margin-right: calc(var(--chh-exhibitor-carousel-bleed) * -1);
	overflow: visible;
	padding: 2px var(--chh-exhibitor-carousel-bleed) 8px 0;
	position: relative;
	visibility: visible;
	width: var(--chh-exhibitor-carousel-width);
}

.chh-exhibitor-promo-carousel .splide__track {
	overflow: visible;
	width: var(--chh-exhibitor-carousel-width);
}

.chh-exhibitor-promo-carousel .splide__list {
	align-items: stretch;
}

.chh-exhibitor-promo-slide {
	display: flex;
	height: auto;
	margin-right: var(--chh-exhibitor-carousel-gap) !important;
	width: calc((var(--chh-exhibitor-carousel-width) - (var(--chh-exhibitor-carousel-gap) * 3)) / 4);
}

.chh-exhibitor-promo-slide .chh-promo-card,
.chh-exhibitor-promo-slide .chh-event-mini-card {
	display: flex;
	height: 100%;
	width: 100%;
}

.chh-exhibitor-promo-slide .chh-event-mini-card > a {
	width: 100%;
}

.chh-exhibitor-promo-carousel .splide__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 18px 0 0;
	padding: 0;
	position: static;
	width: var(--chh-exhibitor-carousel-width);
}

.chh-exhibitor-promo-carousel .splide__pagination__page {
	appearance: none;
	background: rgba(37, 37, 30, 0.24);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 7px;
	padding: 0;
	transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
	width: 7px;
}

.chh-exhibitor-promo-carousel .splide__pagination__page.is-active {
	background: #8f2f1f;
	transform: scale(1.05);
	width: 22px;
}

.chh-exhibitor-promo-arrow {
	align-items: center;
	background: rgba(255, 253, 248, 0.94);
	border: 1px solid rgba(42, 41, 31, 0.12);
	border-radius: 999px;
	color: #25251e;
	cursor: pointer;
	display: inline-flex;
	font-size: 34px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	z-index: 3;
}

.chh-exhibitor-promo-arrow:hover,
.chh-exhibitor-promo-arrow:focus {
	background: #fffdf8;
}

.chh-exhibitor-promo-arrow-prev {
	left: -21px;
}

.chh-exhibitor-promo-arrow-next {
	left: calc(var(--chh-exhibitor-carousel-width) - 21px);
	right: auto;
}

.chh-promo-card {
	background: #efede6;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 18px;
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	padding: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-promo-card:hover,
.chh-promo-card:focus-within {
	border-color: rgba(23, 23, 20, 0.22);
	box-shadow: 0 18px 38px rgba(37, 37, 30, 0.1);
	transform: translateY(-2px);
}

.chh-promo-image {
	aspect-ratio: 4 / 3;
	background: #d77a55;
	display: block;
	overflow: hidden;
}

.chh-promo-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
	width: 100%;
}

.chh-promo-card:hover .chh-promo-image img,
.chh-promo-card:focus-within .chh-promo-image img {
	transform: scale(1.035);
}

.chh-promo-card:nth-child(3n + 2) .chh-promo-image {
	background: #7b8f60;
}

.chh-promo-card:nth-child(3n + 3) .chh-promo-image {
	background: #e8c2ad;
}

.chh-promo-card-body {
	align-content: start;
	display: grid;
	gap: 12px;
	padding: clamp(20px, 2.4vw, 30px);
}

.chh-promo-card p {
	color: rgba(23, 23, 20, 0.7);
	font-family: var(--chh-text-font);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.chh-feature-hero {
	--chh-feature-hero-height: min(clamp(660px, 52vw, 1040px), 92vh);
	background: #25251e;
	color: #fffdf8;
	display: grid;
	min-height: var(--chh-feature-hero-height);
	overflow: hidden;
	position: relative;
}

.chh-feature-hero-media {
	inset: 0;
	position: absolute;
}

.chh-feature-hero-media::after {
	background:
		linear-gradient(0deg, rgba(20, 19, 15, 0.9), rgba(20, 19, 15, 0.36) 48%, rgba(20, 19, 15, 0.14)),
		linear-gradient(90deg, rgba(20, 19, 15, 0.42), rgba(20, 19, 15, 0.04) 52%, rgba(20, 19, 15, 0.28));
	content: "";
	inset: 0;
	position: absolute;
}

.chh-feature-hero-left .chh-feature-hero-media::after {
	background:
		linear-gradient(90deg, rgba(20, 19, 15, 0.78), rgba(20, 19, 15, 0.36) 44%, rgba(20, 19, 15, 0.1) 74%),
		linear-gradient(0deg, rgba(20, 19, 15, 0.48), rgba(20, 19, 15, 0.1) 48%, rgba(20, 19, 15, 0.08));
}

.chh-feature-hero-slide {
	inset: 0;
	opacity: 0;
	position: absolute;
	transform: scale(1.025);
	transition: opacity 520ms ease, transform 1800ms ease;
}

.chh-feature-hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.chh-feature-hero-slide img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

:where(
	.chh-promo-image,
	.chh-latest-article-image,
	.chh-featured-event-image,
	.chh-events-archive-image,
	.chh-blog-card-image,
	.chh-single-featured-image,
	.chh-related-image,
	.chh-exhibitor-image,
	.chh-single-exhibitor-image,
	.chh-single-exhibitor-card-image,
	.chh-event-hero-image,
	.chh-event-gallery-slide,
	.chh-event-highlight-image,
	.chh-event-mini-image,
	.chh-event-faq-image
) {
	position: relative;
}

:where(
	.chh-promo-image,
	.chh-latest-article-image,
	.chh-featured-event-image,
	.chh-events-archive-image,
	.chh-blog-card-image,
	.chh-single-featured-image,
	.chh-related-image,
	.chh-exhibitor-image,
	.chh-single-exhibitor-image,
	.chh-single-exhibitor-card-image,
	.chh-event-hero-image,
	.chh-event-gallery-slide,
	.chh-event-highlight-image,
	.chh-event-mini-image,
	.chh-event-faq-image
)::after {
	background:
		linear-gradient(0deg, rgba(20, 19, 15, 0.34), rgba(20, 19, 15, 0.08) 54%, rgba(20, 19, 15, 0.14)),
		linear-gradient(90deg, rgba(12, 42, 27, 0.2), rgba(143, 47, 31, 0.08) 64%, rgba(20, 19, 15, 0.16));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

:where(
	.chh-promo-image,
	.chh-latest-article-image,
	.chh-featured-event-image,
	.chh-events-archive-image,
	.chh-blog-card-image,
	.chh-single-featured-image,
	.chh-related-image,
	.chh-exhibitor-image,
	.chh-single-exhibitor-image,
	.chh-single-exhibitor-card-image,
	.chh-event-hero-image,
	.chh-event-gallery-slide,
	.chh-event-highlight-image,
	.chh-event-mini-image,
	.chh-event-faq-image
) img {
	filter: saturate(0.86) contrast(0.96) brightness(0.92);
}

:where(
	.chh-featured-event-image,
	.chh-exhibitor-image,
	.chh-single-exhibitor-image,
	.chh-single-exhibitor-card-image,
	.chh-event-mini-image,
	.chh-event-hero-image,
	.chh-event-gallery-slide,
	.chh-event-highlight-image,
	.chh-event-faq-image
)::after {
	background:
		linear-gradient(0deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.02) 56%, rgba(199, 164, 93, 0.06)),
		linear-gradient(90deg, rgba(199, 164, 93, 0.12), rgba(143, 47, 31, 0.04) 58%, rgba(255, 253, 248, 0.04));
}

:where(
	.chh-featured-event-image,
	.chh-exhibitor-image,
	.chh-single-exhibitor-image,
	.chh-single-exhibitor-card-image,
	.chh-event-mini-image,
	.chh-event-hero-image,
	.chh-event-gallery-slide,
	.chh-event-highlight-image,
	.chh-event-faq-image
) img {
	filter: saturate(0.94) contrast(0.98) brightness(1.04) sepia(0.08);
}

.chh-feature-hero-content {
	align-content: end;
	align-items: end;
	box-sizing: border-box;
	display: grid;
	gap: clamp(34px, 6vw, 96px);
	grid-template-columns: minmax(0, 690px) minmax(280px, 520px);
	justify-content: space-between;
	justify-items: stretch;
	margin: 0 auto;
	max-width: 1300px;
	min-height: var(--chh-feature-hero-height);
	padding: clamp(96px, 12vh, 150px) 0 clamp(54px, 8vh, 92px);
	position: relative;
	width: calc(100% - clamp(40px, 10vw, 144px));
	z-index: 1;
}

.chh-feature-hero-left .chh-feature-hero-content {
	align-content: end;
	justify-items: start;
}

.chh-feature-hero-intro {
	margin: 0;
	max-width: 1040px;
	text-align: center;
}

.chh-feature-hero-left .chh-feature-hero-intro {
	margin: 0;
	max-width: 690px;
	text-align: left;
}

.chh-feature-hero-intro h2 {
	color: inherit;
	font-family: Cardo, sans-serif;
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 4.375rem;
	margin: 0;
	text-decoration: none;
}

.chh-feature-hero-intro p {
	color: rgba(255, 253, 248, 0.82);
	font-family: var(--chh-text-font);
	font-size: clamp(17px, 1.25vw, 22px);
	line-height: 1.5;
	margin: 22px auto 0;
	max-width: 620px;
}

.chh-feature-hero-left .chh-feature-hero-intro p {
	margin-left: 0;
}

.chh-feature-hero-subheader {
	color: #c7a45d;
	display: inline-block;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 760;
	letter-spacing: 0.16em;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.chh-feature-hero-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin-top: 34px;
}

.chh-feature-hero-center .chh-feature-hero-actions {
	justify-content: center;
}

.chh-feature-hero-button {
	background: #fffdf8;
	color: #171714;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.16em;
	line-height: 1;
	min-width: 136px;
	padding: 17px 22px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-feature-hero-button:hover,
.chh-feature-hero-button:focus {
	background: #c7a45d;
	color: #171714;
	transform: translateY(-1px);
}

.chh-feature-hero-static-meta {
	color: rgba(255, 253, 248, 0.78);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 560;
	line-height: 1.4;
}

.chh-feature-hero-details {
	align-items: end;
	align-self: end;
	display: flex;
	gap: clamp(24px, 3vw, 48px);
	justify-content: flex-end;
	max-width: min(560px, 45vw);
	text-align: left;
	width: 100%;
}

.chh-feature-hero-center .chh-feature-hero-details {
	justify-content: flex-end;
}

.chh-feature-hero-detail {
	align-items: flex-start;
	display: grid;
	gap: 16px;
	grid-template-columns: 22px minmax(0, 1fr);
	max-width: 330px;
}

.chh-feature-hero-detail svg {
	fill: none;
	height: 22px;
	stroke: rgba(255, 253, 248, 0.9);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.chh-feature-hero-detail strong,
.chh-feature-hero-detail em {
	display: block;
	font-family: var(--chh-text-font);
	font-style: normal;
	line-height: 1.35;
}

.chh-feature-hero-detail strong {
	color: #fffdf8;
	font-size: 14px;
	font-weight: 780;
	margin-bottom: 6px;
}

.chh-feature-hero-detail em {
	color: rgba(255, 253, 248, 0.64);
	font-size: 13px;
	font-weight: 450;
}

.chh-feature-hero-sponsor {
	align-self: end;
	display: grid;
	gap: 12px;
	justify-items: end;
	justify-self: end;
	max-width: min(440px, 36vw);
	text-align: right;
	width: 100%;
}

.chh-feature-hero-sponsor-label {
	color: #c7a45d;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 820;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-feature-hero-sponsor-logo {
	align-items: center;
	background: transparent;
	border: 0;
	display: inline-flex;
	justify-content: flex-end;
	min-height: 112px;
	min-width: min(360px, 100%);
	padding: 0;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.chh-feature-hero-sponsor-logo:hover,
.chh-feature-hero-sponsor-logo:focus {
	background: transparent;
	border-color: transparent;
	transform: translateY(-1px);
}

.chh-feature-hero-sponsor-logo img {
	display: block;
	height: auto;
	max-height: 82px;
	max-width: 320px;
	object-fit: contain;
	width: auto;
}

.chh-feature-hero-sponsor-text {
	color: #fffdf8;
	font-family: var(--chh-heading-font);
	font-size: clamp(30px, 3vw, 52px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.95;
	min-height: 0;
	text-align: inherit;
}

.chh-feature-hero-sponsor-text:hover,
.chh-feature-hero-sponsor-text:focus {
	color: #c7a45d;
}

.chh-feature-hero-sponsor strong {
	color: rgba(255, 253, 248, 0.78);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 620;
	line-height: 1.3;
}

.chh-feature-hero-list {
	align-items: flex-start;
	bottom: clamp(18px, 4vh, 38px);
	display: flex;
	gap: clamp(14px, 2vw, 34px);
	justify-content: center;
	left: clamp(18px, 5vw, 72px);
	margin: 0 auto;
	max-width: 1300px;
	position: absolute;
	right: clamp(18px, 5vw, 72px);
	width: auto;
}

.chh-feature-hero-list::before {
	border-top: 1px solid rgba(255, 253, 248, 0.38);
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: -1px;
	width: auto;
}

.chh-feature-hero-item {
	cursor: pointer;
	display: grid;
	flex: 0 1 520px;
	gap: 4px;
	grid-template-rows: auto auto auto;
	justify-items: center;
	min-width: 0;
	outline: 0;
	padding: 22px 0 0;
	position: relative;
	text-align: center;
}

.chh-feature-hero-item + .chh-feature-hero-item {
	border-left: 0;
}

.chh-feature-hero-item::before {
	background: #c7a45d;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	top: -1px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 220ms ease, background 220ms ease;
	width: min(92px, 70%);
}

.chh-feature-hero-item.is-active::before,
.chh-feature-hero-item:hover::before,
.chh-feature-hero-item:focus::before {
	background: #c7a45d;
	transform: translateX(-50%) scaleX(1);
}

.chh-feature-hero-item h3 {
	color: inherit;
	font-family: var(--chh-text-font);
	font-size: clamp(15px, 1vw, 18px);
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	max-width: 100%;
}

.chh-feature-hero-kicker,
.chh-feature-hero-meta {
	font-family: var(--chh-text-font);
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-feature-hero-kicker {
	color: #c7a45d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.chh-feature-hero-meta {
	color: rgba(255, 253, 248, 0.68);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0.08em;
	margin-top: 2px;
}

.chh-feature-hero-meta:empty {
	display: none;
}

.elementor-widget-chh-sponsor-ticker,
.elementor-widget-chh-sponsor-ticker .elementor-widget-container {
	max-width: none;
	overflow: visible;
}

.chh-sponsor-ticker {
	background: #fff;
	border-bottom: 0;
	border-top: 0;
	box-sizing: border-box;
	max-width: 100%;
	overflow: hidden;
	padding: 18px 0;
	position: relative;
	width: 100%;
}

.chh-sponsor-ticker::before,
.chh-sponsor-ticker::after {
	bottom: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 80px;
	z-index: 1;
}

.chh-sponsor-ticker::before {
	background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
	left: 0;
}

.chh-sponsor-ticker::after {
	background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
	right: 0;
}

.chh-sponsor-ticker-track {
	align-items: center;
	animation: chhSponsorTicker var(--chh-sponsor-ticker-duration, 95s) linear infinite;
	display: flex;
	min-width: max-content;
	width: max-content;
}

.chh-sponsor-ticker-pauses:hover .chh-sponsor-ticker-track {
	animation-play-state: paused;
}

.chh-sponsor-ticker-group {
	align-items: center;
	display: flex;
	gap: 42px;
	padding-right: 42px;
}

.chh-sponsor-ticker-item {
	align-items: center;
	background: #fff;
	border: 0;
	display: inline-flex;
	height: 96px;
	justify-content: center;
	padding: 10px 16px;
	text-decoration: none;
	width: 200px;
}

.chh-sponsor-ticker-item img {
	display: block;
	filter: grayscale(1);
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	opacity: 0.82;
	transition: filter 160ms ease, opacity 160ms ease;
}

.chh-sponsor-ticker-item:hover img,
.chh-sponsor-ticker-item:focus img {
	filter: none;
	opacity: 1;
}

.chh-event-sponsor-ticker {
	background: #fff;
	overflow: hidden;
	padding: 0;
}

.chh-event-sponsor-ticker .chh-sponsor-ticker {
	border-bottom: 0;
	border-top: 0;
}

.chh-event-sponsor-groups {
	display: grid;
	gap: clamp(30px, 4vw, 48px);
}

.chh-event-sponsor-group {
	margin: 0;
	max-width: none;
	padding: 0;
}

.chh-event-sponsor-group h3 {
	border-bottom: 1px solid rgba(37, 37, 30, 0.14);
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(26px, 2.4vw, 36px);
	font-weight: 400;
	line-height: 1;
	margin: 0 0 18px;
	padding-bottom: 12px;
}

.chh-event-sponsor-view-all {
	align-items: center;
	border: 1px solid rgba(37, 37, 30, 0.16);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: clamp(26px, 4vw, 44px);
	min-height: 46px;
	padding: 0 22px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-event-sponsor-view-all:hover,
.chh-event-sponsor-view-all:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	transform: translateY(-1px);
}

.chh-sponsor-list {
	--chh-sponsor-list-columns: 4;
	color: #25251e;
	margin: 0 auto;
	max-width: 1300px;
	padding: clamp(34px, 5vw, 72px) 24px;
}

.chh-sponsor-list-3 {
	--chh-sponsor-list-columns: 3;
}

.chh-sponsor-list-4 {
	--chh-sponsor-list-columns: 4;
}

.chh-sponsor-list-5 {
	--chh-sponsor-list-columns: 5;
}

.chh-sponsor-list-6 {
	--chh-sponsor-list-columns: 6;
}

.chh-sponsor-list-header {
	margin: 0 auto 26px;
	max-width: 760px;
	text-align: center;
}

.chh-sponsor-list-header p {
	color: #7a683f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.25;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.chh-sponsor-list-header h2 {
	font-family: var(--chh-heading-font);
	font-size: clamp(32px, 4vw, 54px);
	font-weight: 400;
	line-height: 1.05;
	margin: 0;
}

.chh-sponsor-list-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(var(--chh-sponsor-list-columns), minmax(0, 1fr));
}

.chh-sponsor-list-item {
	margin: 0;
	min-width: 0;
}

.chh-sponsor-list-item a,
.chh-sponsor-list-item div {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(37, 37, 30, 0.12);
	color: inherit;
	display: grid;
	gap: 12px;
	height: 100%;
	justify-items: center;
	min-height: 178px;
	padding: 24px 18px 20px;
	text-align: center;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-sponsor-list-item a:hover,
.chh-sponsor-list-item a:focus {
	border-color: rgba(37, 37, 30, 0.26);
	box-shadow: 0 16px 38px rgba(37, 37, 30, 0.08);
	transform: translateY(-2px);
}

.chh-sponsor-list-logo {
	align-items: center;
	display: flex;
	height: 92px;
	justify-content: center;
	width: 100%;
}

.chh-sponsor-list-logo img {
	display: block;
	filter: grayscale(1);
	max-height: 82px;
	max-width: min(190px, 82%);
	object-fit: contain;
	opacity: 0.88;
	transition: filter 160ms ease, opacity 160ms ease;
}

.chh-sponsor-list-item a:hover img,
.chh-sponsor-list-item a:focus img {
	filter: none;
	opacity: 1;
}

.chh-sponsor-list-name {
	display: block;
	font-family: var(--chh-text-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.chh-sponsor-list-level {
	color: #a77a2f;
	display: block;
	font-family: var(--chh-text-font);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin-top: -5px;
	text-transform: uppercase;
}

.chh-event-sponsor-section .chh-event-container {
	display: grid;
	gap: clamp(26px, 3.5vw, 44px);
}

.chh-event-sponsor-section .chh-event-section-heading {
	margin-bottom: 0;
	max-width: 780px;
}

.chh-event-sponsor-section .chh-event-section-heading h2 {
	font-size: clamp(34px, 3.4vw, 54px);
	line-height: 1.02;
}

.chh-event-sponsor-section .chh-event-sponsor-groups {
	display: grid;
	gap: clamp(22px, 3vw, 34px);
}

.chh-event-sponsor-section .chh-event-sponsor-group.chh-sponsor-list {
	border-top: 1px solid rgba(37, 37, 30, 0.12);
	display: grid;
	gap: clamp(18px, 2.5vw, 30px);
	grid-template-columns: minmax(130px, 190px) minmax(0, 1fr);
	margin: 0;
	max-width: none;
	padding: clamp(18px, 2.4vw, 28px) 0 0;
}

.chh-event-sponsor-section .chh-event-sponsor-group h3 {
	border: 0;
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0;
	padding: 5px 0 0;
	text-transform: uppercase;
}

.chh-event-sponsor-section .chh-sponsor-list-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.chh-event-sponsor-section .chh-sponsor-list-item a,
.chh-event-sponsor-section .chh-sponsor-list-item div {
	background: #fff;
	border-color: rgba(37, 37, 30, 0.1);
	border-radius: 8px;
	box-shadow: none;
	gap: 10px;
	min-height: 132px;
	padding: 20px 18px 16px;
}

.chh-event-sponsor-section .chh-sponsor-list-item a:hover,
.chh-event-sponsor-section .chh-sponsor-list-item a:focus {
	border-color: rgba(37, 37, 30, 0.2);
	box-shadow: 0 14px 30px rgba(37, 37, 30, 0.07);
	transform: translateY(-1px);
}

.chh-event-sponsor-section .chh-sponsor-list-logo {
	height: 92px;
}

.chh-event-sponsor-section .chh-sponsor-list-logo img {
	max-height: 82px;
	max-width: min(230px, 88%);
	opacity: 0.84;
}

.chh-event-sponsor-section .chh-sponsor-list-name {
	color: rgba(37, 37, 30, 0.86);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.01em;
}

.chh-event-sponsor-section .chh-event-sponsor-view-all {
	justify-self: start;
	margin-top: 0;
}

.chh-day-schedule-widget,
.chh-post-list-widget,
.chh-sponsor-ticker-widget {
	display: grid;
	gap: clamp(24px, 3vw, 42px);
}

.elementor-widget-chh-day-schedule,
.elementor-widget-chh-day-schedule .elementor-widget-container {
	overflow: visible;
}

.chh-day-schedule-widget {
	overflow: visible;
}

.elementor-widget-chh-day-schedule .chh-day-schedule-widget {
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

.chh-post-list-heading-row {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.chh-post-list-heading-row .chh-widget-section-heading {
	flex: 1 1 auto;
	min-width: 0;
}

.elementor-widget-chh-exhibitor-promo .chh-post-list-widget {
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

.chh-post-list-view-more {
	align-items: center;
	border: 1px solid rgba(23, 23, 20, 0.18);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	flex: 0 0 auto;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-bottom: 4px;
	min-height: 42px;
	padding: 0 18px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.chh-post-list-view-more:hover,
.chh-post-list-view-more:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-latest-articles-widget {
	display: grid;
	gap: clamp(22px, 2.5vw, 34px);
	max-width: 100%;
}

.chh-latest-articles-widget .chh-widget-section-heading h2 {
	font-size: clamp(34px, 2.7vw, 44px);
	line-height: 1;
}

.chh-latest-articles-intro {
	color: rgba(37, 37, 30, 0.72);
	font-size: clamp(15px, 1.1vw, 17px);
	line-height: 1.55;
	margin: -16px 0 0;
	max-width: 680px;
}

.chh-latest-articles-grid {
	display: grid;
	gap: clamp(26px, 3vw, 44px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-latest-article-card {
	display: grid;
	gap: 0;
	min-width: 0;
}

.chh-latest-article-image {
	aspect-ratio: 4 / 3;
	background: #d8d1c2;
	color: inherit;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.chh-latest-article-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
	width: 100%;
}

.chh-latest-article-card:hover .chh-latest-article-image img,
.chh-latest-article-card:focus-within .chh-latest-article-image img {
	transform: scale(1.035);
}

.chh-latest-article-body {
	display: grid;
	gap: 9px;
	padding-top: 0;
}

.chh-latest-article-card--no-image .chh-latest-article-body {
	padding-top: 0;
}

.chh-latest-article-meta {
	align-items: center;
	color: rgba(37, 37, 30, 0.58);
	display: flex;
	flex-wrap: wrap;
	font-size: 10px;
	font-weight: 780;
	gap: 10px;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-latest-article-meta span::before {
	content: "/";
	margin-right: 10px;
	opacity: 0.45;
}

.chh-latest-article-card h3 {
	color: #25251e;
	font-family: var(--chh-text-font);
	font-size: clamp(19px, 1.25vw, 23px);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
}

.chh-latest-article-card h3 a {
	color: inherit;
	text-decoration: none;
}

.chh-latest-article-card h3 a:hover,
.chh-latest-article-card h3 a:focus {
	color: #8f2f1f;
}

.chh-latest-article-excerpt {
	color: rgba(37, 37, 30, 0.7);
	font-size: 13px;
	line-height: 1.52;
	margin: 0;
}

.chh-latest-article-link {
	align-items: center;
	color: #8f2f1f;
	display: inline-flex;
	font-size: 10px;
	font-weight: 850;
	justify-self: start;
	letter-spacing: 0.13em;
	line-height: 1;
	margin-top: 3px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-latest-article-link::after {
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	content: "";
	height: 7px;
	margin-left: 9px;
	transform: rotate(45deg);
	width: 7px;
}

.chh-latest-article-link:hover,
.chh-latest-article-link:focus {
	color: #0c2a1b;
}

.chh-day-schedule-widget .chh-day-schedule {
	--chh-arena-carousel-gap: 15px;
	--chh-arena-carousel-width: min(1300px, calc(100vw - 40px));
	--chh-arena-carousel-bleed: max(20px, calc((100vw - var(--chh-arena-carousel-width)) / 2));
	background: transparent;
	border: 0;
	display: block;
	margin-right: calc(var(--chh-arena-carousel-bleed) * -1);
	padding: 2px var(--chh-arena-carousel-bleed) 8px 0;
	position: relative;
	width: var(--chh-arena-carousel-width);
}

.chh-day-schedule-widget .chh-day-schedule-track {
	overflow: visible;
	width: var(--chh-arena-carousel-width);
}

.chh-day-schedule-widget .chh-day-schedule-slide {
	width: calc((var(--chh-arena-carousel-width) - (var(--chh-arena-carousel-gap) * 2)) / 3);
}

.chh-day-schedule-widget .chh-arena-schedule {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}

.chh-day-schedule-widget .chh-arena-event-button {
	align-self: flex-start;
	margin-top: auto;
}

.chh-day-schedule-widget .splide__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 18px 0 0;
	padding: 0;
	position: static;
	width: var(--chh-arena-carousel-width);
}

.chh-day-schedule-widget .splide__pagination__page {
	appearance: none;
	background: rgba(37, 37, 30, 0.24);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 7px;
	padding: 0;
	transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
	width: 7px;
}

.chh-day-schedule-widget .splide__pagination__page.is-active {
	background: #8f2f1f;
	transform: scale(1.05);
	width: 22px;
}

.chh-day-schedule-arrow {
	align-items: center;
	background: rgba(255, 253, 248, 0.94);
	border: 1px solid rgba(42, 41, 31, 0.12);
	border-radius: 999px;
	color: #25251e;
	cursor: pointer;
	display: inline-flex;
	font-size: 34px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	z-index: 3;
}

.chh-day-schedule-arrow:hover,
.chh-day-schedule-arrow:focus {
	background: #fffdf8;
}

.chh-day-schedule-arrow-prev {
	left: -21px;
}

.chh-day-schedule-arrow-next {
	left: calc(var(--chh-arena-carousel-width) - 21px);
	right: auto;
}

.chh-widget-section-heading {
	color: #25251e;
	max-width: 760px;
}

.chh-widget-section-heading p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-widget-section-heading h2 {
	color: inherit;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.4vw, 54px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}

.chh-widget-section-heading-compact h2 {
	font-size: clamp(30px, 3vw, 44px);
}

.chh-vendor-toolbar .chh-widget-section-heading,
.chh-exhibitor-toolbar .chh-widget-section-heading {
	flex: 1 1 auto;
	min-width: 0;
}

.chh-vendor-toolbar .chh-widget-section-heading p,
.chh-exhibitor-toolbar .chh-widget-section-heading p {
	margin-bottom: 8px;
}

.chh-section-title-widget {
	align-items: end;
	display: grid;
	gap: clamp(18px, 4vw, 42px);
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 0 auto;
	max-width: 1300px;
	width: 100%;
}

.chh-section-title-copy {
	max-width: 900px;
}

.chh-section-title-widget p:first-child {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.chh-section-title-widget h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(54px, 7vw, 112px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.92;
	margin: 0;
}

.chh-section-title-intro {
	color: rgba(37, 37, 30, 0.7);
	font-family: var(--chh-text-font);
	font-size: clamp(17px, 1.25vw, 21px);
	line-height: 1.45;
	margin-top: 20px;
	max-width: 620px;
}

.chh-section-title-intro > *:first-child {
	margin-top: 0;
}

.chh-section-title-intro > *:last-child {
	margin-bottom: 0;
}

.chh-section-title-button {
	align-items: center;
	border: 1px solid rgba(37, 37, 30, 0.16);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	min-height: 46px;
	padding: 0 22px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.chh-section-title-button:hover,
.chh-section-title-button:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	transform: translateY(-1px);
}

.chh-section-title-center {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.chh-section-title-center .chh-section-title-copy,
.chh-section-title-center .chh-section-title-intro {
	margin-left: auto;
	margin-right: auto;
}

.chh-email-subscribe-cta {
	background: #0c2a1b;
	color: #fffdf8;
	min-height: clamp(300px, 28vw, 420px);
	overflow: hidden;
	position: relative;
}

.chh-email-subscribe-cta::after {
	background:
		linear-gradient(90deg, rgba(10, 24, 16, 0.82), rgba(10, 24, 16, 0.46) 52%, rgba(10, 24, 16, 0.16)),
		linear-gradient(0deg, rgba(10, 24, 16, 0.68), rgba(10, 24, 16, 0.08) 62%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.chh-email-subscribe-cta-center::after {
	background:
		linear-gradient(0deg, rgba(10, 24, 16, 0.74), rgba(10, 24, 16, 0.18) 68%),
		radial-gradient(circle at 50% 62%, rgba(10, 24, 16, 0.78), rgba(10, 24, 16, 0.2) 54%, rgba(10, 24, 16, 0.08));
}

.chh-email-subscribe-cta-bg {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.chh-email-subscribe-cta-bg img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-email-subscribe-cta-inner {
	align-items: end;
	display: flex;
	margin: 0 auto;
	max-width: 1300px;
	min-height: inherit;
	padding: clamp(34px, 4vw, 58px) 0;
	position: relative;
	width: calc(100% - clamp(40px, 10vw, 144px));
	z-index: 2;
}

.chh-email-subscribe-cta-copy {
	max-width: 680px;
}

.chh-email-subscribe-cta-center .chh-email-subscribe-cta-inner {
	justify-content: center;
	text-align: center;
}

.chh-email-subscribe-cta-center .chh-email-subscribe-cta-copy,
.chh-email-subscribe-cta-center .chh-email-subscribe-cta-intro {
	margin-left: auto;
	margin-right: auto;
}

.chh-email-subscribe-cta-eyebrow {
	color: #d0af6c;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.16em;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.chh-email-subscribe-cta h2 {
	color: #fffdf8;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.4vw, 54px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 12em;
}

.chh-email-subscribe-cta-center h2 {
	margin-left: auto;
	margin-right: auto;
}

.chh-email-subscribe-cta-intro {
	color: rgba(255, 253, 248, 0.82);
	font-family: var(--chh-text-font);
	font-size: clamp(17px, 1.25vw, 21px);
	line-height: 1.55;
	margin-top: 20px;
	max-width: 620px;
}

.chh-email-subscribe-cta-intro p {
	margin: 0;
}

.chh-email-subscribe-cta-intro p + p {
	margin-top: 10px;
}

.chh-email-subscribe-cta-button {
	align-items: center;
	background: rgba(255, 253, 248, 0.96);
	border: 1px solid rgba(255, 253, 248, 0.96);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.12em;
	line-height: 1;
	margin-top: clamp(24px, 3vw, 36px);
	min-height: 50px;
	padding: 0 24px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-email-subscribe-cta-button:hover,
.chh-email-subscribe-cta-button:focus {
	background: transparent;
	border-color: rgba(255, 253, 248, 0.72);
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-simple-page-hero {
	--chh-simple-hero-bg: #102c1d;
	--chh-simple-hero-text: #fffdf8;
	--chh-simple-hero-muted: rgba(255, 253, 248, 0.82);
	--chh-simple-hero-accent: #c7a45d;
	background: var(--chh-simple-hero-bg);
	box-sizing: border-box;
	color: var(--chh-simple-hero-text);
	margin: 0;
	min-height: clamp(300px, 28vw, 420px);
	overflow: hidden;
	padding: clamp(48px, 5vw, 74px) 0 clamp(34px, 4vw, 58px);
	position: relative;
}

.chh-simple-page-hero::after {
	background:
		linear-gradient(90deg, rgba(20, 19, 15, 0.78), rgba(20, 19, 15, 0.4) 48%, rgba(20, 19, 15, 0.08) 78%),
		linear-gradient(0deg, rgba(20, 19, 15, 0.46), rgba(20, 19, 15, 0.08) 54%, rgba(20, 19, 15, 0.12));
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.chh-simple-page-hero-center::after {
	background:
		linear-gradient(0deg, rgba(20, 19, 15, 0.56), rgba(20, 19, 15, 0.2) 58%, rgba(20, 19, 15, 0.18)),
		radial-gradient(circle at 50% 52%, rgba(20, 19, 15, 0.68), rgba(20, 19, 15, 0.22) 48%, rgba(20, 19, 15, 0.08) 78%);
}

.chh-simple-page-hero-green {
	--chh-simple-hero-bg: #102c1d;
	--chh-simple-hero-text: #fffdf8;
	--chh-simple-hero-muted: rgba(255, 253, 248, 0.74);
	--chh-simple-hero-accent: #d0af6c;
}

.chh-simple-page-hero-light {
	--chh-simple-hero-bg: #f6f1e8;
	--chh-simple-hero-text: #25251e;
	--chh-simple-hero-muted: rgba(37, 37, 30, 0.74);
	--chh-simple-hero-accent: #8f2f1f;
}

.chh-simple-page-hero-light::after {
	background:
		linear-gradient(90deg, rgba(246, 241, 232, 0.9), rgba(246, 241, 232, 0.68) 48%, rgba(246, 241, 232, 0.16) 78%),
		linear-gradient(0deg, rgba(246, 241, 232, 0.34), rgba(246, 241, 232, 0.08) 54%, rgba(246, 241, 232, 0.08));
}

.chh-simple-page-hero-light.chh-simple-page-hero-center::after {
	background:
		linear-gradient(0deg, rgba(246, 241, 232, 0.76), rgba(246, 241, 232, 0.28) 58%, rgba(246, 241, 232, 0.2)),
		radial-gradient(circle at 50% 52%, rgba(246, 241, 232, 0.88), rgba(246, 241, 232, 0.42) 48%, rgba(246, 241, 232, 0.08) 78%);
}

.chh-simple-page-hero-no-image::after {
	display: none;
}

.chh-simple-page-hero-bg {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.chh-simple-page-hero-bg img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-simple-page-hero-inner {
	align-items: flex-end;
	display: flex;
	margin: 0 auto;
	max-width: 1300px;
	min-height: inherit;
	padding: 0;
	position: relative;
	width: calc(100% - clamp(40px, 10vw, 144px));
	z-index: 2;
}

.chh-simple-page-hero-center .chh-simple-page-hero-inner {
	justify-content: center;
	text-align: center;
}

.chh-simple-page-hero-copy {
	max-width: 640px;
	position: relative;
	z-index: 1;
}

.chh-simple-page-hero-center .chh-simple-page-hero-copy {
	margin: 0 auto;
	max-width: min(820px, 100%);
	text-align: center;
}

.chh-simple-page-hero-center h1,
.chh-simple-page-hero-center .chh-simple-page-hero-intro,
.chh-simple-page-hero-center .chh-simple-page-hero-caption {
	margin-left: auto;
	margin-right: auto;
}

.chh-simple-page-hero-eyebrow {
	color: var(--chh-simple-hero-accent);
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 760;
	letter-spacing: 0.16em;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.chh-simple-page-hero h1 {
	color: var(--chh-simple-hero-text);
	font-family: var(--chh-heading-font);
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 10em;
}

.chh-simple-page-hero-intro {
	color: var(--chh-simple-hero-muted);
	font-family: var(--chh-text-font);
	font-size: clamp(17px, 1.25vw, 22px);
	line-height: 1.5;
	margin: 20px 0 0;
	max-width: 620px;
}

.chh-simple-page-hero-caption {
	color: var(--chh-simple-hero-muted);
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 24px 0 0;
	text-transform: uppercase;
}

.chh-featured-events {
	align-items: start;
	box-sizing: border-box;
	display: grid;
	gap: clamp(22px, 2.7vw, 40px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	max-width: none;
	padding: clamp(42px, 6vw, 86px) 25px;
	width: 100%;
}

.chh-featured-events-intro {
	position: sticky;
	top: 104px;
}

.chh-featured-events-eyebrow {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-featured-events h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.4vw, 54px);
	font-weight: 400;
	line-height: 1.02;
	margin: 0;
}

.chh-featured-events-copy {
	color: rgba(37, 37, 30, 0.76);
	font-family: var(--chh-heading-font);
	font-size: clamp(18px, 1.45vw, 23px);
	line-height: 1.16;
	margin: 22px 0 0;
	max-width: 360px;
}

.chh-featured-events-sponsor {
	align-items: start;
	display: grid;
	gap: 8px;
	justify-items: start;
	margin-top: clamp(20px, 2.2vw, 28px);
	max-width: 280px;
	padding-top: 18px;
	position: relative;
}

.chh-featured-events-sponsor::before {
	background: rgba(37, 37, 30, 0.14);
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 64px;
}

.chh-featured-events-sponsor-label {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-featured-events-sponsor a {
	color: inherit;
	text-decoration: none;
}

.chh-featured-events-sponsor-logo {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	min-height: 0;
	padding: 2px 0 0;
	transition: opacity 160ms ease, transform 160ms ease;
}

.chh-featured-events-sponsor a:hover .chh-featured-events-sponsor-logo,
.chh-featured-events-sponsor a:focus .chh-featured-events-sponsor-logo {
	opacity: 0.82;
	transform: translateY(-1px);
}

.chh-featured-events-sponsor-logo img {
	display: block;
	height: auto;
	max-height: 54px;
	max-width: 190px;
	object-fit: contain;
	width: auto;
}

.chh-featured-events-sponsor-name {
	color: rgba(37, 37, 30, 0.7);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.25;
}

.chh-featured-events-carousel {
	grid-column: span 2;
	min-width: 0;
}

.chh-featured-events-track,
.chh-event-schedule-track {
	overflow: visible !important;
}

.chh-featured-events-grid {
	display: grid;
	gap: clamp(22px, 2.7vw, 40px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-featured-events-carousel:not(.splide) .chh-featured-events-grid {
	display: grid !important;
	height: auto !important;
	transform: none !important;
}

.chh-event-schedule-carousel:not(.splide) .chh-event-schedule-grid {
	display: grid !important;
	height: auto !important;
	transform: none !important;
}

.chh-featured-events-carousel:not(.splide) .chh-featured-events-slide,
.chh-event-schedule-carousel:not(.splide) .chh-event-schedule-slide {
	flex: initial !important;
	width: auto !important;
}

.chh-featured-events-slide,
.chh-event-schedule-slide {
	display: flex;
	min-width: 0;
}

.chh-featured-event-card {
	align-content: start;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-top: 4px solid #8f2f1f;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(12, 42, 27, 0.07);
	cursor: pointer;
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.chh-featured-event-card:hover,
.chh-featured-event-card:focus-within {
	border-color: rgba(23, 23, 20, 0.18);
	box-shadow: 0 24px 54px rgba(12, 42, 27, 0.11);
	transform: translateY(-2px);
}

.chh-featured-event-image {
	aspect-ratio: 16 / 10;
	background: #e9e0d2;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	touch-action: pan-y;
	-webkit-user-drag: none;
	user-select: none;
}

.chh-featured-event-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
	width: 100%;
	-webkit-user-drag: none;
	user-select: none;
}

.chh-featured-event-card:hover img,
.chh-featured-event-card:focus-within img {
	transform: scale(1.035);
}

.chh-featured-event-date {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.chh-featured-event-body {
	align-content: start;
	align-self: start;
	background: transparent;
	border-left: 0;
	display: grid;
	justify-items: start;
	margin: 0;
	padding: 24px;
	position: relative;
	text-align: left;
	z-index: 1;
}

.chh-featured-event-body h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(26px, 2.45vw, 40px);
	font-weight: 400;
	line-height: 1.04;
	margin: 0;
}

.chh-featured-event-body a {
	color: inherit;
	text-decoration: none;
}

.chh-featured-event-body h3 a:hover,
.chh-featured-event-body h3 a:focus {
	color: #8f2f1f;
}

.chh-featured-event-meta {
	align-items: center;
	background: rgba(247, 242, 234, 0.64);
	border-radius: 4px;
	color: rgba(23, 23, 20, 0.68);
	display: flex;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 800;
	gap: 7px;
	letter-spacing: 0.08em;
	margin: 14px 0 0;
	padding: 9px 11px;
	text-transform: uppercase;
}

.chh-featured-event-meta svg {
	fill: none;
	flex: 0 0 auto;
	height: 15px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 15px;
}

.chh-featured-event-meta span {
	min-width: 0;
}

.chh-featured-event-excerpt {
	color: rgba(37, 37, 30, 0.72);
	font-family: var(--chh-text-font);
	font-size: 14px;
	line-height: 1.42;
	margin: 14px 0 0;
	max-width: 34em;
}

.chh-featured-event-link {
	border-bottom: 1px solid #8f2f1f;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	margin-top: 16px;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.chh-featured-events-dots {
	display: none;
}

.chh-featured-events-carousel .splide__pagination,
.chh-event-schedule-carousel .splide__pagination {
	display: none;
	list-style: none;
	padding: 0;
	position: static;
}

.chh-event-schedule-dots {
	display: none;
}

.chh-blog-page {
	background: #f6f1e8;
	color: #25251e;
	font-family: var(--chh-text-font);
}

.chh-blog-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-blog-hero {
	border-bottom: 1px solid rgba(37, 37, 30, 0.14);
	padding: clamp(96px, 14vw, 180px) 0 clamp(42px, 7vw, 86px);
}

.chh-blog-hero.chh-simple-page-hero {
	border-bottom: 0;
	padding: clamp(64px, 7vw, 104px) 0 clamp(44px, 5.6vw, 76px);
}

.chh-blog-eyebrow {
	color: #8f2f1f;
	font-size: 12px;
	font-weight: 820;
	letter-spacing: 0.16em;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.chh-blog-hero h1 {
	color: inherit;
	font-family: var(--chh-heading-font);
	font-size: clamp(54px, 7.4vw, 116px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.92;
	margin: 0;
	max-width: 900px;
}

.chh-blog-hero.chh-simple-page-hero h1 {
	color: var(--chh-simple-hero-text);
	font-size: clamp(42px, 5vw, 72px);
	line-height: 1.02;
	max-width: 10em;
}

.chh-blog-intro {
	color: rgba(37, 37, 30, 0.72);
	font-size: clamp(18px, 1.5vw, 24px);
	line-height: 1.36;
	margin-top: 26px;
	max-width: 620px;
}

.chh-blog-intro p {
	margin: 0;
}

.chh-blog-hero .chh-simple-page-hero-intro p {
	margin: 0;
}

.chh-search-page,
.chh-error-page {
	background: #f6f1e8;
	color: #25251e;
	font-family: var(--chh-text-font);
}

.chh-search-hero {
	border-bottom: 1px solid rgba(37, 37, 30, 0.12);
	padding: clamp(70px, 9vw, 128px) 0 clamp(38px, 5vw, 72px);
}

.chh-search-hero h1 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(44px, 5.8vw, 88px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
	max-width: 900px;
}

.chh-search-page-form {
	margin-top: clamp(28px, 4vw, 46px);
	max-width: 820px;
}

.chh-search-page-form label {
	color: rgba(37, 37, 30, 0.62);
	display: block;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-search-page-field {
	align-items: stretch;
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.14);
	border-radius: 999px;
	box-shadow: 0 18px 46px rgba(37, 37, 30, 0.06);
	display: flex;
	gap: 10px;
	padding: 7px;
}

.chh-search-page-field input {
	background: transparent;
	border: 0;
	color: #25251e;
	flex: 1 1 auto;
	font-family: var(--chh-text-font);
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.2;
	min-height: 52px;
	min-width: 0;
	outline: none;
	padding: 0 20px;
}

.chh-search-page-field input::placeholder {
	color: rgba(37, 37, 30, 0.46);
}

.chh-search-page-field button,
.chh-error-primary,
.chh-error-secondary {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.12em;
	line-height: 1;
	min-height: 52px;
	padding: 0 24px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}

.chh-search-page-field button,
.chh-error-primary {
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	color: #fffdf8;
}

.chh-search-page-field button:hover,
.chh-search-page-field button:focus,
.chh-error-primary:hover,
.chh-error-primary:focus {
	background: #8f2f1f;
	border-color: #8f2f1f;
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-error-secondary {
	background: transparent;
	border: 1px solid rgba(37, 37, 30, 0.18);
	color: #0c2a1b;
}

.chh-error-secondary:hover,
.chh-error-secondary:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-events-archive-page {
	background: #f6f1e8;
	color: #25251e;
	font-family: var(--chh-text-font);
}

.chh-events-archive-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-events-archive-hero {
	border-bottom: 1px solid rgba(37, 37, 30, 0.12);
	padding: clamp(76px, 10vw, 142px) 0 clamp(38px, 5vw, 72px);
}

.chh-events-archive-hero h1 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(58px, 8vw, 122px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.9;
	margin: 0;
}

.chh-events-archive-intro {
	color: rgba(37, 37, 30, 0.72);
	font-size: clamp(18px, 1.45vw, 22px);
	line-height: 1.42;
	margin-top: 24px;
	max-width: 620px;
}

.chh-events-archive-intro p {
	margin: 0;
}

.chh-events-archive-content {
	padding: clamp(36px, 6vw, 82px) 0 clamp(72px, 10vw, 132px);
}

.chh-events-archive-grid {
	display: grid;
	gap: clamp(24px, 3vw, 38px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-events-archive-grid-featured {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
}

.chh-events-archive-card {
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.1);
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-events-archive-card:hover,
.chh-events-archive-card:focus-within {
	border-color: rgba(37, 37, 30, 0.2);
	box-shadow: 0 20px 54px rgba(37, 37, 30, 0.08);
	transform: translateY(-2px);
}

.chh-events-archive-image {
	aspect-ratio: 16 / 10;
	background: #d8d1c2;
	display: block;
	overflow: hidden;
}

.chh-events-archive-grid-featured .chh-events-archive-image {
	aspect-ratio: 16 / 9;
}

.chh-events-archive-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
	width: 100%;
}

.chh-events-archive-card:hover .chh-events-archive-image img,
.chh-events-archive-card:focus-within .chh-events-archive-image img {
	transform: scale(1.035);
}

.chh-events-archive-card-copy {
	align-content: start;
	display: grid;
	gap: 16px;
	padding: clamp(22px, 3vw, 36px);
}

.chh-events-archive-date {
	align-items: center;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 20px;
	font-weight: 850;
	justify-self: start;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.chh-events-archive-date span,
.chh-events-archive-date strong,
.chh-events-archive-date em {
	align-items: center;
	display: inline-flex;
	font-style: normal;
	font-weight: inherit;
}

.chh-events-archive-date span {
	background: transparent;
	border: 0;
	color: #8f2f1f;
	margin-right: 16px;
	min-height: 0;
	padding: 0;
}

.chh-events-archive-date strong {
	align-items: center;
	color: #0c2a1b;
	gap: 8px;
}

.chh-events-archive-date em {
	color: rgba(143, 47, 31, 0.78);
}

.chh-events-archive-date strong::after {
	background: rgba(143, 47, 31, 0.28);
	content: "";
	display: inline-block;
	height: 1px;
	margin: 0 10px;
	width: 34px;
}

.chh-events-archive-card h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.8vw, 58px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}

.chh-events-archive-card h2 a {
	color: inherit;
	text-decoration: none;
}

.chh-events-archive-card h2 a:hover,
.chh-events-archive-card h2 a:focus {
	color: #8f2f1f;
}

.chh-events-archive-excerpt {
	color: rgba(37, 37, 30, 0.7);
	font-size: 15px;
	line-height: 1.5;
	max-width: 42em;
}

.chh-events-archive-excerpt p {
	margin: 0;
}

.chh-events-archive-meta {
	border-top: 1px solid rgba(37, 37, 30, 0.12);
	color: rgba(37, 37, 30, 0.62);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: 800;
	gap: 10px 16px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	padding-top: 16px;
	text-transform: uppercase;
}

.chh-events-archive-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2px;
}

.chh-events-archive-button {
	align-items: center;
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	border-radius: 999px;
	color: #fffdf8;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	min-height: 42px;
	padding: 0 18px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-events-archive-button-secondary {
	background: transparent;
	border-color: rgba(37, 37, 30, 0.16);
	color: #0c2a1b;
}

.chh-events-archive-button:hover,
.chh-events-archive-button:focus {
	background: #8f2f1f;
	border-color: #8f2f1f;
	color: #fffdf8;
	outline: none;
	transform: translateY(-1px);
}

.chh-blog-content {
	padding: clamp(34px, 6vw, 76px) 0 clamp(70px, 10vw, 130px);
}

.chh-blog-grid {
	display: grid;
	gap: clamp(28px, 4vw, 58px) 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-blog-card {
	display: grid;
	gap: 18px;
}

.chh-blog-card-featured {
	align-items: start;
	border-bottom: 1px solid rgba(37, 37, 30, 0.14);
	display: grid;
	gap: clamp(28px, 4vw, 52px);
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
	padding-bottom: clamp(36px, 6vw, 82px);
}

.chh-blog-card-image {
	aspect-ratio: 4 / 3;
	background: #d8d1c2;
	color: inherit;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.chh-blog-card-featured .chh-blog-card-image {
	aspect-ratio: 16 / 9;
	width: 100%;
}

.chh-blog-card-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
	width: 100%;
}

.chh-blog-card:hover .chh-blog-card-image img,
.chh-blog-card:focus-within .chh-blog-card-image img {
	transform: scale(1.035);
}

.chh-blog-card-body {
	display: grid;
	gap: 13px;
}

.chh-blog-card-featured .chh-blog-card-body {
	align-content: start;
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	box-sizing: border-box;
	max-width: none;
	padding: clamp(22px, 3vw, 34px) 0 0;
}

.chh-blog-card-meta {
	align-items: center;
	color: rgba(37, 37, 30, 0.58);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: 780;
	gap: 10px;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-blog-card-meta span::before {
	content: "/";
	margin-right: 10px;
	opacity: 0.45;
}

.chh-blog-card h2 {
	color: inherit;
	font-family: var(--chh-heading-font);
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
}

.chh-blog-card-featured h2 {
	font-size: clamp(34px, 3vw, 48px);
	line-height: 1;
}

.chh-blog-card h2 a {
	color: inherit;
	text-decoration: none;
}

.chh-blog-card h2 a:hover,
.chh-blog-card h2 a:focus {
	color: #8f2f1f;
}

.chh-blog-card-excerpt {
	color: rgba(37, 37, 30, 0.7);
	font-size: 15px;
	line-height: 1.5;
}

.chh-blog-card-featured .chh-blog-card-excerpt {
	font-size: 17px;
}

.chh-blog-card-excerpt p {
	margin: 0;
}

.chh-blog-card-link {
	align-items: center;
	color: #8f2f1f;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1;
	margin-top: 4px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-blog-card-link::after {
	content: "";
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	height: 7px;
	margin-left: 9px;
	transform: rotate(45deg);
	width: 7px;
}

.chh-blog-card-link:hover,
.chh-blog-card-link:focus {
	color: #0c2a1b;
}

.chh-blog-pagination {
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	margin-top: clamp(42px, 6vw, 82px);
	padding-top: 28px;
}

.chh-blog-pagination .nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.chh-blog-pagination .page-numbers {
	align-items: center;
	border: 1px solid rgba(37, 37, 30, 0.14);
	color: inherit;
	display: inline-flex;
	font-size: 13px;
	font-weight: 760;
	height: 42px;
	justify-content: center;
	min-width: 42px;
	padding: 0 14px;
	text-decoration: none;
}

.chh-blog-pagination .page-numbers.current,
.chh-blog-pagination .page-numbers:hover,
.chh-blog-pagination .page-numbers:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

.chh-blog-empty {
	border: 1px solid rgba(37, 37, 30, 0.14);
	padding: clamp(28px, 5vw, 56px);
}

.chh-blog-empty h2 {
	font-family: var(--chh-heading-font);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 400;
	line-height: 1;
	margin: 0 0 12px;
}

.chh-blog-empty p {
	color: rgba(37, 37, 30, 0.68);
	margin: 0;
}

.chh-search-empty {
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.12);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(37, 37, 30, 0.06);
	max-width: 760px;
	padding: clamp(30px, 5vw, 58px);
}

.chh-search-empty p {
	color: #8f2f1f;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-search-empty h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.4vw, 54px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-search-empty span {
	color: rgba(37, 37, 30, 0.68);
	display: block;
	font-size: 16px;
	line-height: 1.55;
	margin-top: 18px;
	max-width: 34em;
}

.chh-search-groups {
	display: grid;
	gap: clamp(48px, 7vw, 88px);
}

.chh-search-group {
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	padding-top: clamp(22px, 3vw, 36px);
}

.chh-search-group-header {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: clamp(22px, 3vw, 34px);
}

.chh-search-group-header p {
	color: #8f2f1f;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.chh-search-group-header h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-search-view-more {
	align-items: center;
	border: 1px solid rgba(12, 42, 27, 0.2);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1;
	padding: 14px 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-search-view-more:hover,
.chh-search-view-more:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

.chh-search-grid {
	gap: clamp(24px, 3vw, 42px) 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chh-search-card {
	gap: 14px;
}

.chh-search-card .chh-blog-card-body {
	border-top: 1px solid rgba(37, 37, 30, 0.12);
	padding-top: 16px;
}

.chh-search-card .chh-blog-card-image {
	aspect-ratio: 5 / 4;
	border-radius: 8px;
}

.chh-search-card .chh-blog-card-meta span::before {
	content: none;
	margin-right: 0;
}

.chh-search-card h2 {
	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.05;
}

.chh-search-card .chh-blog-card-excerpt {
	font-size: 14px;
}

.chh-error-hero {
	min-height: calc(100vh - 220px);
	padding: clamp(58px, 8vw, 112px) 0 clamp(70px, 10vw, 130px);
}

.chh-error-container {
	align-items: center;
	box-sizing: border-box;
	display: grid;
	gap: clamp(34px, 6vw, 90px);
	grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-error-copy h1 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(48px, 6.2vw, 96px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.95;
	margin: 0;
	max-width: 8.5em;
}

.chh-error-intro {
	color: rgba(37, 37, 30, 0.72);
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.48;
	margin-top: 24px;
	max-width: 620px;
}

.chh-error-intro p {
	margin: 0;
}

.chh-error-search-form {
	margin-top: clamp(28px, 4vw, 42px);
	max-width: 680px;
}

.chh-error-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.chh-error-art {
	align-items: center;
	background: #fffdf8;
	border: 1px solid rgba(37, 37, 30, 0.1);
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(37, 37, 30, 0.08);
	display: flex;
	min-height: clamp(300px, 34vw, 480px);
	overflow: hidden;
	padding: clamp(30px, 5vw, 70px);
}

.chh-error-art img {
	display: block;
	filter: sepia(0.08) saturate(0.82);
	height: auto;
	margin: auto;
	max-height: 340px;
	max-width: 100%;
	object-fit: contain;
	opacity: 0.88;
	width: 100%;
}

.chh-single-post-page {
	background: #f6f1e8;
	color: #25251e;
	font-family: var(--chh-text-font);
}

.chh-single-hero {
	border-bottom: 1px solid rgba(37, 37, 30, 0.14);
	padding: clamp(62px, 8vw, 112px) 0 clamp(30px, 4vw, 56px);
}

.chh-single-hero .chh-blog-container {
	max-width: 800px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-single-back {
	color: #8f2f1f;
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1;
	margin-bottom: clamp(24px, 3.8vw, 50px);
	text-decoration: none;
	text-transform: uppercase;
}

.chh-single-back::before {
	border-bottom: 1px solid currentColor;
	border-left: 1px solid currentColor;
	content: "";
	height: 7px;
	margin-right: 10px;
	transform: rotate(45deg);
	width: 7px;
}

.chh-single-meta {
	align-items: center;
	color: rgba(37, 37, 30, 0.58);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: 780;
	gap: 10px;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.chh-single-meta span::before {
	content: "/";
	margin-right: 10px;
	opacity: 0.45;
}

.chh-single-hero h1 {
	color: inherit;
	font-family: var(--chh-heading-font);
	font-size: clamp(44px, 5.2vw, 78px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 800px;
}

.chh-single-dek {
	color: rgba(37, 37, 30, 0.72);
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.48;
	margin: 22px 0 0;
	max-width: 800px;
}

.chh-single-featured-image {
	aspect-ratio: 16 / 7;
	background: #d8d1c2;
	margin: clamp(28px, 4vw, 54px) auto 0;
	max-width: 1120px;
	overflow: hidden;
	width: calc(100% - clamp(40px, 12vw, 190px));
}

.chh-single-featured-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-single-layout {
	display: block;
	max-width: 800px;
	padding: clamp(42px, 6vw, 82px) 0;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-single-aside {
	align-self: start;
	color: rgba(37, 37, 30, 0.62);
	margin-bottom: clamp(24px, 3vw, 34px);
	position: static;
}

.chh-single-aside p {
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.chh-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chh-single-tags a {
	border: 1px solid rgba(37, 37, 30, 0.16);
	color: inherit;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 9px 11px;
	text-decoration: none;
}

.chh-single-tags a:hover,
.chh-single-tags a:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

.chh-single-content {
	font-family: var(--chh-text-font);
	font-size: clamp(16px, 1.05vw, 18px);
	line-height: 1.72;
	margin: 0 auto;
	max-width: 800px;
	min-width: 0;
}

.chh-single-content > * {
	margin-left: 0;
	margin-right: 0;
}

.chh-single-content p,
.chh-single-content ul,
.chh-single-content ol {
	margin-bottom: 1.35em;
	margin-top: 0;
}

.chh-single-content h2,
.chh-single-content h3,
.chh-single-content h4 {
	font-family: var(--chh-heading-font);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 1.35em 0 0.45em;
}

.chh-single-content h2 {
	font-size: clamp(30px, 3vw, 44px);
}

.chh-single-content h3 {
	font-size: clamp(24px, 2.2vw, 34px);
}

.chh-single-content a {
	color: #8f2f1f;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.chh-single-content img {
	height: auto;
	max-width: 100%;
}

.chh-single-content blockquote {
	border-left: 2px solid #8f2f1f;
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(24px, 2.6vw, 36px);
	line-height: 1.14;
	margin: 1.4em 0;
	padding-left: clamp(18px, 3vw, 34px);
}

.chh-single-page-links {
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	font-size: 14px;
	font-weight: 760;
	margin-top: 34px;
	padding-top: 20px;
}

.chh-related-posts {
	background: #fffdf8;
	border-top: 1px solid rgba(37, 37, 30, 0.14);
	padding: clamp(44px, 6vw, 78px) 0 clamp(58px, 8vw, 104px);
}

.chh-related-header {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: clamp(28px, 4vw, 52px);
}

.chh-related-header p {
	color: #8f2f1f;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.chh-related-header h2 {
	font-family: var(--chh-heading-font);
	font-size: clamp(36px, 4.4vw, 64px);
	font-weight: 400;
	line-height: 0.98;
	margin: 0;
}

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

.chh-related-card {
	display: grid;
	gap: 16px;
}

.chh-related-image {
	aspect-ratio: 4 / 3;
	background: #d8d1c2;
	display: block;
	overflow: hidden;
}

.chh-related-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
	width: 100%;
}

.chh-related-card:hover img,
.chh-related-card:focus-within img {
	transform: scale(1.035);
}

.chh-related-card-body {
	display: grid;
	gap: 10px;
}

.chh-related-card time {
	color: rgba(37, 37, 30, 0.58);
	font-size: 11px;
	font-weight: 820;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-related-card h3 {
	font-family: var(--chh-heading-font);
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 400;
	line-height: 1.04;
	margin: 0;
}

.chh-related-card h3 a {
	color: inherit;
	text-decoration: none;
}

.chh-related-card h3 a:hover,
.chh-related-card h3 a:focus {
	color: #8f2f1f;
}

.chh-vendor-directory {
	color: #171714;
	display: grid;
	gap: clamp(34px, 5vw, 72px);
	grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

.chh-vendor-sidebar {
	align-self: start;
	position: sticky;
	top: 120px;
}

.chh-vendor-sidebar h3 {
	font-family: var(--chh-text-font);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.2;
	margin: 0 0 20px;
}

.chh-vendor-filter-label {
	color: rgba(23, 23, 20, 0.68);
	display: block;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 650;
	margin-bottom: 8px;
}

.chh-vendor-type-filter {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(23, 23, 20, 0.14);
	border-radius: 0;
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: 13px;
	line-height: 1.2;
	padding: 0 28px 16px 0;
	width: 100%;
}

.chh-vendor-submit-card {
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(37, 37, 30, 0.08);
	margin-top: 64px;
	padding: 20px;
}

.chh-vendor-submit-card h4 {
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 10px;
}

.chh-vendor-submit-card p {
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 16px;
}

.chh-vendor-submit-card a {
	border: 1px solid rgba(23, 23, 20, 0.18);
	border-radius: 8px;
	color: inherit;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 13px;
	text-decoration: none;
}

.chh-vendor-main {
	min-width: 0;
}

.chh-vendor-toolbar {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.chh-vendor-toolbar h2 {
	font-family: var(--chh-heading-font);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.08;
	margin: 0;
}

.chh-vendor-search {
	align-items: center;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 12px;
	display: flex;
	flex: 0 1 300px;
	gap: 10px;
	min-height: 50px;
	padding: 0 15px;
}

.chh-vendor-search svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
	width: 18px;
}

.chh-vendor-search input {
	background: transparent;
	border: 0;
	color: inherit;
	font-family: var(--chh-text-font);
	font-size: 14px;
	outline: 0;
	width: 100%;
}

.chh-vendor-grid {
	align-items: stretch;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-vendor-card[hidden] {
	display: none;
}

.chh-vendor-card a {
	align-items: start;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 14px;
	color: inherit;
	display: grid;
	gap: 16px;
	grid-template-columns: 56px minmax(0, 1fr);
	height: 100%;
	min-height: 108px;
	padding: 16px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-vendor-card a:hover,
.chh-vendor-card a:focus {
	border-color: rgba(23, 23, 20, 0.2);
	box-shadow: 0 16px 34px rgba(37, 37, 30, 0.08);
	transform: translateY(-2px);
}

.chh-vendor-logo {
	align-items: center;
	align-self: start;
	background: #fff;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 12px;
	display: flex;
	height: 56px;
	justify-content: center;
	overflow: hidden;
	padding: 8px;
	width: 56px;
}

.chh-vendor-logo img {
	display: block;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.chh-vendor-card-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.chh-vendor-card-copy strong {
	font-family: var(--chh-text-font);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.18;
}

.chh-vendor-card-copy span {
	color: rgba(23, 23, 20, 0.68);
	font-family: var(--chh-text-font);
	font-size: 13px;
	line-height: 1.35;
}

.chh-vendor-empty {
	color: rgba(23, 23, 20, 0.68);
	font-family: var(--chh-text-font);
	margin: 22px 0 0;
}

.chh-vendor-mobile-cta {
	display: none;
}

.chh-exhibitor-directory {
	color: #171714;
	display: grid;
	gap: clamp(34px, 5vw, 72px);
	grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

.chh-exhibitor-sidebar {
	align-self: start;
	position: sticky;
	top: 120px;
}

.chh-exhibitor-sidebar h3 {
	border-bottom: 1px solid rgba(23, 23, 20, 0.12);
	font-family: var(--chh-text-font);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.2;
	margin: 0 0 16px;
	padding-bottom: 12px;
}

.chh-exhibitor-filter-label {
	color: rgba(23, 23, 20, 0.68);
	display: block;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 650;
	margin: 0 0 8px;
}

.chh-exhibitor-sort-filter,
.chh-exhibitor-arena-filter {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(23, 23, 20, 0.14);
	border-radius: 0;
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: 13px;
	line-height: 1.2;
	margin-bottom: 20px;
	padding: 0 28px 16px 0;
	width: 100%;
}

.chh-exhibitor-main {
	min-width: 0;
}

.chh-exhibitor-toolbar {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 32px;
}

.chh-exhibitor-toolbar h2 {
	font-family: var(--chh-heading-font);
	font-size: clamp(30px, 3.4vw, 50px);
	font-weight: 400;
	line-height: 1.02;
	margin: 0;
}

.chh-exhibitor-tools {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: flex-end;
	min-width: 0;
}

.chh-exhibitor-search {
	align-items: center;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 12px;
	display: flex;
	flex: 0 1 300px;
	gap: 10px;
	min-height: 50px;
	padding: 0 15px;
}

.chh-exhibitor-search svg,
.chh-exhibitor-view-toggle svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
	width: 18px;
}

.chh-exhibitor-search input {
	background: transparent;
	border: 0;
	color: inherit;
	font-family: var(--chh-text-font);
	font-size: 14px;
	outline: 0;
	width: 100%;
}

.chh-exhibitor-view-toggle {
	background: rgba(23, 23, 20, 0.06);
	border-radius: 13px;
	display: inline-flex;
	gap: 4px;
	padding: 5px;
}

.chh-exhibitor-view-toggle button {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 9px;
	color: rgba(23, 23, 20, 0.68);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 650;
	gap: 7px;
	line-height: 1;
	padding: 10px 12px;
}

.chh-exhibitor-view-toggle button.is-active {
	background: #fffdf8;
	box-shadow: 0 8px 18px rgba(37, 37, 30, 0.08);
	color: #171714;
}

.chh-exhibitor-grid {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-exhibitor-card[hidden] {
	display: none;
}

.chh-exhibitor-card a {
	background: #FFFDF9;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 18px;
	color: inherit;
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-exhibitor-card a:hover,
.chh-exhibitor-card a:focus {
	border-color: rgba(23, 23, 20, 0.22);
	box-shadow: 0 18px 38px rgba(37, 37, 30, 0.1);
	transform: translateY(-2px);
}

.chh-exhibitor-image {
	aspect-ratio: 4 / 3;
	background: #d77a55;
	display: block;
	overflow: hidden;
}

.chh-exhibitor-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-exhibitor-card:nth-child(3n + 2) .chh-exhibitor-image {
	background: #7b8f60;
}

.chh-exhibitor-card:nth-child(3n + 3) .chh-exhibitor-image {
	background: #e8c2ad;
}

.chh-exhibitor-sponsor-badge {
	align-items: center;
	align-self: end;
	border-top: 1px solid rgba(23, 23, 20, 0.1);
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) 92px;
	margin-top: auto;
	padding-top: 14px;
	width: 100%;
}

.chh-exhibitor-sponsor-text {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.chh-exhibitor-sponsor-label {
	color: rgba(23, 23, 20, 0.58);
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.chh-exhibitor-sponsor-name {
	color: #25251e;
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.chh-exhibitor-sponsor-logo {
	align-items: center;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.08);
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(37, 37, 30, 0.08);
	display: flex;
	flex: 0 0 82px;
	height: 82px;
	justify-content: center;
	justify-self: end;
	padding: 10px;
	width: 82px;
}

.chh-exhibitor-sponsor-logo img {
	display: block;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.chh-exhibitor-card-copy {
	align-content: start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	padding: clamp(20px, 2.4vw, 30px);
}

.chh-exhibitor-arena-name {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.2;
}

.chh-exhibitor-card-copy strong {
	font-family: var(--chh-heading-font);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 400;
	line-height: 0.98;
}

.chh-exhibitor-excerpt {
	color: rgba(23, 23, 20, 0.7);
	font-family: var(--chh-text-font);
	font-size: 14px;
	line-height: 1.45;
}

.chh-exhibitor-empty {
	color: rgba(23, 23, 20, 0.68);
	font-family: var(--chh-text-font);
	margin: 22px 0 0;
}

.chh-exhibitor-directory.is-list-view .chh-exhibitor-grid {
	grid-template-columns: 1fr;
}

.chh-exhibitor-directory.is-list-view .chh-exhibitor-card a {
	align-items: stretch;
	grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
	grid-template-rows: auto;
}

.chh-exhibitor-directory.is-list-view .chh-exhibitor-image {
	aspect-ratio: auto;
	min-height: 190px;
}

.chh-single-exhibitor-page {
	background: #f7f2ea;
	color: #171714;
}

.chh-single-exhibitor-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-single-exhibitor-hero {
	padding: clamp(68px, 8vw, 112px) 0 clamp(44px, 6vw, 76px);
}

.chh-single-exhibitor-hero .chh-single-exhibitor-container {
	align-items: center;
	display: grid;
	gap: clamp(34px, 6vw, 86px);
	grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.88fr);
}

.chh-single-exhibitor-copy {
	max-width: 620px;
}

.chh-single-exhibitor-back,
.chh-single-exhibitor-arena span,
.chh-single-exhibitor-related-head p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-single-exhibitor-back {
	display: inline-flex;
	margin-bottom: 26px;
}

.chh-single-exhibitor-arena {
	align-items: baseline;
	color: rgba(23, 23, 20, 0.72);
	display: flex;
	font-family: var(--chh-text-font);
	font-size: 15px;
	gap: 12px;
	margin: 16px 0 0;
}

.chh-single-exhibitor h1 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(52px, 7vw, 104px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.95;
	margin: 0;
}

.chh-single-exhibitor-dek {
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: clamp(18px, 1.6vw, 23px);
	line-height: 1.38;
	margin: 22px 0 0;
	max-width: 34em;
}

.chh-single-exhibitor-button {
	align-items: center;
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	border-radius: 999px;
	color: #fffdf8;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 28px;
	padding: 15px 21px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-single-exhibitor-button:hover,
.chh-single-exhibitor-button:focus {
	background: transparent;
	color: #0c2a1b;
	transform: translateY(-1px);
}

.chh-single-exhibitor-sponsor {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin-top: 24px;
	max-width: none;
}

.chh-single-exhibitor-sponsor > span {
	color: rgba(23, 23, 20, 0.58);
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.chh-single-exhibitor-sponsor a,
.chh-single-exhibitor-sponsor div {
	align-items: center;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.08);
	border-radius: 14px;
	box-shadow: 0 12px 26px rgba(37, 37, 30, 0.08);
	display: flex;
	flex: 0 0 94px;
	height: 72px;
	justify-content: center;
	padding: 10px;
	width: 94px;
}

.chh-single-exhibitor-sponsor img {
	display: block;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.chh-single-exhibitor-image {
	background: #efede6;
	border-radius: 18px;
	margin: 0;
	overflow: hidden;
}

.chh-single-exhibitor-image img {
	display: block;
	height: auto;
	width: 100%;
}

.chh-single-exhibitor-content {
	padding: 0 0 clamp(64px, 8vw, 112px);
}

.chh-single-exhibitor-text {
	box-sizing: border-box;
	font-family: var(--chh-text-font);
	font-size: clamp(17px, 1.2vw, 19px);
	line-height: 1.55;
	margin: 28px 0 0;
	max-width: 36em;
}

.chh-single-exhibitor-text > *:first-child {
	margin-top: 0;
}

.chh-single-exhibitor-text > *:last-child {
	margin-bottom: 0;
}

.chh-single-exhibitor-related {
	background: #fffdf8;
	border-top: 1px solid rgba(23, 23, 20, 0.1);
	padding: clamp(56px, 7vw, 94px) 0;
}

.chh-single-exhibitor-related-head {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.chh-single-exhibitor-related-head p {
	margin: 0;
}

.chh-single-exhibitor-related-head h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(36px, 4vw, 66px);
	font-weight: 400;
	line-height: 0.98;
	margin: 0;
}

.chh-single-exhibitor-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-single-exhibitor-card a {
	background: #FFFDF9;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 18px;
	color: inherit;
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-single-exhibitor-card a:hover,
.chh-single-exhibitor-card a:focus {
	border-color: rgba(23, 23, 20, 0.22);
	box-shadow: 0 18px 38px rgba(37, 37, 30, 0.1);
	transform: translateY(-2px);
}

.chh-single-exhibitor-card-image {
	aspect-ratio: 4 / 3;
	background: #d77a55;
	display: block;
	overflow: hidden;
}

.chh-single-exhibitor-card-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-single-exhibitor-card-copy {
	align-content: start;
	display: flex;
	flex-direction: column;
	gap: 9px;
	height: 100%;
	padding: 24px;
}

.chh-single-exhibitor-card-copy span {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.2;
}

.chh-single-exhibitor-card-copy strong {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 400;
	line-height: 0.98;
}

.chh-event-page {
	background: #f7f2ea;
	color: #171714;
	overflow-x: hidden;
}

@supports (overflow: clip) {
	.chh-event-page {
		overflow-x: clip;
	}
}

.chh-event-elementor-editing {
	padding: 48px 0;
}

.chh-event-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - clamp(40px, 10vw, 144px));
}

.chh-event-hero {
	padding: clamp(46px, 6vw, 82px) 0 clamp(28px, 4vw, 52px);
}

.chh-event-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(34px, 5vw, 72px);
	grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
	min-height: clamp(460px, 50vw, 640px);
	position: relative;
}

.chh-event-hero-copy {
	padding-top: 0;
}

.chh-event-section-heading > p,
.chh-event-detail-card span {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-event-eyebrow {
	align-items: center;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 0.94rem;
	font-weight: 780;
	gap: 12px;
	letter-spacing: 0.11em;
	line-height: 1.25;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.chh-event-eyebrow::after {
	background: rgba(143, 47, 31, 0.36);
	content: "";
	display: block;
	height: 1px;
	width: clamp(42px, 8vw, 96px);
}

.chh-event-date-feature {
	align-items: center;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 20px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.chh-event-date-feature span,
.chh-event-date-feature strong,
.chh-event-date-feature em {
	align-items: center;
	display: inline-flex;
	font-style: normal;
	font-weight: inherit;
}

.chh-event-date-feature span {
	background: transparent;
	border: 0;
	color: #8f2f1f;
	margin-right: 16px;
	min-height: 0;
	padding: 0;
}

.chh-event-date-feature strong {
	align-items: center;
	color: #0c2a1b;
	gap: 8px;
}

.chh-event-date-feature em {
	align-items: center;
	color: rgba(143, 47, 31, 0.78);
}

.chh-event-date-feature strong::after {
	background: rgba(143, 47, 31, 0.28);
	content: "";
	display: inline-block;
	height: 1px;
	margin: 0 10px;
	width: 34px;
}

.chh-event h1 {
	color: #25251e;
	font-display: swap;
	font-family: Cardo, sans-serif;
	font-size: clamp(48px, 5.2vw, 76px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 7.8em;
	text-decoration: none;
}

.chh-event-dek {
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: clamp(18px, 1.55vw, 23px);
	line-height: 1.38;
	margin: 24px 0 0;
	max-width: 34em;
}

.chh-event-hero-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(28px, 4vw, 44px);
	padding-top: 18px;
	position: relative;
}

.chh-event-hero-actions-wrap {
	position: relative;
}

.chh-event-hero-actions::before {
	background: rgba(37, 37, 30, 0.16);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: min(100%, 520px);
}

.chh-event-primary-button,
.chh-event-secondary-button,
.chh-event-ticket-card a {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 15px 21px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-event-primary-button {
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	color: #fffdf8;
}

.chh-event-secondary-button,
.chh-event-ticket-card a {
	background: transparent;
	border: 1px solid rgba(23, 23, 20, 0.16);
	color: #171714;
}

.chh-event-hero-actions .chh-event-primary-button,
.chh-event-hero-actions .chh-event-secondary-button {
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	padding: 14px 19px;
}

.chh-event-hero-actions .chh-event-primary-button {
	background: #0c2a1b;
	border: 1px solid #0c2a1b;
	color: #fffdf8;
}

.chh-event-hero-actions .chh-event-primary-button:hover,
.chh-event-hero-actions .chh-event-primary-button:focus {
	background: #173d2a;
	border-color: #173d2a;
	color: #fffdf8;
}

.chh-event-hero-actions .chh-event-secondary-button {
	background: rgba(255, 253, 248, 0.52);
	border: 1px solid rgba(37, 37, 30, 0.18);
	color: #0c2a1b;
}

.chh-event-hero-actions .chh-event-secondary-button:hover,
.chh-event-hero-actions .chh-event-secondary-button:focus {
	background: #fffdf8;
	border-color: rgba(12, 42, 27, 0.38);
	color: #0c2a1b;
}

.chh-event-hero-actions a + a {
	border-left: 0;
	margin-left: 0;
}

.chh-event-hero-actions .chh-event-primary-button::after,
.chh-event-hero-actions .chh-event-secondary-button::after {
	content: none;
}

.chh-event-primary-button:hover,
.chh-event-primary-button:focus {
	background: transparent;
	color: #0c2a1b;
	transform: translateY(-1px);
}

.chh-event-secondary-button:hover,
.chh-event-secondary-button:focus,
.chh-event-ticket-card a:hover,
.chh-event-ticket-card a:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

.chh-event-hero-actions .chh-event-primary-button:hover,
.chh-event-hero-actions .chh-event-primary-button:focus,
.chh-event-hero-actions .chh-event-secondary-button:hover,
.chh-event-hero-actions .chh-event-secondary-button:focus {
	transform: translateY(-1px);
}

.chh-event-hero-image {
	align-self: stretch;
	background: #efede6;
	border-radius: 2px;
	box-shadow: 18px 18px 0 rgba(12, 42, 27, 0.06);
	height: 100%;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.chh-event-hero-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-event-hero-slider,
.chh-event-hero-slider .splide__track,
.chh-event-hero-slider .splide__list,
.chh-event-hero-slide {
	height: 100%;
}

.chh-event-hero-slider {
	inset: 0;
	position: absolute;
	width: 100%;
}

.chh-event-sticky-nav {
	background: rgba(255, 253, 248, 0.96);
	border-bottom: 1px solid rgba(23, 23, 20, 0.1);
	border-top: 1px solid rgba(23, 23, 20, 0.08);
	box-shadow: 0 12px 30px rgba(23, 23, 20, 0.06);
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: var(--chh-event-sticky-top, 0px);
	transform: translateY(-100%);
	transition: opacity 180ms ease, top 180ms ease, transform 180ms ease;
	z-index: 70;
}

.chh-event-sticky-nav.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.chh-event-sticky-nav-inner {
	align-items: center;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 11px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.chh-event-sticky-nav-inner::-webkit-scrollbar {
	display: none;
}

.chh-event-sticky-nav a {
	align-items: center;
	border: 1px solid rgba(23, 23, 20, 0.14);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	flex: 0 0 auto;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 10px 14px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.chh-event-sticky-nav a:hover,
.chh-event-sticky-nav a:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
}

#event-details,
#event-tickets,
#event-arenas,
#event-highlight,
#event-faq {
	scroll-margin-top: 92px;
}

.chh-event-quickbar {
	background: #0c2a1b;
	margin-top: clamp(12px, 2vw, 28px);
	padding: 0;
}

.chh-event-quickbar-grid {
	display: grid;
	gap: clamp(22px, 4vw, 58px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: clamp(28px, 3.2vw, 42px) 0;
}

.chh-event-detail-card {
	align-items: flex-start;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 16px;
	grid-template-columns: 22px minmax(0, 1fr);
	padding: 0;
}

.chh-event-detail-card svg {
	fill: none;
	height: 22px;
	stroke: rgba(255, 253, 248, 0.84);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.chh-event-detail-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.chh-event-detail-card strong,
.chh-event-detail-card em {
	display: block;
	font-family: var(--chh-text-font);
	font-style: normal;
	line-height: 1.35;
}

.chh-event-detail-card strong {
	color: #fffdf8;
	font-size: 1rem;
	font-weight: 780;
}

.chh-event-detail-card em {
	color: rgba(255, 253, 248, 0.66);
	font-size: 1rem;
	font-weight: 450;
}

.chh-event-ticket-line {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
}

.chh-event-ticket-card a {
	align-items: center;
	border: 0;
	color: #d7bd82;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 0.95rem;
	font-weight: 650;
	gap: 8px;
	justify-self: start;
	letter-spacing: 0;
	line-height: 1.2;
	margin-top: 6px;
	padding: 0 0 2px;
	text-decoration: none;
	text-transform: none;
}

.chh-event-ticket-card a::after {
	border-right: 1.5px solid currentColor;
	border-top: 1.5px solid currentColor;
	content: "";
	height: 7px;
	transform: rotate(45deg);
	width: 7px;
}

.chh-event-ticket-card a:hover,
.chh-event-ticket-card a:focus {
	background: transparent;
	border-color: transparent;
	color: #fffdf8;
	transform: translateX(2px);
}

.chh-event-gallery,
.chh-event-story,
.chh-event-schedule,
.chh-event-market,
.chh-event-faq,
.chh-event-sponsor-section {
	padding: clamp(48px, 7vw, 92px) 0;
}

.chh-event-gallery,
.chh-event-schedule,
.chh-event-faq,
.chh-event-sponsor-section {
	background: #fffdf8;
	border-top: 1px solid rgba(23, 23, 20, 0.08);
	border-bottom: 1px solid rgba(23, 23, 20, 0.08);
}

.chh-event-section-heading {
	margin-bottom: clamp(24px, 3.4vw, 38px);
	max-width: 620px;
}

.chh-event-section-heading > p {
	margin: 0 0 10px;
}

.chh-event-section-heading h2 {
	color: #25251e;
	font-display: swap;
	font-family: Cardo, sans-serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 3.75rem;
	margin: 0;
	text-decoration: none;
}

.chh-event-section-copy {
	color: rgba(23, 23, 20, 0.68);
	font-family: var(--chh-text-font);
	font-size: clamp(1.12rem, 1.35vw, 1.28rem);
	font-weight: 450;
	letter-spacing: 0;
	line-height: 1.45;
	margin-top: 14px;
	max-width: 46em;
	text-transform: none;
}

.chh-event-section-copy p {
	color: inherit;
	font: inherit;
	letter-spacing: 0;
	text-transform: none;
}

.chh-event-section-copy > *:first-child {
	margin-top: 0;
}

.chh-event-section-copy > *:last-child {
	margin-bottom: 0;
}

.chh-event-gallery-slider {
	margin-left: calc((100vw - min(1300px, calc(100vw - clamp(40px, 10vw, 144px)))) / -2);
	margin-right: calc((100vw - min(1300px, calc(100vw - clamp(40px, 10vw, 144px)))) / -2);
	overflow: hidden;
	padding: 0 max(20px, calc((100vw - 1300px) / 2));
	position: relative;
}

.chh-event-gallery-slider .splide__track {
	overflow: visible;
}

.chh-event-gallery-slide {
	background: #efede6;
	border-radius: 18px;
	height: clamp(280px, 34vw, 520px);
	margin: 0;
	overflow: hidden;
	width: auto;
}

.chh-event-gallery-slide img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: auto;
}

.chh-event-gallery-slider .splide__arrow {
	align-items: center;
	background: rgba(255, 253, 248, 0.92);
	border: 1px solid rgba(23, 23, 20, 0.12);
	border-radius: 999px;
	color: #171714;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	z-index: 2;
}

.chh-event-gallery-slider .splide__arrow svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 14px;
}

.chh-event-gallery-slider .splide__arrow--prev svg {
	transform: scaleX(-1);
}

.chh-event-gallery-slider .splide__arrow--prev {
	left: max(20px, calc((100vw - 1300px) / 2 + 18px));
}

.chh-event-gallery-slider .splide__arrow--next {
	right: max(20px, calc((100vw - 1300px) / 2 + 18px));
}

.chh-event-gallery-slider .splide__pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.chh-event-gallery-slider .splide__pagination__page {
	background: rgba(37, 37, 30, 0.22);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 7px;
	padding: 0;
	transition: background-color 160ms ease, width 160ms ease;
	width: 7px;
}

.chh-event-gallery-slider .splide__pagination__page.is-active {
	background: #8f2f1f;
	width: 24px;
}

.chh-event-story-grid {
	display: grid;
	gap: clamp(24px, 3.6vw, 46px);
	grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.78fr);
}

.chh-event-story-grid .chh-event-section-heading {
	grid-column: 1 / -1;
	max-width: 680px;
}

.chh-event-story-body {
	display: grid;
	gap: clamp(34px, 4vw, 58px);
	grid-column: 2;
	max-width: 760px;
}

.chh-event-story-body-has-timeline {
	align-items: start;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
	max-width: none;
}

.chh-event-story-main {
	display: grid;
	gap: clamp(24px, 3vw, 36px);
}

.chh-event-content {
	color: rgba(23, 23, 20, 0.78);
	font-family: var(--chh-text-font);
	font-size: 1rem;
	line-height: 1.55;
}

.chh-event-content > *:first-child {
	margin-top: 0;
}

.chh-event-content > *:last-child {
	margin-bottom: 0;
}

.chh-event-highlight {
	background: #f6f1e8;
	padding: 60px 0 clamp(52px, 7vw, 92px);
}

.chh-event-highlight-card {
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(12, 42, 27, 0.07);
	display: grid;
	gap: clamp(26px, 4vw, 56px);
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.88fr);
	overflow: hidden;
}

.chh-event-highlight-card:not(.chh-event-highlight-card-has-image) {
	display: block;
	max-width: 850px;
	padding: clamp(28px, 4vw, 52px);
}

.chh-event-highlight-image {
	aspect-ratio: 4 / 5;
	background: #e9e0d2;
	margin: 0;
	min-height: 100%;
}

.chh-event-highlight-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-event-highlight-copy {
	align-content: center;
	display: grid;
	justify-items: start;
	padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 58px) clamp(28px, 4vw, 56px) 0;
}

.chh-event-highlight-card:not(.chh-event-highlight-card-has-image) .chh-event-highlight-copy {
	padding: 0;
}

.chh-event-highlight-copy > p:first-child {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.chh-event-highlight-copy h2 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-event-highlight-copy > strong {
	color: rgba(23, 23, 20, 0.62);
	display: block;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1.25;
	margin-top: 12px;
	text-transform: uppercase;
}

.chh-event-highlight-text {
	color: rgba(23, 23, 20, 0.74);
	font-family: var(--chh-text-font);
	font-size: 15px;
	line-height: 1.55;
	margin-top: 18px;
	max-width: 42em;
}

.chh-event-highlight-text > *:first-child {
	margin-top: 0;
}

.chh-event-highlight-text > *:last-child {
	margin-bottom: 0;
}

.chh-event-highlight-copy a {
	border-bottom: 1px solid #8f2f1f;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	margin-top: 22px;
	padding-bottom: 5px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-event-highlight-copy a:hover,
.chh-event-highlight-copy a:focus {
	color: #0c2a1b;
}

.chh-event-ticket-list {
	border-top: 1px solid rgba(23, 23, 20, 0.14);
	display: grid;
	gap: 18px;
	padding-top: clamp(22px, 3vw, 30px);
}

.chh-event-ticket-list-heading p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.chh-event-ticket-list-heading h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(1.5rem, 2.2vw, 2.05rem);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-event-ticket-list-items {
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(23, 23, 20, 0.12);
}

.chh-event-ticket-list-item {
	align-items: center;
	background: transparent;
	border-bottom: 1px solid rgba(23, 23, 20, 0.12);
	border-radius: 0;
	display: grid;
	gap: clamp(18px, 2.6vw, 34px);
	grid-template-columns: minmax(0, 1fr) auto auto;
	padding: 22px 0;
}

.chh-event-ticket-list-item strong {
	color: #25251e;
	display: block;
	font-family: var(--chh-text-font);
	font-size: clamp(0.98rem, 1vw, 1.08rem);
	font-weight: 800;
	line-height: 1.2;
}

.chh-event-ticket-list-description {
	color: rgba(23, 23, 20, 0.58);
	font-family: var(--chh-text-font);
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 7px 0 0;
	max-width: 760px;
}

.chh-event-ticket-list-description p {
	margin: 0;
}

.chh-event-ticket-list-description p + p {
	margin-top: 5px;
}

.chh-event-ticket-list-item span {
	border-left: 1px solid rgba(23, 23, 20, 0.12);
	color: #25251e;
	font-family: var(--chh-text-font);
	font-size: clamp(1rem, 1.2vw, 1.16rem);
	font-weight: 800;
	line-height: 1.2;
	min-width: 68px;
	padding-left: clamp(18px, 2vw, 28px);
	text-align: right;
	white-space: nowrap;
}

.chh-event-ticket-list-item a {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(12, 42, 27, 0.54);
	border-radius: 999px;
	color: #0c2a1b;
	display: inline-flex;
	flex: 0 0 auto;
	font-family: var(--chh-text-font);
	font-size: 10px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 12px 16px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.chh-event-ticket-list-item a:hover,
.chh-event-ticket-list-item a:focus {
	background: #0c2a1b;
	border-color: #0c2a1b;
	color: #fffdf8;
	transform: translateY(-1px);
}

.chh-event-ticket-list-note {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 0.84rem;
	font-style: italic;
	line-height: 1.35;
	margin: 2px 0 0;
}

.chh-event-story-timeline {
	border-left: 1px solid rgba(23, 23, 20, 0.12);
	max-width: none;
	padding-left: clamp(24px, 3vw, 42px);
}

.chh-event-story-timeline-heading {
	margin: 0 0 12px;
}

.chh-event-story-timeline-heading p {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.chh-event-story-timeline-heading h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(1.8rem, 2.5vw, 2.55rem);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.chh-event-story-timeline .chh-event-timeline-item {
	gap: clamp(16px, 2.2vw, 28px);
	grid-template-columns: minmax(82px, 118px) minmax(0, 1fr);
}

.chh-event-story-timeline .chh-event-timeline-item time {
	font-size: clamp(0.82rem, 1vw, 0.98rem);
}

.chh-event-story-timeline .chh-event-timeline-item strong {
	font-size: clamp(1.18rem, 1.6vw, 1.48rem);
}

.chh-event-story-timeline .chh-event-timeline-note {
	margin-left: calc(118px + clamp(16px, 2.2vw, 28px) + 28px);
}

.chh-event-schedule-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-event-arena-card {
	--chh-arena-time-column: 168px;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-top: 4px solid #8f2f1f;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(12, 42, 27, 0.07);
	padding: 20px;
	position: relative;
	width: 100%;
}

.chh-event-arena-card h3 {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(27px, 2.2vw, 34px);
	font-weight: 400;
	line-height: 1;
	margin: 0 0 10px;
}

.chh-event-arena-sponsor {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.06em;
	line-height: 1.25;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.chh-event-arena-sponsor a {
	color: #8f2f1f;
	text-decoration: none;
}

.chh-event-arena-card ol {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-event-arena-card li {
	align-items: baseline;
	background: rgba(247, 242, 234, 0.64);
	border-top: 1px solid rgba(23, 23, 20, 0.08);
	border-radius: 4px;
	display: grid;
	gap: 8px 14px;
	grid-template-columns: minmax(var(--chh-arena-time-column), var(--chh-arena-time-column)) minmax(0, 1fr);
	padding: 12px 14px;
}

.chh-event-arena-card li:first-child {
	border-top: 0;
}

.chh-event-arena-card time {
	color: #8f2f1f;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.chh-event-arena-card span,
.chh-event-arena-card p {
	color: rgba(23, 23, 20, 0.78);
	font-family: var(--chh-text-font);
	font-size: 14px;
	line-height: 1.35;
	margin: 0;
}

.chh-event-arena-card .chh-event-arena-sponsor {
	color: rgba(23, 23, 20, 0.62);
	font-size: 12px;
	letter-spacing: 0.06em;
	line-height: 1.45;
	margin: 0 0 24px;
}

.chh-event-schedule-footer {
	border-top: 1px solid rgba(23, 23, 20, 0.12);
	color: rgba(23, 23, 20, 0.66);
	font-family: var(--chh-text-font);
	font-size: 0.95rem;
	line-height: 1.55;
	margin-top: clamp(24px, 3vw, 38px);
	max-width: 54em;
	padding-top: 18px;
}

.chh-event-schedule-footer > *:first-child {
	margin-top: 0;
}

.chh-event-schedule-footer > *:last-child {
	margin-bottom: 0;
}

.chh-event-timeline {
	display: grid;
	gap: 0;
	max-width: 940px;
}

.chh-event-timeline-item {
	align-items: start;
	display: grid;
	gap: clamp(20px, 3.4vw, 54px);
	grid-template-columns: minmax(118px, 170px) minmax(0, 1fr);
	padding: 0;
	position: relative;
}

.chh-event-timeline-item:first-child > * {
	padding-top: 0;
}

.chh-event-timeline-item:last-of-type div {
	padding-bottom: 0;
}

.chh-event-timeline-item time {
	color: #0c2a1b;
	font-family: var(--chh-text-font);
	font-size: clamp(0.95rem, 1.25vw, 1.15rem);
	font-weight: 780;
	letter-spacing: 0.12em;
	line-height: 1.2;
	padding: 22px 0;
	text-align: right;
	text-transform: uppercase;
}

.chh-event-timeline-item div {
	border-left: 1px solid rgba(12, 42, 27, 0.22);
	display: grid;
	gap: 6px;
	grid-template-columns: 1fr;
	padding: 22px 0 22px 28px;
	position: relative;
}

.chh-event-timeline-item div::before {
	background: #fffdf8;
	border: 2px solid #8f2f1f;
	border-radius: 999px;
	box-shadow: 0 0 0 5px #fffdf8;
	content: "";
	height: 9px;
	left: -6px;
	position: absolute;
	top: 25px;
	width: 9px;
}

.chh-event-timeline-item span {
	color: rgba(12, 42, 27, 0.46);
	font-family: var(--chh-text-font);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1;
}

.chh-event-timeline-item strong {
	color: #0c2a1b;
	font-family: var(--chh-heading-font);
	font-size: clamp(1.35rem, 2.1vw, 1.9rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.12;
}

.chh-event-timeline-note {
	color: rgba(12, 42, 27, 0.74);
	font-family: var(--chh-heading-font);
	font-size: clamp(1.05rem, 1.7vw, 1.45rem);
	font-style: italic;
	line-height: 1.2;
	margin: 26px 0 0 calc(170px + clamp(20px, 3.4vw, 54px) + 28px);
}

.chh-event-market-block + .chh-event-market-block {
	margin-top: clamp(52px, 7vw, 92px);
}

.chh-event-mini-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chh-event-exhibitor-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chh-event-exhibitor-carousel .chh-event-exhibitor-grid {
	list-style: none;
	margin: 0;
	padding: 0;
}

.chh-event-exhibitor-carousel:not(.splide) .chh-event-exhibitor-grid {
	display: grid;
}

.chh-event-exhibitor-carousel .splide__track {
	overflow: visible;
}

.chh-event-exhibitor-slide {
	display: flex;
	height: auto;
}

.chh-event-exhibitor-slide .chh-event-exhibitor-card {
	width: 100%;
}

.chh-event-vendor-grid {
	align-items: stretch;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chh-event-vendor-card a {
	align-items: start;
	background: #fffdf8;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 14px;
	color: inherit;
	display: grid;
	gap: 16px;
	grid-template-columns: 56px minmax(0, 1fr);
	height: 100%;
	min-height: 108px;
	padding: 16px;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-event-vendor-card a:hover,
.chh-event-vendor-card a:focus {
	border-color: rgba(23, 23, 20, 0.2);
	box-shadow: 0 16px 34px rgba(37, 37, 30, 0.08);
	transform: translateY(-2px);
}

.chh-event-vendor-logo {
	align-items: center;
	align-self: start;
	background: #fff;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 12px;
	display: flex;
	height: 56px;
	justify-content: center;
	overflow: hidden;
	padding: 8px;
	width: 56px;
}

.chh-event-vendor-logo img {
	display: block;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.chh-event-vendor-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.chh-event-vendor-copy strong {
	color: #171714;
	font-family: var(--chh-text-font);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.18;
}

.chh-event-vendor-copy span {
	color: rgba(23, 23, 20, 0.68);
	font-family: var(--chh-text-font);
	font-size: 13px;
	line-height: 1.35;
}

.chh-event-mini-card a {
	background: #efede6;
	border: 1px solid rgba(23, 23, 20, 0.1);
	border-radius: 18px;
	color: inherit;
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.chh-event-mini-card a:hover,
.chh-event-mini-card a:focus {
	border-color: rgba(23, 23, 20, 0.22);
	box-shadow: 0 18px 38px rgba(37, 37, 30, 0.1);
	transform: translateY(-2px);
}

.chh-event-mini-image {
	aspect-ratio: 4 / 3;
	background: #d77a55;
	display: block;
	overflow: hidden;
}

.chh-event-mini-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-event-exhibitor-card a {
	background: #FFFDF9;
	grid-template-rows: auto 1fr;
}

.chh-event-exhibitor-copy {
	align-content: start;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	padding: clamp(18px, 2vw, 24px);
}

.chh-event-exhibitor-copy > span {
	color: rgba(23, 23, 20, 0.62);
	font-family: var(--chh-text-font);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.2;
}

.chh-event-exhibitor-copy strong {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(24px, 1.9vw, 31px);
	font-weight: 400;
	line-height: 0.98;
}

.chh-event-exhibitor-copy em {
	color: rgba(23, 23, 20, 0.7);
	font-family: var(--chh-text-font);
	font-size: 14px;
	font-style: normal;
	line-height: 1.45;
}

.chh-event-exhibitor-card .chh-event-exhibitor-sponsor-badge {
	align-self: stretch;
	margin-top: auto;
}

.chh-event-mini-card > a > strong {
	color: #25251e;
	font-family: var(--chh-heading-font);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 400;
	line-height: 0.98;
	padding: 24px;
}

.chh-event-text-link {
	border-bottom: 1px solid #8f2f1f;
	color: #8f2f1f;
	display: inline-flex;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.1em;
	margin-top: 24px;
	padding-bottom: 5px;
	text-decoration: none;
	text-transform: uppercase;
}

.chh-event-faq-grid {
	display: grid;
	gap: clamp(34px, 5vw, 72px);
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.88fr);
}

.chh-event-faq-grid-has-image {
	grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.74fr) minmax(280px, 0.54fr);
}

.chh-event-faq-image {
	align-self: start;
	margin: 0;
	overflow: hidden;
}

.chh-event-faq-image img {
	aspect-ratio: 4 / 5;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.chh-event-accordion {
	display: grid;
	gap: 8px;
}

.chh-event-accordion details {
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(23, 23, 20, 0.14);
	border-radius: 0;
	padding: 0;
}

.chh-event-accordion details:last-child {
	border-bottom: 1px solid rgba(23, 23, 20, 0.14);
}

.chh-event-accordion summary {
	color: #25251e;
	cursor: pointer;
	font-family: var(--chh-text-font);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.25;
	padding: 15px 0;
}

.chh-event-accordion div {
	padding: 0 0 16px;
}

.chh-event-accordion p {
	color: rgba(23, 23, 20, 0.72);
	font-family: var(--chh-text-font);
	font-size: 0.95rem;
	line-height: 1.45;
	margin: 0;
}

.chh-event-accordion p + p {
	margin-top: 10px;
}

.chh-event-accordion a {
	color: #8f2f1f;
	font-weight: 650;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.chh-event-photo-rows {
	background: transparent;
	display: block;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100vw;
}

.chh-event-photo-rows-header {
	box-sizing: border-box;
	display: block;
	margin: 0 0 clamp(24px, 3vw, 42px);
	max-width: 1300px;
	opacity: 1 !important;
	position: relative;
	visibility: visible !important;
	width: 100%;
	z-index: 20;
}

.chh-event-photo-rows-eyebrow {
	color: #8f2f1f;
	display: block !important;
	font-family: var(--chh-text-font);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.2;
	margin: 0 0 12px;
	opacity: 1 !important;
	text-transform: uppercase;
	visibility: visible !important;
}

.chh-event-photo-rows-title {
	color: #24231d !important;
	display: block !important;
	font-family: var(--chh-heading-font);
	font-size: clamp(34px, 3.4vw, 54px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	opacity: 1 !important;
	visibility: visible !important;
}

.chh-event-photo-row-wrap {
	margin-top: 14px;
	position: relative;
}

.chh-event-photo-rows-header + .chh-event-photo-row-wrap {
	margin-top: 0;
}

.chh-event-photo-row {
	cursor: grab;
	overflow: visible;
	overscroll-behavior-x: contain;
	touch-action: pan-y;
	user-select: none;
}

.chh-event-photo-track {
	overflow: hidden;
}

.chh-event-photo-row-wrap[data-row="2"] .chh-event-photo-track {
	margin-left: calc(clamp(86px, 12vw, 220px) * -1);
	width: calc(100% + clamp(86px, 12vw, 220px));
}

.chh-event-photo-row.is-dragging,
.chh-event-photo-row.is-active {
	cursor: grabbing;
}

.chh-event-photo-slide {
	width: auto;
}

.chh-event-photo-card {
	background: #d8d1c2;
	height: clamp(300px, 22vw, 430px);
	margin: 0;
	overflow: hidden;
	position: relative;
	width: clamp(360px, 28vw, 560px);
}

.chh-event-photo-card-narrow {
	width: clamp(260px, 18vw, 360px);
}

.chh-event-photo-card-wide {
	width: clamp(500px, 38vw, 760px);
}

.chh-event-photo-card::after {
	background: linear-gradient(0deg, rgba(13, 12, 10, 0.52), rgba(13, 12, 10, 0) 45%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.chh-event-photo-card img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.chh-event-photo-card figcaption {
	bottom: 14px;
	color: #fffdf8;
	font-family: var(--chh-text-font);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	position: absolute;
	right: 16px;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
	z-index: 1;
}

.chh-event-photo-arrow {
	align-items: center;
	background: rgba(255, 253, 248, 0.88);
	border: 1px solid rgba(42, 41, 31, 0.12);
	border-radius: 999px;
	color: #25251e;
	cursor: pointer;
	display: inline-flex;
	font-size: 34px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	z-index: 3;
}

.chh-event-photo-arrow svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2;
	width: 16px;
}

.chh-event-photo-arrow:hover,
.chh-event-photo-arrow:focus {
	background: #fffdf8;
}

.chh-event-photo-arrow-prev {
	left: 20px !important;
	right: auto !important;
}

.chh-event-photo-arrow-next {
	left: auto !important;
	right: 20px !important;
}

@keyframes chhSponsorTicker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 900px) {
	.chh-top-bar {
		font-size: 11px;
		letter-spacing: 0.1em;
		min-height: 32px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.chh-top-bar a,
	.chh-top-bar span {
		gap: 10px;
	}

	.chh-top-bar a::before,
	.chh-top-bar a::after,
	.chh-top-bar span::before,
	.chh-top-bar span::after {
		width: 18px;
	}

	.chh-day-schedule-widget .chh-day-schedule {
		--chh-arena-carousel-gap: 15px;
	}

	.chh-day-schedule-widget .chh-day-schedule-slide {
		width: calc((var(--chh-arena-carousel-width) - var(--chh-arena-carousel-gap)) / 2);
	}

	.chh-exhibitor-promo-carousel.chh-card-grid {
		--chh-exhibitor-carousel-gap: 15px;
	}

	.chh-exhibitor-promo-slide {
		width: calc((var(--chh-exhibitor-carousel-width) - var(--chh-exhibitor-carousel-gap)) / 2);
	}

	.chh-post-list-heading-row {
		align-items: start;
		flex-direction: column;
		gap: 16px;
	}

	.chh-post-list-view-more {
		margin-bottom: 0;
	}

	.chh-latest-articles-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chh-header-inner {
		gap: 18px;
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 76px;
		padding: 0 18px;
	}

	.chh-site-header.is-header-stuck {
		padding-bottom: 76px;
	}

	.chh-header-logo {
		grid-column: 1 / -1;
		justify-self: center;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}

	.chh-header-logo img {
		max-height: 62px;
		max-width: 220px;
		max-width: min(var(--chh-header-logo-mobile-width, 220px), 58vw);
		width: 58vw;
		width: min(var(--chh-header-logo-mobile-width, 220px), 58vw);
	}

	.chh-default-logo img {
		min-width: 220px;
		min-width: min(var(--chh-header-logo-mobile-width, 220px), 58vw);
	}

	.chh-header-menu {
		display: none;
	}

	.chh-header-nav-right {
		display: none;
	}

	.chh-header-actions {
		gap: 12px;
		grid-column: 3;
		justify-self: end;
		position: relative;
		z-index: 2;
	}

	.chh-menu-toggle {
		grid-column: 1;
		position: relative;
		z-index: 2;
	}

	.chh-ticket-button {
		display: none;
	}

	.chh-search-panel {
		padding: 28px 18px 34px;
	}

	.chh-search-form {
		padding-right: 0;
	}

	.chh-search-field-row {
		align-items: stretch;
		gap: 14px;
		grid-template-columns: 1fr;
	}

	.chh-search-field-row input {
		font-size: 30px;
		padding-bottom: 12px;
		padding-right: 44px;
	}

	.chh-search-field-row button {
		justify-self: start;
	}

	.chh-search-close {
		font-size: 34px;
		height: 40px;
		right: 12px;
		top: 18px;
		width: 40px;
	}

	.chh-footer-main .chh-footer-container {
		grid-template-columns: 1fr;
	}

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

	.chh-footer-brand {
		max-width: 620px;
	}

	.chh-footer-widgets {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.chh-footer-subscribe {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.chh-error-container {
		grid-template-columns: 1fr;
	}

	.chh-error-art {
		min-height: 280px;
		order: -1;
		padding: 28px;
	}

	.chh-day-schedule,
	.chh-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chh-featured-events {
		grid-template-columns: 1fr;
	}

	.chh-simple-page-hero {
		min-height: 320px;
		padding-top: 56px;
	}

	.chh-simple-page-hero-inner {
		min-height: inherit;
	}

	.chh-featured-events-intro {
		position: static;
	}

	.chh-featured-events-grid {
		grid-column: auto;
	}

	.chh-featured-events-carousel {
		grid-column: auto;
	}

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

	.chh-blog-card-featured {
		grid-template-columns: 1fr;
	}

	.chh-blog-card-featured .chh-blog-card-body {
		max-width: 760px;
		padding-top: 0;
	}

	.chh-single-layout {
		grid-template-columns: 1fr;
	}

	.chh-single-aside {
		position: static;
	}

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

	.chh-vendor-directory {
		grid-template-columns: 1fr;
	}

	.chh-vendor-sidebar {
		position: static;
	}

	.chh-vendor-submit-card {
		display: none;
	}

	.chh-vendor-mobile-cta {
		display: block;
		margin-top: 22px;
	}

	.chh-vendor-mobile-cta .chh-vendor-submit-card {
		display: block;
		margin-top: 0;
	}

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

	.chh-exhibitor-directory {
		grid-template-columns: 1fr;
	}

	.chh-exhibitor-sidebar {
		position: static;
	}

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

	.chh-single-exhibitor-hero .chh-single-exhibitor-container {
		grid-template-columns: 1fr;
	}

	.chh-single-exhibitor-copy {
		max-width: 760px;
	}

	.chh-single-exhibitor-text {
		max-width: none;
	}

	.chh-single-exhibitor-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chh-event-hero-grid,
	.chh-event-story-grid,
	.chh-event-faq-grid,
	.chh-event-faq-grid-has-image {
		grid-template-columns: 1fr;
	}

	.chh-event-hero-grid {
		min-height: 0;
	}

	.chh-event-hero-image {
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: clamp(300px, 48vw, 520px);
	}

	.chh-event-hero-image-has-slider {
		aspect-ratio: 16 / 9;
	}

	.chh-event-story-body {
		grid-column: 1;
		max-width: none;
	}

	.chh-event-story-body-has-timeline {
		grid-template-columns: 1fr;
	}

	.chh-event-highlight-card {
		grid-template-columns: 1fr;
	}

	.chh-event-highlight-image {
		aspect-ratio: 16 / 10;
	}

	.chh-event-highlight-copy {
		padding: 0 clamp(22px, 4vw, 36px) clamp(28px, 4vw, 42px);
	}

	.chh-event-story-timeline {
		border-left: 0;
		border-top: 1px solid rgba(23, 23, 20, 0.12);
		padding-left: 0;
		padding-top: clamp(26px, 3.2vw, 42px);
	}

	.chh-event-ticket-list-item {
		align-items: start;
		gap: 12px;
		grid-template-columns: 1fr;
		padding: 18px 0;
	}

	.chh-event-ticket-list-item span {
		border-left: 0;
		min-width: 0;
		padding-left: 0;
		text-align: left;
		white-space: normal;
	}

	.chh-event-ticket-list-item a {
		justify-self: start;
	}

	.chh-event-quickbar-grid,
	.chh-event-schedule-grid,
	.chh-event-mini-grid,
	.chh-event-exhibitor-grid,
	.chh-event-vendor-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chh-event-schedule-grid,
	.chh-event-exhibitor-grid,
	.chh-event-vendor-grid {
		display: flex;
		gap: 15px;
		margin-left: -20px;
		margin-right: -20px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 20px 6px;
		scroll-padding-left: 20px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.chh-event-schedule-carousel .chh-event-schedule-track {
		margin-left: -15px;
		margin-right: -15px;
		overflow: hidden;
		padding: 0 0 6px;
	}

	.chh-event-schedule-carousel .chh-event-schedule-grid,
	.chh-event-exhibitor-carousel .chh-event-exhibitor-grid {
		margin: 0;
		overflow: visible;
		padding: 0;
	}

	.chh-event-exhibitor-carousel .chh-event-exhibitor-track {
		margin-left: -15px;
		margin-right: -15px;
		overflow: hidden;
		padding: 0 0 6px;
	}

	.chh-event-exhibitor-slide {
		flex: 0 0 auto;
		width: min(82vw, 420px);
	}

	.chh-event-schedule-grid::-webkit-scrollbar,
	.chh-event-exhibitor-grid::-webkit-scrollbar,
	.chh-event-vendor-grid::-webkit-scrollbar {
		display: none;
	}

	.chh-event-arena-card,
	.chh-event-exhibitor-card,
	.chh-event-vendor-card {
		flex: 0 0 min(82vw, 420px);
	}

	.chh-event-schedule-slide {
		flex: 0 0 auto;
		width: min(82vw, 420px);
	}

	.chh-event-schedule-slide .chh-event-arena-card {
		flex: 1 1 auto;
		width: 100%;
	}

	.chh-event-arena-card {
		--chh-arena-time-column: 148px;
	}

	.chh-event-schedule-dots {
		display: flex;
		gap: 8px;
		justify-content: center;
		margin-top: 14px;
	}

	.chh-event-schedule-dots button {
		appearance: none;
		background: rgba(37, 37, 30, 0.24);
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		height: 7px;
		padding: 0;
		transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
		width: 7px;
	}

	.chh-event-schedule-dots button.is-active {
		background: #8f2f1f;
		transform: scale(1.05);
		width: 22px;
	}

	.chh-feature-hero,
	.chh-feature-hero-content {
		min-height: 640px;
	}

	.chh-feature-hero-content {
		grid-template-columns: 1fr;
		justify-content: start;
	}

	.chh-feature-hero-details {
		max-width: none;
		justify-content: flex-start;
		width: 100%;
	}

	.chh-feature-hero-sponsor {
		justify-items: start;
		justify-self: start;
		max-width: none;
		text-align: left;
	}

	.chh-feature-hero-list {
		bottom: 18px;
		border-top-color: rgba(255, 253, 248, 0.34);
		left: 25px;
		max-width: none;
		overflow: visible;
		right: 25px;
	}

	.chh-feature-hero-list::-webkit-scrollbar {
		display: none;
	}

	.chh-feature-hero-item {
		display: none;
		flex: 1 1 auto;
		gap: 6px;
		grid-template-rows: auto auto;
		padding: 18px 0 8px;
		width: 100%;
	}

	.chh-feature-hero-item.is-active {
		display: grid;
	}

	.chh-feature-hero-item::before {
		bottom: auto;
		height: 2px;
		left: 50%;
		top: -1px;
		width: min(92px, 70%);
		transform: translateX(-50%) scaleX(0);
	}

	.chh-feature-hero-item h3 {
		font-size: 22px;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.chh-latest-articles-grid {
		grid-template-columns: 1fr;
	}

	.chh-latest-article-image {
		aspect-ratio: 16 / 10;
	}

	.chh-day-schedule-widget .chh-day-schedule {
		--chh-arena-carousel-gap: 15px;
		--chh-arena-carousel-width: calc(100vw - 40px);
	}

	.chh-day-schedule-widget .chh-day-schedule-slide {
		width: min(84vw, 390px);
	}

	.chh-day-schedule-arrow-prev {
		left: -8px;
	}

	.chh-day-schedule-arrow-next {
		left: calc(var(--chh-arena-carousel-width) - 34px);
		right: auto;
	}

	.chh-exhibitor-promo-carousel.chh-card-grid {
		--chh-exhibitor-carousel-gap: 15px;
		--chh-exhibitor-carousel-width: calc(100vw - 40px);
		--chh-exhibitor-carousel-bleed: 20px;
		margin-right: calc(var(--chh-exhibitor-carousel-bleed) * -1);
		padding: 2px var(--chh-exhibitor-carousel-bleed) 8px 0;
		width: var(--chh-exhibitor-carousel-width);
	}

	.chh-exhibitor-promo-carousel .splide__track {
		overflow: visible;
		width: var(--chh-exhibitor-carousel-width);
	}

	.chh-exhibitor-promo-slide {
		width: min(84vw, 390px);
	}

	.chh-exhibitor-promo-arrow-prev {
		left: -8px;
	}

	.chh-exhibitor-promo-arrow-next {
		left: calc(var(--chh-exhibitor-carousel-width) - 34px);
		right: auto;
	}

	.chh-header-inner {
		padding: 0 18px;
	}

	.chh-ticket-modal-panel {
		box-shadow: none;
		height: 100vh;
		height: 100dvh;
		left: 0;
		max-height: none;
		max-width: none;
		top: 0;
		transform: translateY(12px);
		width: 100vw;
	}

	.chh-ticket-modal.is-open .chh-ticket-modal-panel {
		transform: translateY(0);
	}

	.chh-ticket-modal-head {
		align-items: flex-start;
		padding: 18px;
	}

	.chh-ticket-modal-body {
		min-height: 0;
		overflow: auto;
		padding: 16px;
	}

	.chh-ticket-modal-events-head h3 {
		max-width: 100%;
	}

	.chh-ticket-modal-event-list {
		grid-template-columns: 1fr;
	}

	.chh-ticket-modal-event-link {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 16px;
	}

	.chh-ticket-modal-event-date {
		border-left: 0;
		border-top: 1px solid rgba(37, 37, 30, 0.1);
		min-height: 0;
		padding-left: 0;
		padding-top: 12px;
	}

	.chh-directory-modal-panel {
		max-height: calc(100vh - 24px);
		max-width: calc(100vw - 24px);
	}

	.chh-directory-modal-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.chh-directory-modal-image {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.chh-directory-modal-copy {
		padding: 24px;
		padding-right: 24px;
	}

	.chh-directory-modal-close {
		right: 12px;
		top: 12px;
	}

	.chh-directory-modal-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.chh-footer-container {
		width: calc(100% - 36px);
	}

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

	.chh-footer-columns {
		gap: 32px;
	}

	.chh-footer-subscribe {
		padding: 22px;
	}

	.chh-footer-subscribe-button {
		width: 100%;
	}

	.chh-footer-map {
		display: none;
	}

	.chh-footer-bottom .chh-footer-container {
		align-items: flex-start;
		flex-direction: column;
	}

	.chh-day-schedule,
	.chh-card-grid {
		grid-template-columns: 1fr;
	}

	.chh-featured-events {
		padding: 38px 20px;
	}

	.chh-section-title-widget {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.chh-section-title-widget h2 {
		font-size: clamp(44px, 13vw, 72px);
		line-height: 0.96;
	}

	.chh-section-title-button {
		justify-self: start;
	}

	.chh-section-title-center .chh-section-title-button {
		justify-self: center;
	}

	.chh-featured-events-sponsor {
		max-width: 240px;
	}

	.chh-featured-events-sponsor-logo img {
		max-height: 46px;
		max-width: 170px;
	}

	.chh-email-subscribe-cta {
		min-height: 340px;
	}

	.chh-email-subscribe-cta::after,
	.chh-email-subscribe-cta-center::after {
		background:
			linear-gradient(90deg, rgba(10, 24, 16, 0.84), rgba(10, 24, 16, 0.58) 100%),
			linear-gradient(0deg, rgba(10, 24, 16, 0.7), rgba(10, 24, 16, 0.16) 66%);
	}

	.chh-email-subscribe-cta-inner {
		padding: 34px 0;
		width: calc(100% - 36px);
	}

	.chh-email-subscribe-cta h2 {
		font-size: clamp(32px, 8vw, 44px);
		max-width: 10em;
	}

	.chh-email-subscribe-cta-intro {
		font-size: 16px;
	}

	.chh-simple-page-hero {
		min-height: 300px;
		padding: 52px 0 34px;
	}

	.chh-simple-page-hero::after {
		background:
			linear-gradient(90deg, rgba(20, 19, 15, 0.82), rgba(20, 19, 15, 0.58) 100%),
			linear-gradient(0deg, rgba(20, 19, 15, 0.42), rgba(20, 19, 15, 0.1) 58%);
	}

	.chh-simple-page-hero-light::after {
		background:
			linear-gradient(90deg, rgba(246, 241, 232, 0.94), rgba(246, 241, 232, 0.78) 100%),
			linear-gradient(0deg, rgba(246, 241, 232, 0.3), rgba(246, 241, 232, 0.08) 58%);
	}

	.chh-simple-page-hero-inner {
		width: calc(100% - 36px);
	}

	.chh-simple-page-hero h1 {
		font-size: clamp(40px, 12vw, 58px);
		max-width: 9em;
	}

	.chh-simple-page-hero-intro {
		font-size: 17px;
	}

	.chh-featured-events-grid {
		display: flex !important;
		gap: 14px;
		margin: 0;
		padding: 0;
	}

	.chh-featured-events-track {
		margin-left: 0;
		margin-right: -20px;
		overflow: hidden;
		padding: 0 20px 6px 0;
	}

	.chh-featured-events-slide {
		flex: 0 0 auto;
		width: min(84vw, 430px);
	}

	.chh-featured-event-card:hover,
	.chh-featured-event-card:focus-within {
		box-shadow: 0 18px 42px rgba(12, 42, 27, 0.07);
		transform: none;
	}

	.chh-featured-event-card:hover img,
	.chh-featured-event-card:focus-within img {
		transform: none;
	}

	.chh-featured-events-dots,
	.chh-event-schedule-dots,
	.chh-featured-events-carousel .splide__pagination,
	.chh-event-schedule-carousel .splide__pagination {
		display: flex;
		gap: 8px;
		justify-content: center;
		margin-top: 14px;
	}

	.chh-featured-events-dots button,
	.chh-event-schedule-dots button,
	.chh-featured-events-carousel .splide__pagination__page,
	.chh-event-schedule-carousel .splide__pagination__page {
		appearance: none;
		background: rgba(37, 37, 30, 0.24);
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		height: 7px;
		padding: 0;
		transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
		width: 7px;
	}

	.chh-featured-events-dots button.is-active,
	.chh-event-schedule-dots button.is-active,
	.chh-featured-events-carousel .splide__pagination__page.is-active,
	.chh-event-schedule-carousel .splide__pagination__page.is-active {
		background: #8f2f1f;
		transform: scale(1.05);
		width: 22px;
	}

	.chh-featured-event-body h3 {
		font-size: 30px;
	}

	.chh-blog-container {
		width: calc(100% - 48px);
	}

	.chh-blog-hero {
		padding-top: 72px;
	}

	.chh-blog-hero.chh-simple-page-hero {
		padding-top: 64px;
	}

	.chh-search-hero {
		padding-top: 56px;
	}

	.chh-search-page-field {
		border-radius: 28px;
		flex-direction: column;
		padding: 8px;
	}

	.chh-search-page-field input {
		min-height: 50px;
		padding: 0 14px;
	}

	.chh-search-page-field button {
		width: 100%;
	}

	.chh-error-hero {
		min-height: 0;
		padding-top: 46px;
	}

	.chh-error-container {
		width: calc(100% - 48px);
	}

	.chh-error-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.chh-events-archive-container {
		width: calc(100% - 36px);
	}

	.chh-events-archive-hero {
		padding-top: 56px;
	}

	.chh-events-archive-hero h1 {
		font-size: clamp(54px, 16vw, 82px);
	}

	.chh-events-archive-grid,
	.chh-events-archive-grid-featured {
		grid-template-columns: 1fr;
	}

	.chh-events-archive-card h2 {
		font-size: clamp(36px, 11vw, 54px);
	}

	.chh-events-archive-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.chh-blog-grid {
		grid-template-columns: 1fr;
	}

	.chh-search-group-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.chh-search-grid {
		grid-template-columns: 1fr;
	}

	.chh-blog-card-featured h2,
	.chh-blog-card h2 {
		font-size: 28px;
		line-height: 1;
	}

	.chh-blog-card-featured .chh-blog-card-body {
		background: transparent;
		border-top: 0;
	}

	.chh-blog-card-featured .chh-blog-card-image {
		aspect-ratio: 4 / 3;
	}

	.chh-blog-card-meta {
		font-size: 11px;
	}

	.chh-single-hero {
		padding-top: 72px;
	}

	.chh-single-hero h1 {
		font-size: 40px;
		line-height: 1;
	}

	.chh-single-dek {
		font-size: 16px;
	}

	.chh-single-featured-image {
		aspect-ratio: 4 / 3;
		margin-top: 24px;
		width: calc(100% - 36px);
	}

	.chh-single-layout {
		padding-bottom: 58px;
		padding-top: 38px;
	}

	.chh-single-content {
		font-size: 16px;
	}

	.chh-related-header {
		align-items: start;
		flex-direction: column;
	}

	.chh-related-grid {
		grid-template-columns: 1fr;
	}

	.chh-vendor-directory {
		padding: 0;
	}

	.chh-vendor-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.chh-vendor-search {
		flex-basis: auto;
		width: 100%;
	}

	.chh-vendor-grid {
		grid-template-columns: 1fr;
	}

	.chh-exhibitor-directory {
		padding: 0;
	}

	.chh-exhibitor-toolbar,
	.chh-exhibitor-tools {
		align-items: stretch;
		flex-direction: column;
	}

	.chh-exhibitor-search {
		flex-basis: auto;
		width: 100%;
	}

	.chh-exhibitor-view-toggle {
		align-self: flex-start;
	}

	.chh-exhibitor-grid {
		grid-template-columns: 1fr;
	}

	.chh-single-exhibitor-container {
		width: calc(100% - 36px);
	}

	.chh-single-exhibitor-hero {
		padding-top: 52px;
	}

	.chh-single-exhibitor h1 {
		font-size: 48px;
	}

	.chh-single-exhibitor-copy {
		display: contents;
	}

	.chh-single-exhibitor-back,
	.chh-single-exhibitor-arena,
	.chh-single-exhibitor h1,
	.chh-single-exhibitor-dek,
	.chh-single-exhibitor-button,
	.chh-single-exhibitor-sponsor {
		order: 1;
	}

	.chh-single-exhibitor-image {
		order: 2;
	}

	.chh-single-exhibitor-text {
		margin-top: 2px;
		order: 3;
	}

	.chh-single-exhibitor-related-head {
		align-items: start;
		flex-direction: column;
		gap: 10px;
	}

	.chh-single-exhibitor-grid {
		grid-template-columns: 1fr;
	}

	.chh-event-container {
		width: calc(100% - 36px);
	}

	.chh-event-hero {
		padding-top: 52px;
	}

	.chh-event-hero-copy {
		border-top: 0;
		padding-top: 0;
	}

	.chh-event-date-feature {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.chh-event-date-feature span {
		min-height: 0;
		padding: 0;
	}

	.chh-event-date-feature strong::after {
		margin: 0 8px;
		width: 24px;
	}

	.chh-event h1 {
		font-size: clamp(38px, 11vw, 56px);
		line-height: 1.05;
	}

	.chh-event-hero-image {
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: clamp(260px, 42vw, 420px);
		order: -1;
	}

	.chh-event-hero-image-has-slider {
		aspect-ratio: 16 / 9;
	}

	.chh-event-hero-image img {
		height: 100%;
		object-fit: cover;
	}

	.chh-event-hero-image-has-slider img {
		height: 100%;
		object-fit: cover;
	}

	.chh-event-hero-actions {
		align-items: center;
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 12px 64px 12px 18px;
		scroll-padding-left: 18px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.chh-event-hero-actions-wrap {
		background: rgba(255, 253, 248, 0.8);
		border-bottom: 1px solid rgba(37, 37, 30, 0.12);
		border-top: 1px solid rgba(37, 37, 30, 0.12);
		margin-left: -18px;
		margin-right: -18px;
		overflow: hidden;
		position: relative;
	}

	.chh-event-hero-actions-wrap::after {
		align-items: center;
		background:
			linear-gradient(90deg, rgba(255, 253, 248, 0), #fffdf8 34%),
			#fffdf8;
		bottom: 0;
		color: #171714;
		content: "›";
		display: inline-flex;
		font-family: var(--chh-text-font);
		font-size: 34px;
		font-weight: 300;
		justify-content: center;
		line-height: 1;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0;
		width: 58px;
		z-index: 2;
	}

	.chh-event-hero-actions::before,
	.chh-event-hero-actions::after {
		display: none;
	}

	.chh-event-hero-actions::-webkit-scrollbar {
		display: none;
	}

	.chh-event-hero-actions .chh-event-primary-button,
	.chh-event-hero-actions .chh-event-secondary-button {
		background: transparent;
		border: 1px solid rgba(37, 37, 30, 0.18);
		border-radius: 999px;
		color: rgba(37, 37, 30, 0.64);
		flex: 0 0 auto;
		font-size: 16px;
		font-weight: 520;
		letter-spacing: 0;
		padding: 12px 22px;
		text-transform: none;
		white-space: nowrap;
	}

	.chh-event-hero-actions .chh-event-primary-button {
		background: #343434;
		border: 1px solid #343434;
		color: #fffdf8;
		font-weight: 560;
		padding: 12px 22px;
	}

	.chh-event-hero-actions .chh-event-secondary-button:hover,
	.chh-event-hero-actions .chh-event-secondary-button:focus {
		background: rgba(255, 253, 248, 0.86);
		border-color: rgba(37, 37, 30, 0.3);
		color: #171714;
	}

	.chh-event-hero-actions a + a {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	}

	.chh-event-quickbar-grid {
		padding-bottom: 24px;
		padding-top: 24px;
	}

	.chh-event-quickbar-grid,
	.chh-event-schedule-grid,
	.chh-event-mini-grid,
	.chh-event-exhibitor-grid,
	.chh-event-vendor-grid {
		grid-template-columns: 1fr;
	}

	.chh-event-gallery-slider {
		margin-left: -18px;
		margin-right: -18px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.chh-event-gallery-slide {
		border-radius: 14px;
		height: 62vw;
		max-height: 380px;
	}

	.chh-event-gallery-slider .splide__arrow {
		display: none;
	}

	.chh-event-timeline-item {
		gap: 18px;
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.chh-event-story-timeline .chh-event-timeline {
		margin-left: auto;
		margin-right: auto;
		width: min(100%, 430px);
	}

	.chh-event-timeline-item time {
		font-size: 0.85rem;
		letter-spacing: 0.1em;
		padding: 18px 0;
	}

	.chh-event-timeline-item div {
		padding: 18px 0 18px 20px;
	}

	.chh-event-timeline-item div::before {
		top: 21px;
	}

	.chh-event-timeline-item strong {
		font-size: 1.35rem;
	}

	.chh-event-timeline-note {
		font-size: 1.05rem;
		margin-left: 124px;
	}

	.chh-event-story-timeline .chh-event-timeline-note {
		margin-left: calc(86px + 18px + 20px);
		margin-right: auto;
		max-width: 260px;
	}

	.chh-exhibitor-directory.is-list-view .chh-exhibitor-card a {
		grid-template-columns: 1fr;
	}

	.chh-exhibitor-directory.is-list-view .chh-exhibitor-image {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.chh-exhibitor-sponsor-badge {
		gap: 10px;
		grid-template-columns: minmax(0, 1fr) 74px;
		margin-top: auto;
		padding-top: 12px;
	}

	.chh-exhibitor-sponsor-label {
		font-size: 10px;
	}

	.chh-exhibitor-sponsor-logo {
		border-radius: 12px;
		flex-basis: 68px;
		height: 68px;
		padding: 8px;
		width: 68px;
	}

	.chh-day-schedule:not(.splide) {
		background: transparent;
		border: 0;
		display: flex;
		gap: 15px;
		margin-left: -20px;
		margin-right: -20px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 20px 4px;
		position: relative;
		scroll-padding-left: 20px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.chh-day-schedule:not(.splide)::-webkit-scrollbar {
		display: none;
	}

	.chh-day-schedule:not(.splide) .chh-arena-schedule {
		background: #fffdf8;
		border: 1px solid rgba(37, 37, 30, 0.12);
		border-top: 3px solid #8f2f1f;
		display: flex;
		flex-direction: column;
		flex: 0 0 min(84vw, 430px);
		padding: 22px 18px 20px;
	}

	.chh-day-schedule:not(.splide) .chh-arena-schedule h3 {
		font-size: 30px;
		margin-bottom: 18px;
		text-align: center;
	}

	.chh-schedule-list {
		gap: 0;
	}

	.chh-schedule-item {
		align-items: baseline;
		border-bottom-color: rgba(37, 37, 30, 0.12);
		display: grid;
		gap: 10px;
		grid-template-columns: minmax(70px, 0.34fr) minmax(0, 1fr);
		padding: 13px 0;
	}

	.chh-schedule-item time {
		font-size: 12px;
	}

	.chh-arena-event-button {
		align-self: stretch;
		margin-top: auto;
	}

	.chh-day-schedule-dots {
		display: flex;
		gap: 8px;
		justify-content: center;
		margin-top: 14px;
	}

	.chh-day-schedule-dots button {
		appearance: none;
		background: rgba(37, 37, 30, 0.24);
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		height: 7px;
		padding: 0;
		transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
		width: 7px;
	}

	.chh-day-schedule-dots button.is-active {
		background: #8f2f1f;
		transform: scale(1.05);
		width: 22px;
	}

	.chh-feature-hero-content {
		align-content: end;
		gap: 22px;
		min-height: calc(100vw * 16 / 9);
		padding-bottom: 34px;
		padding-top: 92px;
		width: calc(100% - 50px);
	}

	.chh-feature-hero {
		min-height: calc(100vw * 16 / 9);
	}

	.chh-feature-hero-left .chh-feature-hero-content {
		padding-left: 0;
		padding-right: 0;
	}

	.chh-feature-hero-intro h2 {
		font-size: 3.5rem;
		line-height: 1.1;
	}

	.chh-feature-hero-intro p {
		font-size: 16px;
	}

	.chh-feature-hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		margin-top: 26px;
	}

	.chh-feature-hero-details {
		display: grid;
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
		width: 100%;
	}

	.chh-feature-hero-detail {
		gap: 8px;
		grid-template-columns: 18px minmax(0, 1fr);
		max-width: none;
	}

	.chh-feature-hero-detail svg {
		height: 18px;
		width: 18px;
	}

	.chh-feature-hero-detail strong {
		font-size: 13px;
		margin-bottom: 4px;
	}

	.chh-feature-hero-detail em {
		font-size: 12px;
		line-height: 1.3;
	}

	.chh-feature-hero-sponsor-logo {
		justify-content: flex-start;
		min-height: 92px;
		min-width: min(300px, 100%);
		padding: 0;
	}

	.chh-feature-hero-sponsor-logo img {
		max-height: 68px;
		max-width: 260px;
	}

	.chh-sponsor-ticker-group {
		gap: 22px;
		padding-right: 22px;
	}

	.chh-sponsor-ticker-item {
		height: 78px;
		width: 162px;
	}

	.chh-sponsor-list {
		padding-left: 18px;
		padding-right: 18px;
	}

	.chh-sponsor-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chh-event-sponsor-section .chh-event-sponsor-group.chh-sponsor-list {
		gap: 12px;
		grid-template-columns: 1fr;
		padding-top: 18px;
	}

	.chh-event-sponsor-section .chh-sponsor-list-grid {
		grid-template-columns: 1fr;
	}

	.chh-sponsor-list-item a {
		min-height: 154px;
		padding: 20px 14px 16px;
	}

	.chh-sponsor-list-logo {
		height: 76px;
	}

	.chh-sponsor-list-logo img {
		max-height: 68px;
	}

	.chh-event-photo-rows {
		padding-left: 0;
		padding-right: 0;
	}

	.chh-event-photo-rows-title {
		line-height: 0.98;
	}

	.chh-event-photo-card,
	.chh-event-photo-card-narrow,
	.chh-event-photo-card-wide {
		height: 62vw;
		width: 82vw;
	}

	.chh-event-photo-arrow {
		display: none;
	}
}

.chh-widget-section-heading p,
.chh-sponsor-list-header p,
.chh-ticket-modal-head p,
.chh-ticket-modal-events-head p,
.chh-feature-hero-intro p,
.chh-email-subscribe-cta-eyebrow,
.chh-simple-page-hero-eyebrow,
.chh-featured-events-eyebrow,
.chh-blog-eyebrow,
.chh-event-eyebrow,
.chh-event-section-heading > p,
.chh-event-detail-card span,
.chh-event-ticket-list-heading p,
.chh-event-story-timeline-heading p,
.chh-event-photo-rows-eyebrow,
.chh-single-aside p,
.chh-related-header p,
.chh-single-exhibitor-related-head p {
	font-size: clamp(13px, 0.9vw, 15px);
	line-height: 1.25;
}
