/*
Swiss editorial modernization layer for Hong.
Global tokens, typography, site chrome, and shared editorial primitives.
*/

:root {
	--hong-white: #ffffff;
	--hong-paper: #f6f6f4;
	--hong-pale: #ecece8;
	--hong-line: #d4d4d0;
	--hong-gray-100: #b3b3ae;
	--hong-gray-400: #6a6a66;
	--hong-gray-500: #565652;
	--hong-gray-700: #2a2a27;
	--hong-muted: #7c7c78;
	--hong-red: #9f2f2a;
	--hong-surface: #ffffff;
	--hong-gray-300: #7c7c78;
	--hong-gray-600: #3a3a37;
	--hong-ink: #0a0a0a;
	--hong-accent: #cc2518;
	--hong-accent-dark: #a01d13;
	--hong-research: #003775;
	--hong-research-soft: #e9eef5;
	--hong-jade: #2d6a5f;
	--hong-whatsapp: #c5efd5;
	--hong-whatsapp-strong: #9ee0b9;
	--hong-whatsapp-ink: #0d3522;
	--hong-whatsapp-solid: #25d366;
	--hong-whatsapp-solid-hover: #1eba59;
	--hong-whatsapp-solid-ink: #07301f;
	--hong-sans: "Archivo", sans-serif;
	--hong-display: "Archivo", sans-serif;
	--hong-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
	--hong-page-gutter: 48px;
	--hong-width-prose: 880px;
	--hong-width-article: 980px;
	--hong-width-visual: 1400px;
	--hong-width-landing: 1400px;
	--hong-box-prose: min(var(--hong-width-prose), calc(100vw - var(--hong-page-gutter)));
	--hong-box-article: min(var(--hong-width-article), calc(100vw - var(--hong-page-gutter)));
	--hong-box-visual: min(var(--hong-width-visual), calc(100vw - var(--hong-page-gutter)));
	--hong-box-landing: min(var(--hong-width-landing), calc(100vw - var(--hong-page-gutter)));
}

body.hong-swiss-modern {
	background: var(--hong-paper);
	color: var(--hong-gray-600);
	font-family: var(--hong-sans);
	font-size: 17px;
	line-height: 1.7;
}

.hong-swiss-modern .site-container {
	background: var(--hong-paper);
}

body.hong-swiss-modern.blog,
body.hong-swiss-modern.archive,
body.hong-swiss-modern.search-results {
	background: var(--hong-white);
}

.hong-swiss-modern.blog .site-container,
.hong-swiss-modern.archive .site-container,
.hong-swiss-modern.search-results .site-container {
	background: var(--hong-white);
}

.hong-swiss-modern a {
	color: var(--hong-ink);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.hong-swiss-modern a:hover,
.hong-swiss-modern .entry-content a:hover {
	color: var(--hong-accent);
}

.hong-swiss-modern .entry-content a.wp-block-button__link.has-vivid-green-cyan-background-color,
.hong-swiss-modern .entry-content a.wp-block-button__link.has-vivid-green-cyan-background-color:visited {
	background: var(--hong-whatsapp-solid) !important;
	border-color: var(--hong-whatsapp-solid) !important;
	color: var(--hong-whatsapp-solid-ink) !important;
}

.hong-swiss-modern .entry-content a.wp-block-button__link.has-vivid-green-cyan-background-color:hover,
.hong-swiss-modern .entry-content a.wp-block-button__link.has-vivid-green-cyan-background-color:focus-visible {
	background: var(--hong-whatsapp-solid-hover) !important;
	border-color: var(--hong-whatsapp-solid-hover) !important;
	color: var(--hong-whatsapp-solid-ink) !important;
}

.hong-swiss-modern a:focus-visible,
.hong-swiss-modern button:focus-visible,
.hong-swiss-modern input:focus-visible,
.hong-swiss-modern select:focus-visible,
.hong-swiss-modern textarea:focus-visible {
	outline: 2px solid var(--hong-accent);
	outline-offset: 3px;
}

.hong-swiss-modern h1,
.hong-swiss-modern h2,
.hong-swiss-modern h3,
.hong-swiss-modern h4,
.hong-swiss-modern h5,
.hong-swiss-modern h6 {
	color: var(--hong-ink);
	font-family: var(--hong-sans);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.08;
}

.hong-swiss-modern h1,
.hong-swiss-modern .entry-title {
	font-size: 64px;
}

.hong-swiss-modern h2 {
	font-size: 42px;
	margin-top: 58px;
}

.hong-swiss-modern h3 {
	font-size: 28px;
}

.hong-swiss-modern h4 {
	font-size: 22px;
}

.hong-swiss-modern .top-bar,
.hong-swiss-modern .site-header,
.hong-swiss-modern .footer-menus,
.hong-swiss-modern .site-footer {
	background: var(--hong-white);
}

.hong-swiss-modern .top-bar {
	border-bottom: 1px solid var(--hong-line);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.hong-swiss-modern .easy-notification-bar {
	display: none !important;
}

.hong-swiss-modern .hong-sitewide-notice {
	background: linear-gradient(135deg, #003775 0%, #0b4d95 58%, #001c38 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--hong-white);
	display: grid;
	/* The toggle is scroll-linked (sitewide-notice.js), so the collapse must not
	   animate max-height: that reflows the document on every threshold crossing.
	   1fr -> 0fr is the interpolable height-collapse idiom. */
	grid-template-rows: 1fr;
	opacity: 1;
	overflow: hidden;
	transition: grid-template-rows 0.35s ease, opacity 0.25s ease, border-color 0.35s ease;
}

.hong-swiss-modern .hong-sitewide-notice.is-hidden {
	border-bottom-color: transparent;
	grid-template-rows: 0fr;
	opacity: 0;
}

.hong-swiss-modern .hong-sitewide-notice__wrap {
	align-items: center;
	display: flex;
	gap: 12px 20px;
	justify-content: space-between;
	/* No vertical padding here: padded border-boxes floor the 0fr track, so the
	   bar could never fully collapse. The text child carries the spacing. */
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

.hong-swiss-modern .hong-sitewide-notice__text {
	color: var(--hong-white);
	font-family: var(--hong-sans);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	margin: 10px 0; /* the bar's vertical rhythm (moved off the collapsing wrap) */
	max-width: 920px;
}

.hong-swiss-modern .hong-sitewide-notice__text strong {
	color: inherit;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hong-swiss-modern .hong-sitewide-notice__button {
	align-items: center;
	background: #25d366;
	border: 1px solid #25d366;
	border-radius: 999px;
	color: var(--hong-whatsapp-solid-ink);
	display: inline-flex;
	flex-shrink: 0;
	font-family: var(--hong-mono);
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.02em;
	line-height: 1.2;
	margin: 10px 0; /* pairs with the text margin now that the wrap is unpadded */
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
}

.hong-swiss-modern .hong-sitewide-notice__button:hover {
	background: #1ebe5b;
	border-color: #1ebe5b;
	color: var(--hong-whatsapp-solid-ink);
}

.hong-swiss-modern .top-ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	line-height: 1.2;
}

.hong-swiss-modern .top-ul li,
.hong-swiss-modern .top-ul li.righty {
	align-items: center;
	display: inline-flex;
	float: none;
	margin: 0;
	min-height: 44px;
}

.hong-swiss-modern .top-ul li > a,
.hong-swiss-modern .top-ul li > span {
	align-items: center;
	display: inline-flex;
	min-height: 44px;
}

.hong-swiss-modern .top-bar__label {
	color: inherit;
}

.hong-swiss-modern .top-ul [class^="icon-"]::before,
.hong-swiss-modern .top-ul [class*=" icon-"]::before {
	line-height: 1;
	margin-right: 6px;
}

.hong-swiss-modern .top-bar .wrap,
.hong-swiss-modern .site-header .wrap,
.hong-swiss-modern .footer-menus .wrap,
.hong-swiss-modern .site-footer .wrap {
	border-color: var(--hong-line);
}

.hong-swiss-modern .top-left {
	float: none;
	padding-right: 58px;
	width: auto;
}

/* WhatsApp top-bar button — "pílula verde" (idea 01). Green pill + WhatsApp
   glyph. Ink stays dark-green (--hong-whatsapp-solid-ink) so the label clears
   WCAG AA on the #25d366 fill (white would be ~2:1 and fail the contrast gate);
   the glyph inherits the same ink via currentColor. (impeccable 2026-06-29) */
.hong-swiss-modern .top-bar .whatsapp-button__trigger {
	align-items: center;
	background: var(--hong-whatsapp-solid) !important;
	border: 1px solid var(--hong-whatsapp-solid);
	border-radius: 999px;
	color: var(--hong-whatsapp-solid-ink) !important;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	letter-spacing: 0.01em;
	line-height: 1;
	min-height: 44px;
	padding: 10px 18px;
	text-transform: none;
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.hong-swiss-modern .top-bar .whatsapp-button__trigger::before {
	background-color: currentColor;
	content: "";
	flex: none;
	height: 18px;
	width: 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.709.306%201.262.489%201.694.625.712.227%201.36.195%201.871.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893A11.821%2011.821%200%200020.885%203.488%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.709.306%201.262.489%201.694.625.712.227%201.36.195%201.871.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893A11.821%2011.821%200%200020.885%203.488%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.hong-swiss-modern .top-bar .whatsapp-button__trigger:hover {
	background: var(--hong-whatsapp-solid-hover) !important;
	border-color: var(--hong-whatsapp-solid-hover);
	transform: translateY(-1px);
}

.hong-swiss-modern a.whatsapp-button__trigger,
.hong-swiss-modern a.whatsapp-button__trigger:visited {
	background: var(--hong-whatsapp-solid) !important;
	border-color: var(--hong-whatsapp-solid) !important;
	color: var(--hong-whatsapp-solid-ink) !important;
	text-decoration: none !important;
}

.hong-swiss-modern a[href*="whatsapp"].whatsapp-button__trigger,
.hong-swiss-modern a[href*="whatsapp"].whatsapp-button__trigger:visited,
.hong-swiss-modern a[href*="whatsapp"].hong-sitewide-notice__button,
.hong-swiss-modern a[href*="whatsapp"].hong-sitewide-notice__button:visited,
.hong-swiss-modern a[href*="whatsapp"].hong-research-page__button,
.hong-swiss-modern a[href*="whatsapp"].hong-research-page__button:visited,
.hong-swiss-modern a[href*="whatsapp"].hong-treatments-cta__button--whatsapp,
.hong-swiss-modern a[href*="whatsapp"].hong-treatments-cta__button--whatsapp:visited {
	background: var(--hong-whatsapp-solid) !important;
	border-color: var(--hong-whatsapp-solid) !important;
	color: var(--hong-whatsapp-solid-ink) !important;
	text-decoration: none !important;
}

.hong-swiss-modern a[href*="whatsapp"].whatsapp-button__trigger:hover,
.hong-swiss-modern a[href*="whatsapp"].whatsapp-button__trigger:focus-visible,
.hong-swiss-modern a[href*="whatsapp"].hong-sitewide-notice__button:hover,
.hong-swiss-modern a[href*="whatsapp"].hong-sitewide-notice__button:focus-visible,
.hong-swiss-modern a[href*="whatsapp"].hong-research-page__button:hover,
.hong-swiss-modern a[href*="whatsapp"].hong-research-page__button:focus-visible,
.hong-swiss-modern a[href*="whatsapp"].hong-treatments-cta__button--whatsapp:hover,
.hong-swiss-modern a[href*="whatsapp"].hong-treatments-cta__button--whatsapp:focus-visible {
	background: var(--hong-whatsapp-solid-hover) !important;
	border-color: var(--hong-whatsapp-solid-hover) !important;
	color: var(--hong-whatsapp-solid-ink) !important;
}

.hong-swiss-modern .top-form .search-form-input,
.hong-swiss-modern .top-form .search-form-submit {
	min-height: 44px;
}

body.hong-swiss-modern .top-form.show-form {
	align-items: center;
	display: flex;
	padding: 10px 58px 10px 0;
}

body.hong-swiss-modern .top-form .search-form {
	align-items: center;
	display: flex;
	gap: 10px;
	margin: 0;
	max-width: 760px;
	width: 100%;
}

body.hong-swiss-modern .top-form .search-form-input {
	border: 1px solid var(--hong-line);
	box-shadow: none;
	flex: 1 1 16rem;
	font-family: var(--hong-mono);
	font-size: 16px;
	margin: 0;
	min-width: 0;
	padding: 0 14px;
	width: auto;
}

body.hong-swiss-modern .top-form .search-form-submit {
	align-items: center;
	background: var(--hong-accent);
	border: 1px solid var(--hong-accent);
	border-radius: 999px;
	box-shadow: none;
	color: var(--hong-white);
	display: inline-flex !important;
	flex: 0 0 auto;
	font-family: var(--hong-mono);
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0;
	margin: 0;
	min-width: 104px;
	padding: 0 18px;
	text-transform: uppercase;
	width: auto;
}

body.hong-swiss-modern .top-form .search-form-submit:hover,
body.hong-swiss-modern .top-form .search-form-submit:focus {
	background: #7e1714;
	border-color: #7e1714;
	color: var(--hong-white);
}

body.hong-swiss-modern .top-button {
	align-items: center;
	background: var(--hong-white);
	border: 1px solid rgba(155, 35, 31, 0.18);
	border-radius: 999px;
	box-sizing: border-box;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	right: 0;
	top: 14px;
	width: 40px;
}

body.hong-swiss-modern .top-button::before,
body.hong-swiss-modern .top-button::after {
	content: "";
	display: block;
	font-family: inherit;
	font-size: 0;
	position: absolute;
}

body.hong-swiss-modern .top-button::before {
	border: 2px solid currentColor;
	border-radius: 50%;
	height: 13px;
	left: 11px;
	top: 10px;
	width: 13px;
}

body.hong-swiss-modern .top-button::after {
	background: currentColor;
	height: 2px;
	left: 23px;
	top: 24px;
	transform: rotate(45deg);
	transform-origin: left center;
	width: 8px;
}

body.hong-swiss-modern .top-button.showing-form::before,
body.hong-swiss-modern .top-button.showing-form::after {
	background: currentColor;
	border: 0;
	border-radius: 0;
	height: 2px;
	left: 50%;
	top: 50%;
	transform-origin: center;
	width: 17px;
}

body.hong-swiss-modern .top-button.showing-form::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

body.hong-swiss-modern .top-button.showing-form::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.hong-swiss-modern .site-header .wrap {
	padding-top: 32px;
	padding-bottom: 28px;
}

.hong-swiss-modern .genesis-nav-menu {
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hong-swiss-modern .genesis-nav-menu a {
	border-radius: 0;
	padding: 10px 14px;
}

.hong-swiss-modern .genesis-nav-menu a:hover,
.hong-swiss-modern .genesis-nav-menu .menu-item:hover > a,
.hong-swiss-modern .genesis-nav-menu .current-menu-item > a,
.hong-swiss-modern .genesis-nav-menu .current-menu-parent > a {
	color: var(--hong-accent);
}

.hong-swiss-modern .genesis-nav-menu .sub-menu {
	border: 1px solid var(--hong-line);
	box-shadow: none;
}

.hong-swiss-modern .nav-primary,
.hong-swiss-modern .nav-primary .genesis-nav-menu,
.hong-swiss-modern .nav-primary .genesis-nav-menu a {
	background: var(--hong-ink);
	color: var(--hong-white);
}

.hong-swiss-modern .nav-primary .genesis-nav-menu a:hover,
.hong-swiss-modern .nav-primary .genesis-nav-menu .current-menu-item > a {
	background: var(--hong-ink);
	color: var(--hong-gray-100);
}

.hong-swiss-modern .breadcrumb {
	border-bottom: 1px solid var(--hong-line);
	color: var(--hong-gray-600);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hong-swiss-modern .entry {
	background: var(--hong-white);
}

.hong-swiss-modern .entry {
	border-top: 2px solid var(--hong-ink);
	box-shadow: none;
	padding-top: 28px;
}

.hong-swiss-modern .single-post .entry {
	padding: 72px 95px 56px;
}

.hong-swiss-modern .entry-content {
	color: var(--hong-gray-600);
	font-size: 18px;
	line-height: 1.75;
}

.hong-swiss-modern .entry-content p,
.hong-swiss-modern .entry-content ul,
.hong-swiss-modern .entry-content ol {
	margin-bottom: 28px;
}

.hong-swiss-modern .entry-content a {
	border-bottom: 1px solid rgba(204, 37, 24, 0.35);
	color: var(--hong-accent-dark);
}

.hong-swiss-modern .entry-content strong {
	color: var(--hong-ink);
	font-weight: 700;
}

.hong-swiss-modern table,
.hong-swiss-modern th,
.hong-swiss-modern td {
	font-family: var(--hong-sans);
}

.hong-swiss-modern .footer-menus .widget-title,
.hong-swiss-modern .footer-widgets h5,
.hong-swiss-modern .footer-widgets .hong-foot-htitle {
	color: var(--hong-accent-dark);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
	text-transform: uppercase;
}

.hong-swiss-modern .footer-menus li,
.hong-swiss-modern .footer-menus a,
.hong-swiss-modern .footer-widgets p,
.hong-swiss-modern .footer-widgets li,
.hong-swiss-modern .site-footer p,
.hong-swiss-modern .site-footer li,
.hong-swiss-modern .bot-ul,
.hong-swiss-modern .bot-ul li,
.hong-swiss-modern .bot-ul a,
.hong-swiss-modern .hong-widget-note {
	font-family: var(--hong-sans);
	font-size: 15px;
	line-height: 1.6;
}

.hong-swiss-modern .footer-widgets .hong-widget-note {
	color: var(--hong-gray-600);
	margin: 0;
}

.hong-swiss-modern .entry-content blockquote {
	border-bottom: 2px solid var(--hong-ink);
	border-top: 2px solid var(--hong-ink);
	color: var(--hong-ink);
	font-size: 30px;
	font-style: italic;
	line-height: 1.25;
	margin: 56px 0;
	padding: 30px 0;
}

.hong-swiss-modern .entry-content blockquote::before {
	display: none;
}

.hong-swiss-modern .entry-meta,
.hong-swiss-modern .post-meta-info,
.hong-swiss-modern .related-meta {
	color: var(--hong-gray-600);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hong-swiss-modern .hero-tag,
.hong-swiss-modern .blog-cats,
.hong-swiss-modern .author {
	font-family: var(--hong-mono);
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hong-swiss-modern .hero-in-8,
.hong-swiss-modern .hero-t-5 {
	border-top: 2px solid var(--hong-ink);
}

.hong-swiss-modern .hero-t-5 .entry-title {
	background: none;
	font-size: clamp(34px, 3.5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 1;
	max-width: 1040px;
	min-height: 0;
	padding-right: 0;
	text-wrap: balance;
}

.hong-swiss-modern .hong-faq-question-label::before,
.hong-swiss-modern .hong-faq-question-label::after {
	content: none !important;
}

.hong-swiss-modern button,
.hong-swiss-modern input[type="button"],
.hong-swiss-modern input[type="reset"],
.hong-swiss-modern input[type="submit"],
.hong-swiss-modern .button,
.hong-swiss-modern .entry-content .button,
body.hong-swiss-modern .home-whatsapp {
	background: var(--hong-accent);
	border: 1px solid var(--hong-accent);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(18, 183, 106, 0.16);
	color: var(--hong-white);
	font-family: var(--hong-mono);
	font-size: clamp(15px, 1.05vw, 17px);
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.18;
	max-width: min(100%, 430px);
	min-height: 52px;
	padding: 15px 24px;
	text-transform: uppercase;
	white-space: normal;
}

body.hong-swiss-modern .home-whatsapp:visited {
	color: var(--hong-white);
}

.hong-swiss-modern button:hover,
.hong-swiss-modern input:hover[type="button"],
.hong-swiss-modern input:hover[type="reset"],
.hong-swiss-modern input:hover[type="submit"],
.hong-swiss-modern .button:hover,
.hong-swiss-modern .entry-content .button:hover,
.hong-swiss-modern .home-whatsapp:hover {
	background: var(--hong-accent-dark);
	border-color: var(--hong-accent-dark);
	color: var(--hong-white);
}

.hong-swiss-modern .relateds {
	margin: 72px auto 64px;
	max-width: min(100% - 40px, 1180px);
}

.hong-swiss-modern .relateds-t {
	max-width: none;
	padding: 0 0 24px;
	text-align: left;
}

.hong-swiss-modern .relateds-t::before {
	border-color: var(--hong-ink);
	top: auto;
	bottom: 0;
	transform: none;
}

.hong-swiss-modern .relateds-t h3 {
	background: transparent;
	display: inline-block;
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 0;
	text-transform: uppercase;
}

.hong-swiss-modern .relateds-w {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.hong-swiss-modern .related,
.hong-swiss-modern .related:nth-child(n) {
	background: var(--hong-white);
	border: 1px solid var(--hong-line);
	margin: 0;
	max-width: none;
	width: calc(33.333% - 16px);
}

/* Mobile related cards are full-width reading units, not a clipped carousel. */
@media (max-width: 700px) {
	.hong-swiss-modern .relateds-w {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		overflow: visible;
		padding-bottom: 0;
	}

	.hong-swiss-modern .related,
	.hong-swiss-modern .related:nth-child(n) {
		min-height: 0;
		width: 100%;
	}
}

.hong-swiss-modern .related img {
	filter: grayscale(100%);
	margin-bottom: 0;
	transition: filter 0.15s ease-in-out;
	width: 100%;
}

/* Block wrappers that keep wpautop from splitting the card's inline anchors.
   They must not introduce paragraph spacing of their own. */
.hong-swiss-modern .related-media,
.hong-swiss-modern .related-cta {
	margin: 0;
}

/* The link now sits inside .related-t rather than around it, so the heading
   stays the element that decides the card title's colour. */
.hong-swiss-modern .related-t a {
	color: inherit;
}

.hong-swiss-modern .related:hover img {
	filter: grayscale(0);
}

.hong-swiss-modern .related-w {
	font-size: 15px;
	font-weight: 400;
	padding: 28px;
}

.hong-swiss-modern .related-t {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	margin: 14px 0 18px;
}

.hong-swiss-modern .related-c {
	border-bottom: 0;
	color: var(--hong-accent-dark);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hong-swiss-modern .hong-archive-readmore {
	margin: 20px 0 0;
}

.hong-swiss-modern .hong-archive-readmore a {
	border-bottom: 0;
	color: var(--hong-accent-dark);
	font-family: var(--hong-mono);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hong-swiss-modern.blog .entry-title,
.hong-swiss-modern.archive .entry-title,
.hong-swiss-modern.search-results .entry-title {
	font-size: 34px;
	line-height: 1.14;
	margin-top: 24px;
}

.hong-swiss-modern.blog .entry-title a,
.hong-swiss-modern.archive .entry-title a,
.hong-swiss-modern.search-results .entry-title a {
	color: var(--hong-ink);
}

.hong-swiss-modern.search-results .archive-description {
	border-bottom: 1px solid var(--hong-line);
	margin: 0 0 36px;
	padding-bottom: 22px;
}

.hong-swiss-modern.search-results .archive-title {
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.02;
	margin: 0;
	text-wrap: balance;
}

.hong-swiss-modern .entry-content .wp-block-embed.is-type-video,
.hong-swiss-modern .entry-content .wp-block-video,
.hong-swiss-modern .entry-content .wp-video,
.hong-swiss-modern .entry-content .wp-video-shortcode,
.hong-swiss-modern .entry-content .mejs-container,
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtube.com"]),
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtube-nocookie.com"]),
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtu.be"]) {
	clear: both;
	float: none !important;
	margin: 56px auto !important;
	max-width: min(1080px, calc(100vw - 72px));
	text-align: center;
	width: 100%;
}

.hong-swiss-modern .entry-content .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.hong-swiss-modern .entry-content .wp-block-video,
.hong-swiss-modern .entry-content .wp-video-shortcode,
.hong-swiss-modern .entry-content .wp-video {
	margin: 0 auto;
	max-width: none;
	width: 100%;
}

.hong-swiss-modern .entry-content iframe[src*="youtube.com"],
.hong-swiss-modern .entry-content iframe[src*="youtube-nocookie.com"],
.hong-swiss-modern .entry-content iframe[src*="youtu.be"] {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto !important;
	float: none !important;
	left: auto;
	margin: 0 auto !important;
	max-width: none;
	position: static;
	transform: none;
	width: min(1080px, calc(100vw - 72px)) !important;
}

.hong-swiss-modern .entry-content .wp-block-video video,
.hong-swiss-modern .entry-content .wp-video-shortcode video,
.hong-swiss-modern .entry-content video.wp-video-shortcode,
.hong-swiss-modern .entry-content .wp-video video {
	display: block;
	float: none !important;
	height: auto !important;
	margin: 0 auto !important;
	max-width: min(1080px, calc(100vw - 72px));
	width: 100% !important;
}

.hong-swiss-modern .related a:focus-visible,
.hong-swiss-modern .related-w a:focus-visible {
	outline: 2px solid var(--hong-accent);
	outline-offset: 2px;
}

.hong-swiss-modern .wp-block-image:has(img.wp-image-19993) {
	margin: 72px auto;
	max-width: 980px;
	padding-left: 24px;
	padding-right: 24px;
}

.hong-swiss-modern img.wp-image-19993 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: min(900px, 100%);
	width: auto !important;
}

.hong-swiss-modern .h-authorbox-w {
	background: color-mix(in srgb, var(--hong-surface) 78%, var(--hong-paper) 22%);
	border-bottom: 1px solid var(--hong-line);
	border-top: 1px solid var(--hong-line);
	padding: clamp(34px, 5vw, 56px) 0;
}

.hong-swiss-modern .h-authorbox {
	font-size: 16px;
	line-height: 1.65;
	margin: 0 auto;
	max-width: 940px;
	padding: 0 24px;
	text-align: left;
}

.hong-swiss-modern .h-authorbox a,
.hong-swiss-modern .h-author-description a {
	font-size: inherit;
	line-height: inherit;
}

.hong-swiss-modern .h-authorbox a {
	text-underline-offset: 0.18em;
}

.hong-swiss-modern .h-authorbox::before {
	border-color: var(--hong-line);
	margin: 0 0 22px;
	width: 72px;
}

.hong-swiss-modern .hong-author-card__header {
	align-items: center;
	display: grid;
	gap: 16px 28px;
	grid-template-columns: minmax(260px, max-content) minmax(0, 1fr);
}

.hong-swiss-modern .aut-bio-link {
	align-items: center;
	display: inline-flex;
	gap: 18px;
	margin: 0;
	max-width: 100%;
	text-decoration: none;
}

.hong-swiss-modern .h-author-avatar {
	border: 1px solid var(--hong-line);
	border-radius: 999px;
	box-sizing: border-box;
	flex: 0 0 72px;
	height: 72px;
	margin: 0;
	overflow: hidden;
	width: 72px;
}

.hong-swiss-modern .h-author-avatar img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hong-swiss-modern h3.h-author-name {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.08;
	margin: 0;
}

.hong-swiss-modern .hong-author-card__registration {
	color: var(--hong-gray-600);
	font-size: 16px;
	line-height: 1.5;
	margin: 6px 0 0;
}

.hong-swiss-modern .hong-author-card__eyebrow {
	color: var(--hong-gray-600);
	font-family: var(--hong-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.hong-swiss-modern .sms-w {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: flex-end;
	margin: 0;
	text-align: right;
}

.hong-swiss-modern .sms {
	filter: grayscale(1) saturate(0.2);
	margin: 0 -1px 0 0;
	opacity: 0.58;
	transform: scale(0.78);
	transform-origin: left center;
	transition: filter 160ms ease, opacity 160ms ease;
}

.hong-swiss-modern .sms:hover,
.hong-swiss-modern .sms:focus-visible {
	filter: none;
	opacity: 0.9;
}

.hong-swiss-modern .h-author-description {
	color: var(--hong-gray-600);
	font-size: 16px;
	line-height: 1.68;
	margin: 18px 0 0 90px;
	max-width: 78ch;
}

.hong-swiss-modern .h-author-description p {
	margin-bottom: 0;
}

.hong-swiss-modern .hong-author-card__highlights {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 16px 0 0 90px;
	max-width: 78ch;
	padding: 0;
}

.hong-swiss-modern .hong-author-card__highlights li {
	font-size: 16px;
	line-height: 1.55;
}

.hong-swiss-modern .h-authorbox > .h-author-avatar {
	float: left;
	margin: 0 18px 12px 0;
}

.hong-swiss-modern .h-authorbox > h3.h-author-name {
	margin-bottom: 18px;
	padding-top: 8px;
}

@media (max-width: 640px) {
	.hong-swiss-modern .h-authorbox {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hong-swiss-modern .hong-author-card__header {
		grid-template-columns: 1fr;
	}

	.hong-swiss-modern .aut-bio-link {
		gap: 14px;
	}

	.hong-swiss-modern .h-author-avatar {
		flex-basis: 64px;
		height: 64px;
		width: 64px;
	}

	.hong-swiss-modern .sms-w,
	.hong-swiss-modern .h-author-description,
	.hong-swiss-modern .hong-author-card__highlights {
		margin-left: 0;
	}

	.hong-swiss-modern .sms-w {
		justify-content: flex-start;
		margin-top: 14px;
		text-align: left;
	}

}

.hong-swiss-modern .entry-content .card,
.hong-swiss-modern .entry-content .bento-item,
.hong-swiss-modern .entry-content .step,
.hong-swiss-modern .entry-content .faq-item {
	opacity: 1 !important;
	transform: none !important;
}

@media only screen and (max-width: 1199px) {
	.hong-swiss-modern .single-post .entry {
		padding-left: 5%;
		padding-right: 5%;
	}

	.hong-swiss-modern .related,
.hong-swiss-modern .related:nth-child(n) {
		width: calc(50% - 12px);
	}

}

@media only screen and (max-width: 1023px) {
	body.hong-swiss-modern {
		font-size: 16px;
	}

	.hong-swiss-modern h1,
.hong-swiss-modern .entry-title {
		font-size: 46px;
	}

	.hong-swiss-modern h2 {
		font-size: 34px;
	}

	.hong-swiss-modern.blog .entry-title,
.hong-swiss-modern.archive .entry-title,
.hong-swiss-modern.search-results .entry-title {
		font-size: 30px;
	}

	.hong-swiss-modern .site-header .wrap {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.hong-swiss-modern .top-left {
		box-sizing: border-box;
		float: none;
		padding-right: 0;
		width: 100%;
	}

	.hong-swiss-modern .hong-sitewide-notice__wrap {
		align-items: flex-start;
		box-sizing: border-box;
		flex-direction: column;
		padding: 9px 0;
		width: calc(100vw - 24px);
	}

	.hong-swiss-modern .hong-sitewide-notice__text {
		overflow-wrap: anywhere;
	}

	.hong-swiss-modern .hong-sitewide-notice__button {
		white-space: normal;
	}

	.hong-swiss-modern .top-ul {
		display: block;
	}

	.hong-swiss-modern .top-ul li,
.hong-swiss-modern .top-ul li.righty {
		display: flex;
		font-size: 15px;
		margin-right: 0;
		max-width: 100%;
		min-width: 0;
	}

	.hong-swiss-modern .top-ul li > a,
.hong-swiss-modern .top-ul li > span {
		font-size: 15px;
		max-width: 100%;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.hong-swiss-modern .js nav {
		border-color: var(--hong-line);
	}

	.hong-swiss-modern .js .site-header .genesis-nav-menu .menu-item a {
		background: var(--hong-white);
		color: var(--hong-ink);
	}

	.hong-swiss-modern .js .nav-primary .genesis-nav-menu,
.hong-swiss-modern .js .nav-primary .genesis-nav-menu .menu-item a {
		background: var(--hong-ink);
		color: var(--hong-white);
	}

}

@media only screen and (max-width: 767px) {
	.hong-swiss-modern .entry-content {
		font-size: 17px;
	}

	.hong-swiss-modern .hong-sitewide-notice__tail,
	.hong-swiss-modern .hong-sitewide-notice__button {
		display: none;
	}

	/* Keep one high-intent conversion action without restoring the old phone,
	   address and search stack. */
	body.hong-swiss-modern .top-bar {
		display: block !important;
	}

	body.hong-swiss-modern .top-bar .wrap {
		min-height: 0;
		padding: 5px 16px !important;
	}

	body.hong-swiss-modern .top-bar .top-left {
		padding-right: 0;
		width: 100%;
	}

	body.hong-swiss-modern .top-bar :is(.widget, .widget-wrap) {
		margin: 0;
	}

	body.hong-swiss-modern .top-bar .top-ul {
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		justify-content: center;
		width: 100%;
	}

	body.hong-swiss-modern .top-bar .top-ul::before,
	body.hong-swiss-modern .top-bar .top-ul::after,
	body.hong-swiss-modern .top-bar .top-ul > li,
	body.hong-swiss-modern .top-bar .top-form-full {
		display: none !important;
	}

	body.hong-swiss-modern .top-bar .top-ul > li.icon-whatsapp:not(.mob-hide) {
		display: inline-flex !important;
		margin: 0;
		min-height: 44px !important;
	}

	body.hong-swiss-modern .top-bar .top-ul .whatsapp-button__trigger {
		height: auto !important;
		min-height: 44px !important;
		white-space: nowrap;
	}

	.hong-swiss-modern .hong-sitewide-notice__wrap {
		padding: 9px 0;
	}

	/* Genesis clearfix pseudo-elements become flex items and otherwise add two gaps. */
	.hong-swiss-modern .hong-sitewide-notice__wrap::before,
	.hong-swiss-modern .hong-sitewide-notice__wrap::after {
		display: none;
	}

	.hong-swiss-modern .hong-sitewide-notice__text {
		font-size: 14px;
		white-space: nowrap;
	}

	.hong-swiss-modern .site-header .title-area {
		background-position: left center;
		background-size: 170px auto;
		min-height: 58px;
		width: 180px;
	}

	.hong-swiss-modern .site-header .wrap {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.hong-swiss-modern .site-header .menu-toggle {
		top: 50%;
		transform: translateY(-50%);
	}

	.hong-swiss-modern .related,
.hong-swiss-modern .related:nth-child(n) {
		width: 100%;
	}

	.hong-swiss-modern.blog .entry-title,
.hong-swiss-modern.archive .entry-title,
.hong-swiss-modern.search-results .entry-title {
		font-size: 26px;
		margin-top: 20px;
	}

	.hong-swiss-modern .wp-block-image:has(img.wp-image-19993) {
		margin: 48px auto;
		padding-left: 18px;
		padding-right: 18px;
	}

	.hong-swiss-modern .entry-content .wp-block-embed.is-type-video,
.hong-swiss-modern .entry-content .wp-block-video,
.hong-swiss-modern .entry-content .wp-video,
.hong-swiss-modern .entry-content .wp-video-shortcode,
.hong-swiss-modern .entry-content .mejs-container,
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtube.com"]),
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtube-nocookie.com"]),
.hong-swiss-modern .entry-content .wp-caption:has(> iframe[src*="youtu.be"]) {
		margin: 36px auto !important;
		max-width: calc(100vw - 28px);
	}

	.hong-swiss-modern .entry-content iframe[src*="youtube.com"],
.hong-swiss-modern .entry-content iframe[src*="youtube-nocookie.com"],
.hong-swiss-modern .entry-content iframe[src*="youtu.be"],
.hong-swiss-modern .entry-content .wp-block-video video,
.hong-swiss-modern .entry-content .wp-video-shortcode video,
.hong-swiss-modern .entry-content video.wp-video-shortcode,
.hong-swiss-modern .entry-content .wp-video video {
		width: calc(100vw - 28px) !important;
	}

}

@media (max-width: 1023px) {
	body.hong-swiss-modern .hong-sitewide-notice__wrap {
		align-items: center;
		padding-inline: 14px;
	}

	body.hong-swiss-modern .hong-sitewide-notice__text {
		font-size: 14px;
		line-height: 1.35;
		max-width: 100%;
		text-align: center;
	}

	body.hong-swiss-modern .hong-sitewide-notice__button {
		align-self: center;
		inline-size: auto !important;
		max-inline-size: calc(100vw - 28px);
		min-block-size: 38px;
		padding: 9px 18px;
		white-space: nowrap;
		width: auto !important;
	}

	body.hong-swiss-modern .site-header .menu-toggle {
		align-items: center;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		color: rgb(155, 35, 31);
		display: inline-flex !important;
		height: 44px;
		justify-content: center;
		line-height: 1;
		max-width: 44px;
		min-height: 0 !important;
		padding: 0 !important;
		right: 18px;
		width: 44px;
	}

	body.hong-swiss-modern .site-header .menu-toggle::before {
		color: rgb(155, 35, 31);
		display: block;
		font-size: 30px;
		height: 30px;
		line-height: 30px;
		margin: 0;
		text-align: center;
		width: 30px;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle,
body.hong-swiss-modern .nav-primary .sub-menu-toggle {
		align-items: center;
		background: rgba(155, 35, 31, 0.035) !important;
		border: 1px solid rgba(155, 35, 31, 0.16) !important;
		border-radius: 999px;
		box-shadow: none !important;
		color: rgb(155, 35, 31);
		display: inline-flex !important;
		float: none;
		font-size: 0 !important;
		height: 40px;
		justify-content: center;
		line-height: 1;
		max-width: 40px;
		min-height: 0 !important;
		padding: 0 !important;
		right: 10px;
		top: 4px;
		transform: none;
		width: 40px;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle::before,
body.hong-swiss-modern .nav-primary .sub-menu-toggle::before {
		background:
			linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat,
			linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
		content: "";
		display: block;
		font-family: inherit;
		font-size: 0;
		height: 12px;
		margin: 0;
		width: 12px;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle:hover,
body.hong-swiss-modern .site-header .sub-menu-toggle:focus,
body.hong-swiss-modern .nav-primary .sub-menu-toggle:hover,
body.hong-swiss-modern .nav-primary .sub-menu-toggle:focus {
		background: rgba(155, 35, 31, 0.1) !important;
		border-color: rgba(155, 35, 31, 0.28) !important;
		box-shadow: 0 0 0 3px rgba(155, 35, 31, 0.1) !important;
		color: rgb(155, 35, 31);
		outline: none;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle.activated,
body.hong-swiss-modern .nav-primary .sub-menu-toggle.activated {
		background: rgba(155, 35, 31, 0.12) !important;
		border-color: rgba(155, 35, 31, 0.3) !important;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle.activated::before,
body.hong-swiss-modern .nav-primary .sub-menu-toggle.activated::before {
		background:
			linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
	}

	body.hong-swiss-modern.js .site-header .genesis-nav-menu .menu-item-has-children > a,
body.hong-swiss-modern.js .nav-primary .genesis-nav-menu .menu-item-has-children > a {
		padding-right: 58px;
	}

}

@media (max-width: 1023px) {
	body.hong-swiss-modern .site-header .menu-toggle {
		background: rgba(255, 255, 255, 0.92) !important;
		border: 1px solid rgba(155, 35, 31, 0.14) !important;
		border-radius: 999px;
		color: rgb(155, 35, 31);
		height: 42px;
		max-width: 42px;
		right: 16px;
		width: 42px;
	}

	body.hong-swiss-modern .site-header .menu-toggle::before {
		background:
			linear-gradient(currentColor, currentColor) center top / 18px 2px no-repeat,
			linear-gradient(currentColor, currentColor) center / 18px 2px no-repeat,
			linear-gradient(currentColor, currentColor) center bottom / 18px 2px no-repeat;
		content: "";
		font-size: 0;
		height: 14px;
		line-height: 0;
		width: 18px;
	}

	body.hong-swiss-modern .site-header .menu-toggle.activated::before {
		background:
			linear-gradient(45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px)),
			linear-gradient(-45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
		height: 18px;
		width: 18px;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle,
body.hong-swiss-modern .nav-primary .sub-menu-toggle {
		background: rgba(255, 255, 255, 0.86) !important;
		border-color: rgba(155, 35, 31, 0.14) !important;
		height: 32px;
		max-width: 32px;
		right: 12px;
		top: 8px;
		width: 32px;
	}

	body.hong-swiss-modern .site-header .sub-menu-toggle::before,
body.hong-swiss-modern .nav-primary .sub-menu-toggle::before {
		background:
			linear-gradient(currentColor, currentColor) center / 1.5px 9px no-repeat,
			linear-gradient(currentColor, currentColor) center / 9px 1.5px no-repeat;
		height: 9px;
		width: 9px;
	}

	body.hong-swiss-modern.js .site-header .genesis-nav-menu .menu-item-has-children > a,
body.hong-swiss-modern.js .nav-primary .genesis-nav-menu .menu-item-has-children > a {
		padding-right: 48px;
	}

	body.hong-swiss-modern .top-bar .whatsapp-button__trigger,
body.hong-swiss-modern .site-header .whatsapp-button__trigger,
body.hong-swiss-modern .site-header a[href*="whatsapp"] {
		max-width: calc(100vw - 32px);
		width: auto !important;
	}

}

/* Sitewide editorial width system. */
body.hong-swiss-modern :is(.entry-content > p, .entry-content > ul, .entry-content > ol, .entry-content > blockquote) {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--hong-width-prose);
	width: var(--hong-box-prose);
}

body.hong-swiss-modern :is(.entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4) {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--hong-width-article);
	width: var(--hong-box-article);
}

body.hong-swiss-modern .author-box {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--hong-width-article);
	width: var(--hong-box-article);
}

body.hong-swiss-modern .hong-medication-atlas-v2 {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--hong-width-visual);
	transform: none;
	width: var(--hong-box-visual);
}

@media (max-width: 640px) {
	:root {
		--hong-page-gutter: 24px;
	}

}

/* Codex review: interactive diagnosis control floor, kept outside divergent home CSS owners. */
body.hong-main-v2--home .hgcond .hgmap-dx {
	font-size: 13px !important;
}
