/* ==========================================================================
   HD Showcase — shared styles for the Hoke Designs feature subsites.
   Tokens follow claude/brand-identity.md (v1.1) with Lexend as the system
   typeface. Component classes are prefixed hds-; landing pages are built
   from them in ordinary page content.
   ========================================================================== */

@font-face {
	font-family: "Lexend";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/lexend-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Lexend";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/lexend-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--hd-navy: #001b44;
	--hd-deep: #0b2b5c;
	--hd-blue: #136fa5;
	--hd-sky: #03a9f4;
	--hd-ice: #b3e0f2;
	--hd-teal: #127f86;
	--hd-aqua: #3ecfb2;
	--hd-coral: #ff6b4a;
	--hd-ember: #e14b2a;
	--hd-action: #105378;
	--hd-ink: #323643;
	--hd-slate: #5a6172;
	--hd-mist: #f4f7f9;
	--hd-line: #dfe5ea;
	--hd-white: #fff;

	--hds-font: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hds-wrap: 1200px;
	--hds-gutter: clamp(16px, 4vw, 40px);
	--hds-radius: 12px;
	--hds-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 12px 32px -12px rgba(0, 27, 68, .22);
	--hds-ease: cubic-bezier(.16, 1, .3, 1);
	--hds-header: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--hds-header) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
	margin: 0;
	background: var(--hd-white);
	color: var(--hd-slate);
	font-family: var(--hds-font);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; }
a { color: var(--hd-blue); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--hd-teal); }
:focus-visible { outline: 3px solid var(--hd-sky); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
	color: var(--hd-navy);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -.018em;
	margin: 0 0 .5em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.3rem); line-height: 1.04; letter-spacing: -.028em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.3rem; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 500; color: var(--hd-ink); }

.hds-skip {
	position: absolute; left: 16px; top: -60px; z-index: 100;
	background: var(--hd-navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.hds-skip:focus { top: 12px; }

.hds-wrap { width: 100%; max-width: calc(var(--hds-wrap) + 2 * var(--hds-gutter)); margin: 0 auto; padding: 0 var(--hds-gutter); }
.hds-narrow { max-width: 62ch; }
.hds-lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--hd-slate); }

/* ---------- Buttons ---------- */
.hds-btn {
	display: inline-flex; align-items: center; gap: .55em;
	padding: .9em 1.6em;
	border-radius: 999px;
	background: var(--hd-action);
	color: #fff;
	font: 500 15px/1.1 var(--hds-font);
	letter-spacing: .01em;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color .2s, color .2s, border-color .2s, transform .25s var(--hds-ease);
}
.hds-btn:hover { background: var(--hd-blue); color: #fff; transform: translateY(-1px); }
.hds-btn--coral { background: var(--hd-ember); }
.hds-btn--coral:hover { background: var(--hd-coral); color: var(--hd-navy); }
.hds-btn--ghost { background: transparent; color: var(--hd-action); border-color: currentColor; }
.hds-btn--ghost:hover { background: var(--hd-action); color: #fff; border-color: var(--hd-action); }
.hds-btn--light { background: #fff; color: var(--hd-navy); }
.hds-btn--light:hover { background: var(--hd-ice); color: var(--hd-navy); }
.hds-btn--sm { padding: .7em 1.2em; font-size: 14px; }
.hds-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Header ---------- */
.hds-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .92);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid rgba(0, 27, 68, .08);
}
.admin-bar .hds-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .hds-header { top: 46px; } }
.hds-header__inner {
	max-width: calc(var(--hds-wrap) + 2 * var(--hds-gutter));
	margin: 0 auto; padding: 0 var(--hds-gutter);
	height: var(--hds-header);
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hds-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.hds-brand__logo { display: flex; align-items: center; gap: 12px; color: var(--hd-navy); text-decoration: none; }
.hds-brand__logo .hds-mark { width: 50px; height: auto; flex: none; }
.hds-brand__logo .hds-wordmark { width: 150px; height: auto; }
.hds-brand__feature {
	padding-left: 14px; border-left: 1px solid var(--hd-line);
	color: var(--hd-teal); font-weight: 500; font-size: 16px; text-decoration: none; white-space: nowrap;
}
.hds-brand__feature:hover { color: var(--hd-blue); }

.hds-nav__toggle { display: none; }
.hds-nav__panel { display: flex; align-items: center; gap: 28px; }
.hds-nav__list { display: flex; gap: 24px; margin: 0; padding: 0; list-style: none; }
.hds-nav__list a { color: var(--hd-ink); font-weight: 400; font-size: 15px; text-decoration: none; }
.hds-nav__list a:hover, .hds-nav__list .current-menu-item > a { color: var(--hd-teal); }

/* Header dropdowns (one level) */
.hds-nav__list > li { position: relative; }
.hds-nav__list .menu-item-has-children > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-3px) rotate(45deg); opacity: .6; }
.hds-nav__list .sub-menu { list-style: none; margin: 0; padding: 8px; }
@media (min-width: 961px) {
	.hds-nav__list .sub-menu {
		position: absolute; top: calc(100% + 12px); left: -16px; z-index: 60; min-width: 280px;
		background: #fff; border-radius: 14px; box-shadow: 0 18px 40px -16px rgba(0, 27, 68, .35), 0 0 0 1px rgba(0, 27, 68, .06);
		opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .25s var(--hds-ease), visibility 0s .25s;
	}
	.hds-nav__list .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
	.hds-nav__list li:hover > .sub-menu, .hds-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.hds-nav__list .sub-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 15px; line-height: 1.3; }
	.hds-nav__list .sub-menu a:hover { background: var(--hd-mist); }
}
@media (max-width: 960px) {
	.hds-brand__logo .hds-wordmark { display: none; }
	.hds-nav__toggle {
		display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
		padding: 10px 14px; border-radius: 999px; border: 1px solid var(--hd-line);
		font-size: 15px; font-weight: 400; color: var(--hd-ink); background: #fff;
	}
	.hds-nav__bars, .hds-nav__bars::before, .hds-nav__bars::after {
		display: block; width: 16px; height: 2px; background: var(--hd-navy); border-radius: 2px; position: relative;
		transition: transform .25s var(--hds-ease), background-color .2s;
	}
	.hds-nav__bars::before, .hds-nav__bars::after { content: ""; position: absolute; left: 0; }
	.hds-nav__bars::before { top: -5px; }
	.hds-nav__bars::after { top: 5px; }
	.hds-nav.is-open .hds-nav__bars { background: transparent; }
	.hds-nav.is-open .hds-nav__bars::before { transform: translateY(5px) rotate(45deg); }
	.hds-nav.is-open .hds-nav__bars::after { transform: translateY(-5px) rotate(-45deg); }
	.hds-nav__panel {
		display: none;
		position: absolute; left: 0; right: 0; top: var(--hds-header);
		flex-direction: column; align-items: stretch; gap: 8px;
		padding: 12px var(--hds-gutter) 24px;
		background: #fff; border-bottom: 1px solid var(--hd-line);
		box-shadow: 0 24px 40px -24px rgba(0, 27, 68, .3);
	}
	.hds-nav.is-open .hds-nav__panel { display: flex; }
	.hds-nav__list { flex-direction: column; gap: 0; }
	.hds-nav__list a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--hd-mist); }
	.hds-nav__list .sub-menu { padding: 0 0 0 16px; }
	.hds-nav__list .sub-menu a { font-size: 16px; color: var(--hd-slate); }
	.hds-nav__list .menu-item-has-children > a::after { display: none; }
	.hds-nav__panel .hds-btn { align-self: flex-start; margin-top: 12px; }
}
@media (max-width: 420px) {
	.hds-brand__feature { font-size: 15px; padding-left: 10px; }
	.hds-nav__label { display: none; }
}

/* ---------- Sections ---------- */
.hds-section { padding: clamp(64px, 9vw, 120px) 0; }
.hds-section--mist { background: var(--hd-mist); }
.hds-section--tight { padding-top: clamp(40px, 5vw, 64px); }
.hds-kicker { display: block; margin-bottom: .9em; color: var(--hd-teal); font-weight: 500; font-size: 16px; letter-spacing: .01em; }
.hds-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.hds-head p { font-size: 1.12rem; }
.hds-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
@media (max-width: 900px) {
	.hds-split { grid-template-columns: 1fr; }
	.hds-split--flip > :first-child { order: 2; }
}

/* ---------- Trail hero ---------- */
.hds-hero {
	--scene-h: clamp(360px, 57svh, 580px);
	position: relative;
	overflow: hidden;
	min-height: clamp(640px, calc(100svh - var(--hds-header)), 900px);
	background: linear-gradient(180deg, #dff1fa 0%, #eef8fc 38%, #fff 78%);
	padding: clamp(40px, 5.5vw, 80px) 0 calc(var(--scene-h) * .5);
}
.hds-hero::before {
	/* low morning sun behind the range */
	content: ""; position: absolute; pointer-events: none;
	width: 70vw; height: 70vw; right: -10vw; top: -34vw;
	background: radial-gradient(circle, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, 0) 60%);
}
.hds-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 32px; align-items: start; }
.hds-hero__copy { max-width: 600px; }
.hds-hero__copy h1 { margin-bottom: .35em; }
.hds-hero__copy .hds-lede { color: var(--hd-ink); font-weight: 300; max-width: 34ch; margin-bottom: 1.6em; }
.hds-hero__scene { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: var(--scene-h); overflow: hidden; pointer-events: none; }
.hds-hero__stage {
	position: absolute; bottom: 0; left: 50%;
	width: max(100%, calc(var(--scene-h) * 1800 / 560));
	aspect-ratio: 1800 / 560;
	transform: translateX(-50%);
}
.hds-hero__stage svg { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }

.hds-trail__label {
	position: absolute; z-index: 2;
	transform: translate(18px, -50%);
	padding: 5px 12px 5px 10px;
	border-radius: 999px;
	background: #fff;
	color: var(--hd-ink);
	font-size: 14px; font-weight: 400; line-height: 1.2; white-space: nowrap;
	box-shadow: 0 6px 18px -8px rgba(0, 27, 68, .45);
	display: flex; align-items: center; gap: 7px;
	transition: background-color .35s, color .35s, transform .45s var(--hds-ease);
}
.hds-trail__label--left { transform: translate(calc(-100% - 18px), -50%); }
.hds-trail__label i { width: 8px; height: 8px; border-radius: 50%; background: var(--hd-line); transition: background-color .35s; }
.hds-trail__label.is-done i { background: var(--hd-aqua); }
.hds-trail__label.is-here { background: var(--hd-navy); color: #fff; }
.hds-trail__label.is-here i { background: var(--hd-coral); }
.hds-trail__label--summit { transform: translate(-50%, calc(-100% - 64px)); font-weight: 500; }
.hds-trail__label--summit.is-done { background: var(--hd-ember); color: #fff; }
.hds-trail__label--summit.is-done i { background: #fff; }

.hds-trail svg .wp circle { transition: fill .35s, stroke .35s, r .35s; }
.hds-trail svg .wp path { opacity: 0; transition: opacity .3s; }
.hds-trail svg .wp.is-done circle { fill: var(--hd-aqua); }
.hds-trail svg .wp.is-done path { opacity: 1; }
.hds-trail svg .flag { transform-box: fill-box; transform-origin: 0 100%; transition: transform .7s var(--hds-ease); }
.hds-trail:not(.is-complete) svg .flag { transform: scaleY(0); }
.hds-trail svg .burst circle { opacity: 0; }
.hds-trail.is-complete svg .burst circle { animation: hdsBurst 1.1s var(--hds-ease) forwards; }
@keyframes hdsBurst {
	0% { opacity: 1; transform: translate(0, 0) scale(.4); }
	100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1); }
}
.hds-trail svg .walker-ring { transform-box: fill-box; transform-origin: center; animation: hdsPulse 1.6s ease-out infinite; }
@keyframes hdsPulse { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(2.6); } }
.hds-trail.is-complete svg .walker { opacity: 0; transition: opacity .4s .4s; }

.hds-hud {
	position: relative; z-index: 3;
	justify-self: end;
	width: min(100%, 360px);
	margin-top: 24px;
	padding: 18px 20px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .86);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: var(--hds-shadow);
	border: 1px solid rgba(255, 255, 255, .9);
}
.hds-hud__eyebrow { margin: 0 0 2px; font-size: 13px; color: var(--hd-slate); }
.hds-hud__course { margin: 0 0 14px; color: var(--hd-navy); font-weight: 500; font-size: 16px; line-height: 1.3; }
.hds-hud__bar { height: 8px; border-radius: 999px; background: var(--hd-mist); overflow: hidden; }
.hds-hud__bar span { display: block; height: 100%; width: var(--p, 100%); border-radius: inherit; background: linear-gradient(90deg, var(--hd-aqua), var(--hd-teal)); }
.hds-hud__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 10px 0 0; font-size: 14px; }
.hds-hud__step { color: var(--hd-ink); font-weight: 400; }
.hds-hud__pct { font-variant-numeric: tabular-nums; color: var(--hd-teal); font-weight: 600; }
.hds-hud__replay {
	margin-top: 10px; padding: 0; border: 0; background: none; cursor: pointer;
	font: 400 14px/1 var(--hds-font); color: var(--hd-blue); text-decoration: underline; text-underline-offset: .2em;
}
.hds-hud__replay[hidden] { display: none; }

@media (max-width: 900px) {
	.hds-hero { --scene-h: clamp(300px, 80vw, 420px); min-height: 0; padding-bottom: 0; }
	.hds-hero__grid { grid-template-columns: 1fr; }
	.hds-hud { justify-self: start; margin-top: 0; }
	.hds-hero__scene { position: relative; margin-top: 44px; }
	/* keep the course peak centered on narrow screens */
	.hds-hero__stage { transform: translateX(-63.33%); }
}
@media (max-width: 720px) {
	.hds-trail__label { display: none; }
	.hds-trail__label--summit { display: flex; font-size: 12px; transform: translate(-50%, calc(-100% - 40px)); }
}

/* ---------- Course outline (live demo) ---------- */
.hds-outline {
	border-radius: 18px; overflow: hidden;
	background: #fff; box-shadow: var(--hds-shadow); border: 1px solid var(--hd-line);
}
.hds-outline__top { padding: 22px 24px 18px; background: var(--hd-navy); color: #c9dcf0; }
.hds-outline__top h3 { color: #fff; margin: 4px 0 10px; font-size: 1.25rem; }
.hds-outline__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0; font-size: 14px; }
.hds-outline ol { margin: 0; padding: 8px 0; list-style: none; counter-reset: lesson; }
.hds-outline li { counter-increment: lesson; }
.hds-outline li > a {
	display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center;
	padding: 14px 24px; color: var(--hd-ink); text-decoration: none; font-weight: 400;
	transition: background-color .2s;
}
.hds-outline li > a::before {
	content: counter(lesson);
	display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
	background: var(--hd-mist); color: var(--hd-navy); font-weight: 600; font-size: 15px;
	transition: background-color .2s, color .2s;
}
.hds-outline li > a:hover { background: var(--hd-mist); }
.hds-outline li > a:hover::before { background: var(--hd-aqua); color: var(--hd-navy); }
.hds-outline small { color: var(--hd-slate); font-size: 13px; white-space: nowrap; }
@media (max-width: 560px) {
	.hds-outline li > a { grid-template-columns: 34px 1fr; row-gap: 2px; padding: 12px 20px; }
	.hds-outline li > a::before { grid-row: span 2; }
	.hds-outline li > a small { grid-column: 2; }
	.hds-tree .t2 { margin-left: 14px; }
	.hds-tree .t3 { margin-left: 28px; }
}
.hds-outline__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 24px 20px; border-top: 1px solid var(--hd-line); flex-wrap: wrap; }
.hds-outline__foot p { margin: 0; font-size: 14px; }

/* ---------- Capability explorer (tabs) ---------- */
.hds-explorer { display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: clamp(20px, 4vw, 48px); align-items: start; }
.hds-explorer__tabs { display: flex; flex-direction: column; gap: 4px; position: sticky; top: calc(var(--hds-header) + 24px); }
.hds-explorer__tab {
	display: flex; align-items: center; gap: 12px; width: 100%;
	padding: 14px 16px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; text-align: left;
	font: 400 16px/1.3 var(--hds-font); color: var(--hd-ink);
	transition: background-color .2s, color .2s;
}
.hds-explorer__tab svg { width: 22px; height: 22px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; color: var(--hd-teal); }
.hds-explorer__tab:hover { background: #fff; }
.hds-explorer__tab[aria-selected="true"] { background: var(--hd-navy); color: #fff; font-weight: 500; }
.hds-explorer__tab[aria-selected="true"] svg { color: var(--hd-aqua); }
.hds-explorer__panel { background: #fff; border-radius: 20px; box-shadow: var(--hds-shadow); padding: clamp(24px, 4vw, 44px); min-height: 440px; }
.hds-explorer__panel[hidden] { display: none; }
.hds-explorer__panel h3 { font-size: 1.55rem; }
.hds-explorer__panel ul { margin: 0; padding-left: 1.1em; }
.hds-explorer__panel li { margin: .35em 0; }
.hds-explorer__panel li::marker { color: var(--hd-teal); }
.hds-explorer__art { margin: 0 0 28px; padding: 24px; border-radius: 14px; background: var(--hd-mist); min-height: 190px; display: grid; place-items: center; }
@media (prefers-reduced-motion: no-preference) {
	.hds-explorer__panel:not([hidden]) .hds-explorer__art > * { animation: hdsRise .6s var(--hds-ease) both; }
}
@keyframes hdsRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) {
	.hds-explorer { grid-template-columns: 1fr; }
	.hds-explorer__tabs { position: static; flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; margin: 0 calc(-1 * var(--hds-gutter)); padding-left: var(--hds-gutter); padding-right: var(--hds-gutter); }
	.hds-explorer__tab { flex: none; width: auto; scroll-snap-align: start; background: #fff; }
	.hds-explorer__panel { min-height: 0; }
}

/* Explorer art pieces */
.hds-tree { list-style: none; margin: 0; padding: 0; font-size: 15px; width: min(100%, 420px); }
.hds-tree li { display: flex; align-items: center; gap: 10px; padding: 7px 12px; margin: 5px 0; border-radius: 10px; background: #fff; color: var(--hd-ink); font-weight: 400; box-shadow: 0 1px 2px rgba(0, 27, 68, .06); }
.hds-tree li b { font-size: 11px; font-weight: 500; letter-spacing: .02em; padding: 2px 8px; border-radius: 999px; background: var(--hd-ice); color: var(--hd-navy); }
.hds-tree .t2 { margin-left: 28px; }
.hds-tree .t3 { margin-left: 56px; }
.hds-tree .t2 b { background: #d6f5ee; color: var(--hd-teal); }
.hds-tree .t3 b { background: #ffe3dc; color: var(--hd-ember); }

.hds-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 460px; }
.hds-chips span { padding: 8px 14px; border-radius: 999px; background: #fff; color: var(--hd-ink); font-size: 14px; font-weight: 400; box-shadow: 0 1px 2px rgba(0, 27, 68, .08); }
.hds-chips span:nth-child(3n + 1) { border-left: 3px solid var(--hd-aqua); }
.hds-chips span:nth-child(3n + 2) { border-left: 3px solid var(--hd-sky); }
.hds-chips span:nth-child(3n) { border-left: 3px solid var(--hd-coral); }

.hds-drip { width: min(100%, 460px); display: grid; gap: 10px; }
.hds-drip div { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: center; font-size: 14px; }
.hds-drip span { color: var(--hd-slate); font-size: 13px; }
.hds-drip p { margin: 0; padding: 10px 14px; border-radius: 10px; background: #fff; color: var(--hd-ink); display: flex; justify-content: space-between; gap: 10px; }
.hds-drip p em { font-style: normal; font-size: 12px; padding: 2px 8px; border-radius: 999px; background: #d6f5ee; color: var(--hd-teal); white-space: nowrap; }
.hds-drip .locked p { background: transparent; border: 1px dashed #b9c4d0; color: var(--hd-slate); }
.hds-drip .locked em { background: #eef1f4; color: var(--hd-slate); }

.hds-bars { width: min(100%, 460px); display: grid; gap: 12px; font-size: 14px; }
.hds-bars div { display: grid; grid-template-columns: 96px 1fr 44px; gap: 12px; align-items: center; color: var(--hd-ink); }
.hds-bars i { height: 10px; border-radius: 999px; background: #e3e9ef; overflow: hidden; position: relative; }
.hds-bars i::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, var(--hd-sky), var(--hd-blue)); }
@media (prefers-reduced-motion: no-preference) {
	.hds-explorer__panel:not([hidden]) .hds-bars i::after { animation: hdsGrow 1s var(--hds-ease) both; }
}
@keyframes hdsGrow { from { width: 0; } }
.hds-bars b { font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }

.hds-prices { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hds-prices div { min-width: 128px; padding: 16px 18px; border-radius: 12px; background: #fff; text-align: center; box-shadow: 0 1px 2px rgba(0, 27, 68, .08); font-size: 14px; }
.hds-prices b { display: block; color: var(--hd-navy); font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; }
.hds-prices div:nth-child(2) { outline: 2px solid var(--hd-aqua); }

/* ---------- Certificate ---------- */
.hds-cert {
	position: relative; aspect-ratio: 1.414 / 1; width: min(100%, 520px);
	padding: 7% 8%; border-radius: 6px; text-align: center;
	background:
		radial-gradient(circle at 12% 15%, rgba(62, 207, 178, .10), transparent 40%),
		radial-gradient(circle at 88% 85%, rgba(3, 169, 244, .10), transparent 40%),
		#fffdf9;
	box-shadow: 0 30px 50px -30px rgba(0, 27, 68, .45), 0 0 0 1px rgba(0, 27, 68, .08);
	display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hds-cert::before { content: ""; position: absolute; inset: 12px; border: 1.5px solid rgba(18, 127, 134, .45); border-radius: 3px; pointer-events: none; }
.hds-cert .hds-mark { width: 64px; margin-bottom: 8px; }
.hds-cert__title { margin: 0; color: var(--hd-teal); font-size: clamp(12px, 1.4vw, 14px); font-weight: 500; letter-spacing: .08em; }
.hds-cert__name {
	margin: .25em 0 .1em; color: var(--hd-navy); font-weight: 600; letter-spacing: -.02em;
	font-size: clamp(1.4rem, 3.6vw, 2.2rem); line-height: 1.1; min-height: 1.1em;
	overflow-wrap: anywhere;
}
.hds-cert__line { width: 60%; height: 1px; background: var(--hd-line); margin: 6px 0 10px; }
.hds-cert__body { margin: 0; font-size: clamp(12px, 1.5vw, 15px); line-height: 1.4; }
.hds-cert__foot { display: flex; justify-content: space-between; width: 100%; margin-top: auto; font-size: 11px; color: var(--hd-slate); }
.hds-cert__seal {
	position: absolute; right: 9%; bottom: 22%; width: clamp(34px, 11%, 58px); aspect-ratio: 1; border-radius: 50%;
	background: conic-gradient(from 0deg, var(--hd-coral), var(--hd-ember), var(--hd-coral));
	display: grid; place-items: center; color: #fff; font-size: clamp(14px, 3vw, 22px);
	box-shadow: 0 6px 14px -6px rgba(225, 75, 42, .6);
}
.hds-field { display: grid; gap: 6px; margin: 0 0 24px; max-width: 360px; }
.hds-field label { font-size: 15px; color: var(--hd-ink); font-weight: 400; }
.hds-field input {
	font: 400 17px/1.3 var(--hds-font); padding: 12px 16px; border-radius: 12px;
	border: 1.5px solid #c9d3dd; background: #fff; color: var(--hd-navy);
}
.hds-field input:focus { outline: none; border-color: var(--hd-teal); box-shadow: 0 0 0 4px rgba(62, 207, 178, .25); }

/* ---------- Quiz ---------- */
.hds-quiz { background: #fff; border-radius: 20px; box-shadow: var(--hds-shadow); padding: clamp(24px, 4vw, 40px); }
.hds-quiz__piles { display: flex; justify-content: center; align-items: flex-end; gap: clamp(20px, 5vw, 48px); padding: 18px 0 22px; margin-bottom: 18px; border-bottom: 1px solid var(--hd-line); }
.hds-quiz__piles div { display: flex; flex-direction: column-reverse; align-items: center; gap: 5px; }
.hds-quiz__piles i { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #8fb6de, #2957a4 70%); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15); }
.hds-quiz__piles small { order: -1; margin-top: 6px; font-size: 12px; color: var(--hd-slate); }
.hds-quiz fieldset { border: 0; margin: 0; padding: 0; }
.hds-quiz legend { color: var(--hd-navy); font-weight: 500; font-size: 1.1rem; line-height: 1.4; margin-bottom: 14px; }
.hds-quiz__opt {
	display: flex; gap: 12px; align-items: center; width: 100%; margin: 8px 0; padding: 14px 16px;
	border-radius: 12px; border: 1.5px solid var(--hd-line); background: #fff; cursor: pointer; text-align: left;
	font: 400 16px/1.35 var(--hds-font); color: var(--hd-ink);
	transition: border-color .2s, background-color .2s;
}
.hds-quiz__opt:hover { border-color: var(--hd-sky); }
.hds-quiz__opt::before { content: ""; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #b6c2cf; flex: none; transition: border-color .2s, background-color .2s, box-shadow .2s; }
.hds-quiz__opt[aria-pressed="true"].is-right { border-color: var(--hd-teal); background: #eafaf6; }
.hds-quiz__opt[aria-pressed="true"].is-right::before { border-color: var(--hd-teal); background: var(--hd-teal); box-shadow: inset 0 0 0 3px #eafaf6; }
.hds-quiz__opt[aria-pressed="true"].is-wrong { border-color: var(--hd-ember); background: #fff1ed; }
.hds-quiz__opt[aria-pressed="true"].is-wrong::before { border-color: var(--hd-ember); background: var(--hd-ember); box-shadow: inset 0 0 0 3px #fff1ed; }
.hds-quiz__result { margin: 14px 0 0; padding: 14px 16px; border-radius: 12px; background: var(--hd-mist); font-size: 15px; }
.hds-quiz__result[hidden] { display: none; }
.hds-quiz__result strong { display: block; margin-bottom: 2px; }

/* ---------- Use cases ---------- */
.hds-uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 0 clamp(24px, 5vw, 64px); margin: 0; padding: 0; list-style: none; }
.hds-uses li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--hd-line); }
.hds-uses svg { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--hd-ice); stroke: var(--hd-navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hds-uses li:nth-child(4n + 2) svg { background: #d6f5ee; stroke: var(--hd-teal); }
.hds-uses li:nth-child(4n + 3) svg { background: #ffe3dc; stroke: var(--hd-ember); }
.hds-uses h3 { font-size: 1.1rem; margin: 2px 0 4px; }
.hds-uses p { margin: 0; font-size: 16px; }

/* ---------- Steps ---------- */
.hds-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: step; position: relative; }
.hds-steps::before { content: ""; position: absolute; top: 22px; left: 23px; right: calc(25% - 23px); height: 2px; background: repeating-linear-gradient(90deg, var(--hd-ice) 0 8px, transparent 8px 16px); }
.hds-steps li { counter-increment: step; position: relative; padding-right: 28px; }
.hds-steps li::before {
	content: counter(step); display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 20px;
	border-radius: 50%; background: var(--hd-navy); color: #fff; font-weight: 600; font-size: 17px; position: relative;
	box-shadow: 0 0 0 6px #fff;
}
.hds-section--mist .hds-steps li::before { box-shadow: 0 0 0 6px var(--hd-mist); }
.hds-steps li:last-child::before { background: var(--hd-ember); }
.hds-steps h3 { font-size: 1.1rem; }
.hds-steps p { font-size: 16px; margin: 0; }
@media (max-width: 860px) {
	.hds-steps { grid-template-columns: 1fr; gap: 28px; }
	.hds-steps::before { top: 22px; bottom: 22px; left: 22px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--hd-ice) 0 8px, transparent 8px 16px); }
	.hds-steps li { display: grid; grid-template-columns: 46px 1fr; column-gap: 20px; padding-right: 0; }
	.hds-steps li::before { grid-row: span 2; margin: 0; }
}

/* ---------- Photo CTA band ---------- */
.hds-band {
	position: relative; isolation: isolate; overflow: hidden;
	color: #dbe8f5; padding: clamp(80px, 12vw, 150px) 0;
	background: var(--hd-navy);
}
.hds-band__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hds-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(0, 27, 68, .94) 0%, rgba(0, 27, 68, .78) 45%, rgba(19, 111, 165, .25) 100%); }
.hds-band h2 { color: #fff; max-width: 16ch; }
.hds-band p { max-width: 46ch; font-size: 1.15rem; }
.hds-band a:not(.hds-btn) { color: #fff; }
.hds-band__phone { color: #fff; font-weight: 400; }

/* ---------- Generic pages (feature software output) ---------- */
.hds-page { max-width: calc(var(--hds-wrap) + 2 * var(--hds-gutter)); margin: 0 auto; padding: clamp(40px, 6vw, 72px) var(--hds-gutter) clamp(64px, 8vw, 110px); }
.hds-page--center { text-align: center; max-width: 720px; }
.hds-page__head { margin-bottom: 28px; }
.hds-page__head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.hds-entry { max-width: 900px; margin: 0 auto; }
.hds-prose { max-width: none; }
.hds-prose > * + * { margin-top: 1em; }
.hds-prose img { border-radius: 10px; }
.hds-prose table { border-collapse: collapse; width: 100%; font-size: 16px; }
.hds-prose th, .hds-prose td { border-bottom: 1px solid var(--hd-line); padding: 10px 8px; text-align: left; }
.hds-card-link { padding: 24px 0; border-bottom: 1px solid var(--hd-line); }
.hds-card-link h2 { font-size: 1.4rem; margin-bottom: .3em; }
.hds-card-link h2 a { color: var(--hd-navy); text-decoration: none; }

/* ---------- Dusk hero (events) ---------- */
.hds-hero--dusk {
	min-height: 0;
	padding: clamp(48px, 6.5vw, 96px) 0 clamp(110px, 12vw, 170px);
	background: radial-gradient(120% 90% at 78% 0%, #0b3a78 0%, #001b44 52%, #000f2b 100%);
	color: #c9dcf0;
}
.hds-hero--dusk::before { display: none; }
.hds-hero--dusk h1 { color: #fff; }
.hds-hero--dusk .hds-kicker { color: var(--hd-aqua); }
.hds-hero--dusk .hds-hero__copy .hds-lede { color: #d7e5f4; }
.hds-hero--dusk .hds-hero__grid { align-items: center; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); }
.hds-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.hds-btn--ghost-light:hover { background: #fff; color: var(--hd-navy); border-color: #fff; }
.hds-aurora { position: absolute; inset: -30% -10% auto -10%; height: 90%; pointer-events: none; filter: blur(46px); opacity: .6; }
.hds-aurora i { position: absolute; border-radius: 50%; mix-blend-mode: screen; }
.hds-aurora i:nth-child(1) { width: 62%; height: 42%; left: 34%; top: 14%; background: radial-gradient(closest-side, rgba(62, 207, 178, .75), transparent); }
.hds-aurora i:nth-child(2) { width: 46%; height: 34%; left: 58%; top: 30%; background: radial-gradient(closest-side, rgba(3, 169, 244, .6), transparent); }
.hds-aurora i:nth-child(3) { width: 36%; height: 30%; left: 6%; top: 8%; background: radial-gradient(closest-side, rgba(255, 107, 74, .32), transparent); }
@media (prefers-reduced-motion: no-preference) {
	.hds-aurora i { animation: hdsAurora 19s ease-in-out infinite alternate; }
	.hds-aurora i:nth-child(2) { animation-duration: 24s; animation-delay: -6s; }
	.hds-aurora i:nth-child(3) { animation-duration: 29s; animation-delay: -11s; }
}
@keyframes hdsAurora { from { transform: translate3d(-5%, 0, 0) scale(1) rotate(-5deg); } to { transform: translate3d(7%, 5%, 0) scale(1.18) rotate(6deg); } }
.hds-hero__ridge { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; width: 100%; height: clamp(70px, 9vw, 130px); display: block; pointer-events: none; }
@media (max-width: 900px) { .hds-hero--dusk .hds-hero__grid { grid-template-columns: 1fr; } }

/* ---------- Calendar view switcher ---------- */
.hds-views { position: relative; z-index: 2; background: #fff; color: var(--hd-ink); border-radius: 18px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .08); overflow: hidden; }
.hds-views__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 14px 16px; border-bottom: 1px solid var(--hd-line); }
.hds-views__title { font-weight: 600; color: var(--hd-navy); font-size: 17px; }
.hds-views__tabs { display: flex; gap: 4px; padding: 3px; background: var(--hd-mist); border-radius: 999px; }
.hds-views__tab { border: 0; background: transparent; border-radius: 999px; padding: 7px 13px; font: 400 14px/1 var(--hds-font); color: var(--hd-slate); cursor: pointer; transition: background-color .2s, color .2s; }
.hds-views__tab[aria-selected="true"] { background: var(--hd-navy); color: #fff; font-weight: 500; }
.hds-views__stage { position: relative; height: 380px; }
.hds-views__panel { position: absolute; inset: 0; padding: 14px 16px 16px; overflow: hidden; background: #fff; }
.hds-views__panel[hidden] { display: block; visibility: hidden; opacity: 0; }
.hds-views__panel { transition: opacity .45s var(--hds-ease), transform .45s var(--hds-ease), visibility 0s; }
.hds-views__panel[hidden] { transform: translateY(10px); transition: opacity .3s, transform .3s, visibility 0s .3s; }
.hds-cal { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 3px; font-size: 12px; }
.hds-cal b { font-weight: 500; color: var(--hd-slate); text-align: center; padding: 2px 0 6px; font-size: 11px; }
.hds-cal > span { min-height: 58px; padding: 4px 5px; border-radius: 6px; background: var(--hd-mist); color: var(--hd-ink); position: relative; }
.hds-cal > span.out { background: transparent; color: #b7c1cc; }
.hds-cal em { display: block; margin-top: 3px; padding: 2px 5px; border-radius: 4px; font-style: normal; font-size: 10.5px; line-height: 1.25; color: #fff; background: var(--hd-blue); overflow: hidden; }
.hds-cal em.span { white-space: nowrap; }
.hds-cal em.c { background: var(--hd-ember); }
.hds-cal em.t { background: var(--hd-teal); }
.hds-cal em.span { border-radius: 0; margin-left: -8px; margin-right: -8px; padding-left: 8px; }
.hds-cal em.span.first { border-radius: 4px 0 0 4px; margin-left: 0; padding-left: 5px; overflow: visible; position: relative; z-index: 1; }
.hds-cal em.span.last { border-radius: 0 4px 4px 0; margin-right: 0; }
.hds-cal > span.today { outline: 2px solid var(--hd-aqua); outline-offset: -2px; }
.hds-vlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hds-vlist li { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; padding: 8px 10px; border-radius: 10px; background: var(--hd-mist); }
.hds-vlist time { display: grid; place-items: center; line-height: 1; padding: 6px 0; border-radius: 8px; background: #fff; color: var(--hd-ember); font-size: 11px; font-weight: 500; }
.hds-vlist time b { color: var(--hd-navy); font-size: 20px; font-weight: 600; margin-top: 2px; }
.hds-vlist strong { display: block; font-size: 14px; line-height: 1.3; color: var(--hd-navy); }
.hds-vlist small { font-size: 12px; color: var(--hd-slate); }
.hds-vphoto { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 100%; }
.hds-vphoto figure { position: relative; margin: 0; border-radius: 10px; overflow: hidden; background: var(--hd-navy); }
.hds-vphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hds-vphoto figcaption { position: absolute; inset: auto 0 0 0; padding: 22px 10px 8px; color: #fff; font-size: 12px; line-height: 1.3; background: linear-gradient(transparent, rgba(0, 27, 68, .85)); }
.hds-vphoto figcaption b { display: block; font-size: 11px; color: var(--hd-aqua); font-weight: 500; }
.hds-vmap { position: relative; height: 100%; border-radius: 10px; overflow: hidden; background: #cfe7f5; }
.hds-vmap svg { width: 100%; height: 100%; display: block; }
.hds-vmap__pop { position: absolute; left: 48%; top: 7%; width: 210px; padding: 10px 12px; border-radius: 10px; background: #fff; box-shadow: var(--hds-shadow); font-size: 12px; line-height: 1.35; }
.hds-vmap__pop strong { display: block; color: var(--hd-navy); font-size: 13px; }
@media (max-width: 560px) {
	.hds-views__stage { height: 340px; }
	.hds-views__tab { padding: 7px 10px; font-size: 13px; }
	.hds-cal > span { min-height: 46px; padding: 3px; }
	.hds-cal em { font-size: 0; height: 6px; padding: 0; margin-top: 4px; }
	.hds-cal em.span { margin-left: -5px; margin-right: -5px; }
	.hds-vmap__pop { left: 30%; }
}

/* ---------- Upcoming events (live) ---------- */
.hds-events { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 20px; }
.hds-event a { display: flex; flex-direction: column; height: 100%; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--hds-shadow); color: var(--hd-ink); text-decoration: none; transition: transform .3s var(--hds-ease), box-shadow .3s; }
.hds-event a:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 22px 40px -16px rgba(0, 27, 68, .35); color: var(--hd-ink); }
.hds-event__img { position: relative; aspect-ratio: 16 / 10; background: var(--hd-navy); }
.hds-event__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hds-event__date { z-index: 1; }
.hds-event__date { position: absolute; left: 12px; bottom: -22px; display: grid; place-items: center; width: 54px; padding: 6px 0; border-radius: 10px; background: #fff; box-shadow: 0 8px 20px -8px rgba(0, 27, 68, .45); line-height: 1; color: var(--hd-ember); font-size: 12px; font-weight: 500; }
.hds-event__date b { color: var(--hd-navy); font-size: 22px; font-weight: 600; margin-top: 3px; }
.hds-event__body { padding: 32px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hds-event__body h3 { font-size: 1.05rem; margin: 0; }
.hds-event__body p { margin: 0; font-size: 14px; line-height: 1.45; }
.hds-event__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.hds-chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; background: var(--hd-mist); color: var(--hd-teal); font-size: 12px; font-weight: 500; }
.hds-chip--coral { background: #ffe9e3; color: var(--hd-ember); }
.hds-chip--sky { background: #e2f4fc; color: var(--hd-blue); }

/* ---------- Course catalog (live) ---------- */
.hds-courses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr)); gap: 24px; }
.hds-course a { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); height: 100%; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--hds-shadow); color: var(--hd-ink); text-decoration: none; transition: transform .3s var(--hds-ease), box-shadow .3s; }
.hds-course a:hover { transform: translateY(-3px); color: var(--hd-ink); box-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 22px 40px -16px rgba(0, 27, 68, .35); }
.hds-course__img { position: relative; min-height: 220px; background: var(--hd-navy); }
.hds-course__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hds-course__access { position: absolute; left: 12px; top: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(0, 27, 68, .82); color: #fff; font-size: 12px; font-weight: 500; }
.hds-course__body { padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 6px; }
.hds-course__cat { color: var(--hd-teal); font-size: 13px; font-weight: 500; }
.hds-course__body h3 { margin: 0; font-size: 1.15rem; }
.hds-course__body p { margin: 0; font-size: 15px; line-height: 1.5; }
.hds-course__meta { color: var(--hd-slate); font-size: 13px !important; }
@media (max-width: 560px) { .hds-course a { grid-template-columns: 1fr; } .hds-course__img { min-height: 0; aspect-ratio: 16 / 9; } }

/* ---------- Recurrence builder ---------- */
.hds-recur { background: #fff; border-radius: 20px; box-shadow: var(--hds-shadow); padding: clamp(22px, 4vw, 36px); }
.hds-recur__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 16px; color: var(--hd-ink); }
.hds-recur select { font: 400 16px/1.2 var(--hds-font); color: var(--hd-navy); padding: 10px 34px 10px 14px; border-radius: 12px; border: 1.5px solid #c9d3dd; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23127f86' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 12px center; -webkit-appearance: none; appearance: none; cursor: pointer; }
.hds-recur select:focus { outline: none; border-color: var(--hd-teal); box-shadow: 0 0 0 4px rgba(62, 207, 178, .25); }
.hds-recur__rule { margin: 20px 0 14px; color: var(--hd-navy); font-weight: 500; font-size: 1.1rem; }
.hds-recur__dates { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; }
.hds-recur__dates li { display: grid; place-items: center; padding: 10px 4px; border-radius: 12px; background: var(--hd-mist); line-height: 1.1; font-size: 12px; color: var(--hd-slate); }
.hds-recur__dates li b { font-size: 22px; font-weight: 600; color: var(--hd-navy); margin: 2px 0; }
.hds-recur__dates li i { font-style: normal; color: var(--hd-ember); font-weight: 500; }
@media (prefers-reduced-motion: no-preference) {
	.hds-recur__dates li { animation: hdsRise .5s var(--hds-ease) both; }
	.hds-recur__dates li:nth-child(2) { animation-delay: .04s; } .hds-recur__dates li:nth-child(3) { animation-delay: .08s; }
	.hds-recur__dates li:nth-child(4) { animation-delay: .12s; } .hds-recur__dates li:nth-child(5) { animation-delay: .16s; }
	.hds-recur__dates li:nth-child(6) { animation-delay: .2s; }
}

/* ---------- Feature software: events calendar ---------- */
.tribe-common, .tribe-events, .tribe-events-pro { --tec-font-family-sans-serif: var(--hds-font); --tec-font-family-base: var(--hds-font); --tec-color-accent-primary: #136fa5; --tec-color-accent-primary-hover: #105378; --tec-color-link-accent: #136fa5; --tec-color-button-primary: #105378; }
.tribe-common a, .tribe-events a { text-decoration: none; }
.tribe-events-single, .tribe-events-single h1, .tribe-events-single h2, .tribe-events-single h3, .tribe-events-back a, .tribe-events-meta-group, .tribe-events-schedule h2 { font-family: var(--hds-font) !important; }
.tribe-events-single .tribe-events-single-event-title { color: var(--hd-navy); font-weight: 600; letter-spacing: -.02em; }
.tribe-events-single .tribe-events-back a { color: var(--hd-teal); font-weight: 500; }
.tribe-events-single img { border-radius: 14px; }
#tribe-events-pg-template.tribe-events-pg-template, .tribe-events-pg-template { max-width: none; margin: 0; padding: 0; }
.hds-ev .tribe-events-c-subscribe-dropdown__container, .hds-ev .tribe-events-cal-links { display: none; }

/* ---------- Feature software: course platform ---------- */
.learndash-wrapper, .ld-focus, .ld_course_grid { font-family: var(--hds-font); }
.ld-focus-content h1, .learndash-wrapper h1 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.ld_course_grid .btn-primary {
	display: inline-flex !important; justify-content: center; padding: .7em 1.2em !important;
	border: 0 !important; border-radius: 999px !important; background: var(--hd-action) !important;
	color: #fff !important; font: 500 14px/1.1 var(--hds-font) !important; text-decoration: none !important;
}
.ld_course_grid .btn-primary:hover { background: var(--hd-blue) !important; }
.ld_course_grid article, .ld_course_grid .thumbnail { border-radius: 14px !important; overflow: hidden; }
.ld_course_grid .entry-title { font-weight: 600; letter-spacing: -.01em; }

/* ---------- Footer ---------- */
.hds-footer { position: relative; background: var(--hd-navy); color: #a9bdd6; font-size: 15px; margin-top: 60px; }
.hds-band + .hds-footer, .hds-is-landing .hds-footer { margin-top: 0; }
.hds-footer__ridge { position: absolute; left: 0; bottom: 100%; width: 100%; height: 60px; display: block; }
.hds-footer__ridge polygon:nth-child(odd) { fill: var(--hd-navy); }
.hds-footer__ridge polygon:nth-child(even) { fill: #06265a; }
.hds-band + .hds-footer .hds-footer__ridge { display: none; }
.hds-footer__inner {
	max-width: calc(var(--hds-wrap) + 2 * var(--hds-gutter)); margin: 0 auto; padding: 64px var(--hds-gutter) 40px;
	display: grid; grid-template-columns: minmax(240px, 1fr) minmax(0, 2.2fr); gap: clamp(32px, 6vw, 80px);
}
.hds-footer a { color: #e4eef8; text-decoration: none; }
.hds-footer a:hover { color: var(--hd-aqua); }
.hds-footer__logo { display: block; color: #fff; width: 190px; margin-bottom: 10px; }
.hds-footer__logo svg { width: 100%; height: auto; }
.hds-footer__tag { color: var(--hd-aqua); font-weight: 500; margin-bottom: 1.2em; }
.hds-footer__contact { line-height: 1.7; }
.hds-footer__features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.hds-footer__group h2 { color: #fff; font-size: 15px; font-weight: 500; letter-spacing: 0; margin: 0 0 14px; }
.hds-footer__group ul { margin: 0; padding: 0; list-style: none; }
.hds-footer__group li { margin: 0 0 9px; line-height: 1.35; }
.hds-footer__group a[aria-current="page"] { color: var(--hd-aqua); }
.hds-footer__group a[aria-current="page"]::after { content: " \2022"; }
.hds-footer__base {
	max-width: calc(var(--hds-wrap) + 2 * var(--hds-gutter)); margin: 0 auto; padding: 20px var(--hds-gutter) 32px;
	display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 14px;
	background: linear-gradient(rgba(169, 189, 214, .18), rgba(169, 189, 214, .18)) center top / calc(100% - 2 * var(--hds-gutter)) 1px no-repeat;
}
@media (max-width: 1000px) {
	.hds-footer__inner { grid-template-columns: 1fr; }
	.hds-footer__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) { .hds-footer__features { grid-template-columns: 1fr 1fr; gap: 20px 16px; } }

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

/* ---------- Icons + pills (shared) ---------- */
.hds-ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; }
.hds-pill { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--hd-line); background: #fff; color: var(--hd-ink); font: 500 14px/1 var(--hds-font); text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .25s var(--hds-ease), box-shadow .25s; }
.hds-pill:hover { border-color: var(--c, var(--hd-blue)); color: var(--c, var(--hd-blue)); transform: translateY(-1px); box-shadow: 0 6px 16px -8px rgba(0, 27, 68, .35); }
.hds-pill--solid, .hds-pill--solid:hover { background: var(--hd-navy); border-color: var(--hd-navy); color: #fff; }
.hds-pill--solid:hover { background: var(--hd-action); border-color: var(--hd-action); }
.hds-pill--cat { background: var(--c-soft); border-color: transparent; color: var(--c); }
.hds-pill--light { background: #fff; border-color: #fff; color: var(--hd-navy); }
.hds-pill--glass, .hds-pill--glass:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); color: #fff; cursor: default; transform: none; box-shadow: none; }
.hds-pill--glass .hds-ico { color: var(--hd-aqua); }
.hds-pill.is-done, .hds-pill.is-done:hover { background: var(--hd-teal); border-color: var(--hd-teal); color: #fff; }

/* ---------- Event page ---------- */
.hds-ev { --c: var(--hd-blue); --c-soft: #e2f0fa; --ev-w: min(80vw, 1560px); padding-bottom: clamp(48px, 6vw, 88px); }
.hds-ev__wrap { width: var(--ev-w); margin: 0 auto; }
@media (max-width: 1100px) { .hds-ev { --ev-w: calc(100% - 2 * var(--hds-gutter)); } }
.hds-ev h1, .hds-ev h2, .hds-ev h3 { font-family: var(--hds-font); }

.hds-ev__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; margin-top: 16px; padding: 5px; border-radius: 999px; background: var(--hd-mist); border: 1px solid var(--hd-line); }
.hds-ev__bar-group { display: flex; flex-wrap: wrap; gap: 4px; }
.hds-ev__bar .hds-pill { min-height: 36px; border-color: transparent; background: transparent; }
.hds-ev__bar .hds-pill:hover { background: #fff; box-shadow: 0 4px 12px -8px rgba(0, 27, 68, .4); }
.hds-ev__bar .hds-pill--solid { background: var(--hd-navy); color: #fff; }
.hds-ev__bar .hds-pill--solid:hover { background: var(--hd-action); color: #fff; }
.hds-ev__bar .hds-pill--cat { background: var(--c-soft); }
.hds-ev__bar .hds-pill.is-done { background: var(--hd-teal); color: #fff; }
@media (max-width: 760px) {
	.hds-ev__bar { border-radius: 20px; }
	.hds-ev__bar-group { width: 100%; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
	.hds-ev__bar-group::-webkit-scrollbar { display: none; }
}

.hds-ev__hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 72px); align-items: center; padding: clamp(24px, 3.2vw, 44px) 0 clamp(28px, 4vw, 52px); }
.hds-ev__kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--c); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hds-ev__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c); }
@media (prefers-reduced-motion: no-preference) { .hds-ev__dot { animation: hdsPing 2.4s ease-out infinite; } }
@keyframes hdsPing { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 55%, transparent); } 70%, 100% { box-shadow: 0 0 0 12px transparent; } }
.hds-ev__title { font-size: clamp(2.2rem, 4.2vw, 4rem); margin: 0 0 .35em; }
.hds-ev__lede { font-size: clamp(1.08rem, 1.5vw, 1.3rem); max-width: 48ch; margin: 0; }
.hds-ev__chips { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hds-ev__chips li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--hd-line); color: var(--hd-ink); font-size: 14.5px; line-height: 1.3; }
.hds-ev__chips .hds-ico { color: var(--c); }
.hds-ev__chips li.is-accent { background: var(--c-soft); border-color: transparent; color: var(--c); font-weight: 500; }
.hds-ev__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 28px; }
.hds-ev__status { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--hd-teal); }
.hds-ev__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.hds-ev__status:empty { display: none; }
.hds-ev__status.is-live { color: var(--hd-ember); }
.hds-ev__status.is-past { color: var(--hd-slate); }

.hds-ev__art { position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: 28px; overflow: hidden; background: var(--c-soft); box-shadow: 0 34px 60px -32px rgba(0, 27, 68, .5), 0 0 0 1px rgba(0, 27, 68, .05); transform: rotate(1.2deg); }
.hds-art__svg { display: block; width: 100%; height: 100%; }
.hds-ev__stamp { position: absolute; left: 18px; top: 18px; display: grid; justify-items: center; width: 74px; padding: 10px 0 9px; border-radius: 16px; background: rgba(255, 255, 255, .95); box-shadow: 0 10px 24px -10px rgba(0, 27, 68, .5); line-height: 1; transform: rotate(-1.2deg); }
.hds-ev__stamp span { color: var(--c); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hds-ev__stamp b { color: var(--hd-navy); font-size: 30px; font-weight: 600; margin: 5px 0 3px; }
.hds-ev__stamp small { color: var(--hd-slate); font-size: 11px; }
@media (max-width: 900px) { .hds-ev__hero { grid-template-columns: 1fr; } .hds-ev__art { transform: none; aspect-ratio: 16 / 11; } .hds-ev__stamp { transform: none; } }

.hds-ev__photo { width: var(--ev-w); margin: 0 auto; }
.hds-ev__photo-inner { position: relative; overflow: hidden; aspect-ratio: 21 / 8; border-radius: 24px; background: var(--hd-navy); }
.hds-ev__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hds-ev__photo-inner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 27, 68, .35)); }
@media (prefers-reduced-motion: no-preference) { .hds-ev__photo img { animation: hdsKen 26s ease-in-out infinite alternate; } }
@keyframes hdsKen { from { transform: scale(1.02); } to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); } }
@media (max-width: 700px) { .hds-ev__photo-inner { aspect-ratio: 16 / 10; border-radius: 18px; } }

.hds-ev__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); gap: clamp(32px, 4.5vw, 80px); padding-top: clamp(36px, 5vw, 64px); align-items: start; }
.hds-ev__main { min-width: 0; }
.hds-ev__section { padding-bottom: clamp(32px, 4vw, 48px); margin-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--hd-line); }
.hds-ev__section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.hds-ev__eyebrow { margin: 0 0 14px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c); }
.hds-ev__content { font-size: clamp(1.2rem, 1.6vw, 1.42rem); line-height: 1.5; color: var(--hd-ink); margin-bottom: 1em; }
.hds-ev__content p:last-child { margin-bottom: 0; }
.hds-ev__about > p { max-width: 70ch; }
.hds-ev__callout { position: relative; margin: 26px 0 0; padding: 22px 26px 22px 66px; border-radius: 18px; background: var(--c-soft); color: var(--hd-ink); }
.hds-ev__callout .hds-ico { position: absolute; left: 24px; top: 22px; width: 26px; height: 26px; color: var(--c); }
.hds-ev__callout p { margin: 0; font-weight: 400; }

.hds-ev__highlights { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.hds-ev__highlights li { padding: 24px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--hd-line); box-shadow: var(--hds-shadow); transition: transform .35s var(--hds-ease), box-shadow .35s; }
.hds-ev__highlights li:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 24px 40px -18px rgba(0, 27, 68, .35); }
.hds-ev__hi-ico { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 16px; border-radius: 14px; background: var(--c-soft); color: var(--c); }
.hds-ev__hi-ico .hds-ico { width: 25px; height: 25px; }
.hds-ev__highlights h3 { font-size: 1.08rem; margin: 0 0 6px; }
.hds-ev__highlights p { margin: 0; font-size: 15px; line-height: 1.55; }
@media (prefers-reduced-motion: no-preference) {
	.hds-ev__highlights li:hover .hds-hi-ico, .hds-ev__highlights li:hover .hds-ev__hi-ico { animation: hdsBob 1.2s ease-in-out infinite; }
}

.hds-ev__timeline { --tl: 160px; list-style: none; margin: 0; padding: 0; position: relative; }
.hds-ev__timeline::before { content: ""; position: absolute; left: calc(var(--tl) + 17px); top: 12px; bottom: 12px; width: 2px; border-radius: 2px; background: linear-gradient(var(--c), var(--c-soft)); }
.hds-ev__timeline li { position: relative; display: grid; grid-template-columns: var(--tl) 1fr; gap: 44px; padding: 10px 0; }
.hds-ev__timeline li::before { content: ""; position: absolute; left: calc(var(--tl) + 10px); top: 15px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--c); box-sizing: border-box; }
.hds-ev__timeline li:first-child::before { background: var(--c); }
.hds-ev__timeline time { padding-top: 1px; text-align: right; font-size: 15px; font-weight: 600; color: var(--hd-navy); }
.hds-ev__timeline h3 { font-size: 1.05rem; margin: 0 0 4px; }
.hds-ev__timeline p { margin: 0; font-size: 15px; }
.hds-ev__fine { margin: 16px 0 0; font-size: 13px; color: #8a93a3; }
@media (max-width: 640px) {
	.hds-ev__timeline::before { left: 7px; }
	.hds-ev__timeline li { grid-template-columns: 1fr; gap: 2px; padding-left: 32px; }
	.hds-ev__timeline li::before { left: 0; top: 13px; }
	.hds-ev__timeline time { text-align: left; }
}

.hds-ev__good { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hds-ev__good li { display: flex; gap: 14px; padding: 18px 20px; border-radius: 16px; background: var(--hd-mist); }
.hds-ev__good .hds-ico { width: 26px; height: 26px; margin-top: 1px; color: var(--c); }
.hds-ev__good h3 { font-size: 1rem; margin: 0 0 4px; }
.hds-ev__good p { margin: 0; font-size: 14.5px; line-height: 1.5; }
@media (max-width: 640px) { .hds-ev__good { grid-template-columns: 1fr; } }

.hds-ev__series-rule { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--hd-ink); font-weight: 400; }
.hds-ev__series-rule .hds-ico { color: var(--c); }
.hds-ev__dates { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hds-date { display: grid; justify-items: center; gap: 3px; width: 70px; padding: 12px 0; border-radius: 36px; border: 1px solid var(--hd-line); background: #fff; color: var(--hd-slate); text-decoration: none; font-size: 12px; line-height: 1; transition: transform .25s var(--hds-ease), border-color .2s, background-color .2s, color .2s; }
.hds-date b { font-size: 24px; font-weight: 600; color: var(--hd-navy); }
.hds-date:hover { border-color: var(--c); color: var(--c); transform: translateY(-2px); }
.hds-date.is-here { background: var(--c); border-color: var(--c); color: #fff; }
.hds-date.is-here b { color: #fff; }

.hds-ev__aside { position: sticky; top: calc(var(--hds-header) + 20px); display: grid; gap: 16px; }
.hds-ev__card { overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid var(--hd-line); box-shadow: 0 30px 60px -36px rgba(0, 27, 68, .5); }
.hds-ev__card-head { display: flex; align-items: center; gap: 16px; padding: 20px; background: linear-gradient(135deg, var(--hd-navy), #0b3a78); color: #fff; }
.hds-ev__tile { display: grid; justify-items: center; flex: none; width: 72px; padding: 10px 0 9px; border-radius: 16px; background: #fff; line-height: 1; }
.hds-ev__tile span { color: var(--c); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hds-ev__tile b { color: var(--hd-navy); font-size: 30px; font-weight: 600; margin: 5px 0 3px; }
.hds-ev__tile small { color: var(--hd-slate); font-size: 10.5px; }
.hds-ev__count { margin: 0 0 4px; font-size: 13px; font-weight: 500; color: var(--hd-aqua); }
.hds-ev__card-title { margin: 0; color: #fff; font-weight: 500; font-size: 16px; line-height: 1.3; }
.hds-ev__dl { margin: 0; padding: 6px 20px; }
.hds-ev__dl > div { display: grid; grid-template-columns: 118px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--hd-line); }
.hds-ev__dl > div:last-child { border-bottom: 0; }
.hds-ev__dl dt { display: flex; align-items: center; gap: 8px; align-self: start; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--hd-navy); }
.hds-ev__dl dt .hds-ico { color: var(--c); }
.hds-ev__dl dd { margin: 0; font-size: 15px; line-height: 1.5; color: var(--hd-ink); }
.hds-ev__dl dd span { font-size: 14px; color: var(--hd-slate); }
.hds-ev__dl dd a { font-size: 14px; font-weight: 500; }
.hds-ev__card-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 20px; }
.hds-ev__card-actions .hds-btn { flex: 1 1 auto; justify-content: center; }
.hds-ev__promo { padding: 22px; border-radius: 22px; background: radial-gradient(120% 120% at 100% 0%, #136fa5, #001b44 70%); color: #c9dcf0; font-size: 15px; }
.hds-ev__promo p { margin: 0 0 14px; }
.hds-ev__promo strong { display: block; margin-bottom: 4px; color: #fff; font-size: 17px; }
.hds-ev__promo .hds-pill:hover { color: var(--hd-navy); border-color: var(--hd-ice); background: var(--hd-ice); }
@media (max-width: 1000px) { .hds-ev__body { grid-template-columns: 1fr; } .hds-ev__aside { position: static; order: -1; } }

/* Full-width styled map */
.hds-ev-map { position: relative; height: clamp(420px, 40vw, 560px); margin-top: clamp(44px, 6vw, 88px); overflow: hidden; background: #e6f1ee; }
.hds-ev-map__canvas { position: absolute; inset: 0; background-color: #e6f1ee; background-image: repeating-radial-gradient(circle at 62% 48%, transparent 0 26px, rgba(18, 127, 134, .1) 26px 27px), linear-gradient(160deg, #e9f3ef, #d7eaf3); }
.hds-ev-map__overlay { position: relative; height: 100%; display: flex; align-items: center; pointer-events: none; }
.hds-ev-map__card { pointer-events: auto; display: flex; gap: 16px; max-width: 430px; padding: 26px; border-radius: 22px; background: rgba(255, 255, 255, .96); box-shadow: 0 30px 60px -28px rgba(0, 27, 68, .55), 0 0 0 1px rgba(0, 27, 68, .05); }
.hds-ev-map__card h2 { margin: 0 0 6px; font-size: 1.5rem; }
.hds-ev-map__card p { margin: 0 0 6px; font-size: 15px; }
.hds-ev-map__card .hds-ev__eyebrow { margin-bottom: 8px; }
.hds-ev-map__note { color: var(--hd-slate); }
.hds-ev-map__pin { display: grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--hd-coral); color: #fff; box-shadow: 0 0 0 6px rgba(255, 107, 74, .18); }
.hds-ev-map__pin .hds-ico { width: 24px; height: 24px; }
.hds-ev-map__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hds-ev-map .gm-style .gm-style-cc, .hds-ev-map .gm-style a[href^="https://maps.google.com/maps"] { opacity: .7; }
@media (max-width: 700px) {
	.hds-ev-map { height: auto; background: none; }
	.hds-ev-map__canvas { position: relative; height: 340px; }
	.hds-ev-map__overlay { display: block; margin-top: 14px; }
	.hds-ev-map__card { max-width: none; padding: 20px; }
}

/* Online events: join band instead of a map */
.hds-ev-join { margin-top: clamp(44px, 6vw, 88px); padding: clamp(40px, 5vw, 64px) 0; background: radial-gradient(120% 140% at 85% 0%, #0b3a78, #001b44 60%); color: #c9dcf0; }
.hds-ev-join__inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px; align-items: center; }
.hds-ev-join h2 { margin: 0 0 8px; color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.hds-ev-join p { margin: 0; max-width: 62ch; }
.hds-ev-join .hds-ev__eyebrow { margin-bottom: 8px; color: var(--hd-aqua); }
.hds-ev-join__icon { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 24px; background: rgba(62, 207, 178, .14); color: var(--hd-aqua); }
.hds-ev-join__icon .hds-ico { width: 40px; height: 40px; }
.hds-ev-join__steps { display: grid; gap: 8px; }
@media (max-width: 900px) { .hds-ev-join__inner { grid-template-columns: 1fr; } }

/* Related + pager */
.hds-ev__related { padding-top: clamp(44px, 6vw, 80px); }
.hds-ev__related-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.hds-ev__related-head h2 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.hds-ev__related .hds-events { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.hds-ev__pager { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 8px; align-items: center; margin-top: clamp(44px, 5vw, 64px); padding: 6px; border-radius: 999px; background: var(--hd-mist); border: 1px solid var(--hd-line); }
.hds-ev__nav { display: flex; align-items: center; gap: 14px; min-width: 0; height: 64px; padding: 0 24px 0 9px; border-radius: 999px; background: #fff; border: 1px solid var(--hd-line); color: var(--hd-ink); text-decoration: none; transition: border-color .2s, box-shadow .25s, background-color .2s; }
.hds-ev__nav--next { justify-content: flex-end; padding: 0 9px 0 24px; text-align: right; }
.hds-ev__nav > span:not(.hds-ev__nav-arrow) { display: grid; min-width: 0; line-height: 1.3; }
.hds-ev__nav small { font-size: 12px; color: var(--hd-slate); }
.hds-ev__nav b { overflow: hidden; font-size: 15px; font-weight: 500; color: var(--hd-navy); white-space: nowrap; text-overflow: ellipsis; }
.hds-ev__nav-arrow { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--hd-navy); color: #fff; transition: transform .3s var(--hds-ease), background-color .2s; }
.hds-ev__nav:hover { border-color: var(--c); color: var(--hd-ink); box-shadow: 0 10px 24px -14px rgba(0, 27, 68, .45); }
.hds-ev__nav--prev:hover .hds-ev__nav-arrow { transform: translateX(-3px); background: var(--c); }
.hds-ev__nav--next:hover .hds-ev__nav-arrow { transform: translateX(3px); background: var(--c); }
.hds-ev__nav--all { gap: 8px; padding: 0 22px; background: var(--hd-navy); border-color: var(--hd-navy); color: #fff; font-weight: 500; }
.hds-ev__nav--all:hover { background: var(--hd-action); border-color: var(--hd-action); color: #fff; }
@media (max-width: 760px) {
	.hds-ev__pager { grid-template-columns: 1fr 1fr; border-radius: 28px; }
	.hds-ev__nav--all { grid-column: 1 / -1; order: 3; justify-content: center; height: 48px; }
	.hds-ev__nav { gap: 10px; padding-right: 14px; }
	.hds-ev__nav--next { padding: 0 9px 0 14px; }
	.hds-ev__nav-arrow { width: 40px; height: 40px; }
	.hds-ev__nav b { font-size: 14px; }
	.hds-ev__nav small { font-size: 11px; }
}

/* Calendar views: same width as the event pages */
.tribe-events .tribe-common-l-container, .tribe-events-pro .tribe-common-l-container { max-width: min(80vw, 1560px) !important; }
@media (max-width: 1100px) { .tribe-events .tribe-common-l-container, .tribe-events-pro .tribe-common-l-container { max-width: none !important; } }

/* ---------- Animated event illustrations ---------- */
.hds-art .a { transform-box: fill-box; }
.hds-art .a-speak, .hds-art .a-pop { opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
	.hds-art .a-sway { animation: hdsSway 3.2s ease-in-out infinite; transform-origin: 50% 0; }
	.hds-art .a-sway-slow { animation: hdsSway 6s ease-in-out infinite; transform-origin: 50% 100%; }
	.hds-art .a-kite { animation: hdsSway 2.8s ease-in-out infinite; transform-origin: 50% 61%; }
	.hds-art .a-swing { animation: hdsSwing 2.6s ease-in-out infinite; transform-origin: 50% 0; }
	.hds-art .a-steam { animation: hdsSteam 2.4s ease-out infinite; }
	.hds-art .a-glow { animation: hdsGlow 3s ease-in-out infinite; }
	.hds-art .a-bob { animation: hdsBob 3s ease-in-out infinite; }
	.hds-art .a-drift { animation: hdsDrift 16s ease-in-out infinite alternate; }
	.hds-art .a-type { animation: hdsType 7s ease-out infinite backwards; transform-origin: 0 50%; }
	.hds-art .a-blink { animation: hdsBlink 1s steps(1) infinite; }
	.hds-art .a-wobble { animation: hdsWobble 5s ease-in-out infinite; transform-origin: 50% 0; }
	.hds-art .a-speak { animation: hdsSpeak 8s linear infinite; }
	.hds-art .a-eq { animation: hdsEq .9s ease-in-out infinite; transform-origin: 50% 100%; }
	.hds-art .a-chat { animation: hdsChat 7s ease-out infinite backwards; }
	.hds-art .a-twinkle { animation: hdsTwinkle 2.6s ease-in-out infinite; }
	.hds-art .a-burst { animation: hdsBurst 3.3s ease-out infinite; transform-origin: 50% 50%; }
	.hds-art .a-flag { animation: hdsFlag 1.4s ease-in-out infinite; transform-origin: 0 50%; }
	.hds-art .a-rise { animation: hdsRise 9s ease-in-out infinite alternate; }
	.hds-art .a-march { animation: hdsMarch 1.2s linear infinite; }
	.hds-art .a-spot { animation: hdsSpot 7s ease-in-out infinite; transform-origin: 50% 0; }
	.hds-art .a-sparkle { animation: hdsSparkle 2.8s ease-in-out infinite; transform-origin: 50% 50%; }
	.hds-art .a-spin { animation: hdsSpin 24s linear infinite; transform-origin: 50% 50%; }
	.hds-art .a-pop { animation: hdsPop 4.8s ease-out infinite backwards; transform-origin: 30% 100%; }
}
@keyframes hdsSway { 0%, 100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
@keyframes hdsSwing { 0%, 100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }
@keyframes hdsSteam { 0% { transform: translateY(6px); opacity: 0; } 30% { opacity: .8; } 100% { transform: translateY(-16px); opacity: 0; } }
@keyframes hdsGlow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes hdsBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes hdsDrift { from { transform: translateX(-26px); } to { transform: translateX(34px); } }
@keyframes hdsType { 0% { transform: scaleX(0); opacity: 1; } 12% { transform: scaleX(1); } 80% { transform: scaleX(1); opacity: 1; } 90%, 100% { transform: scaleX(1); opacity: 0; } }
@keyframes hdsBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes hdsWobble { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(3deg); } }
@keyframes hdsSpeak { 0%, 23% { opacity: 1; } 25%, 100% { opacity: 0; } }
@keyframes hdsEq { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
@keyframes hdsChat { 0% { transform: translateY(14px); opacity: 0; } 8%, 72% { transform: none; opacity: 1; } 84%, 100% { transform: translateY(-8px); opacity: 0; } }
@keyframes hdsTwinkle { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes hdsBurst { 0% { transform: scale(.15); opacity: 0; } 12% { opacity: 1; } 55% { transform: scale(1); opacity: .95; } 75%, 100% { transform: scale(1.1); opacity: 0; } }
@keyframes hdsFlag { 0%, 100% { transform: skewY(-8deg) scaleX(1); } 50% { transform: skewY(7deg) scaleX(.86); } }
@keyframes hdsRise { from { transform: translateY(24px); } to { transform: translateY(-10px); } }
@keyframes hdsMarch { to { stroke-dashoffset: -20; } }
@keyframes hdsSpot { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
@keyframes hdsSparkle { 0%, 100% { transform: scale(.3); opacity: 0; } 50% { transform: scale(1); opacity: 1; } }
@keyframes hdsSpin { to { transform: rotate(360deg); } }
@keyframes hdsPop { 0% { transform: scale(0); opacity: 0; } 6% { transform: scale(1.1); opacity: 1; } 10%, 30% { transform: scale(1); opacity: 1; } 36%, 100% { transform: scale(.7); opacity: 0; } }

/* Map (MapLibre) + pin */
.hds-ev-map__canvas { z-index: 0; }
.hds-ev-map__overlay { z-index: 3; }
.hds-ev-map .maplibregl-canvas:focus { outline: none; }
.hds-ev-map__canvas.is-ready::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(0, 27, 68, .22), rgba(0, 27, 68, 0) 40%); }
.hds-ev-map .maplibregl-ctrl-group { border-radius: 14px; overflow: hidden; box-shadow: var(--hds-shadow); }
.hds-ev-map .maplibregl-ctrl-group button { width: 38px; height: 38px; }
.hds-ev-map .maplibregl-ctrl-bottom-right { right: max(12px, calc((100% - var(--ev-w)) / 2)); bottom: 12px; z-index: 4; }
.hds-ev-map .maplibregl-ctrl-bottom-right .maplibregl-ctrl-attrib { margin: 0 0 0 8px; }
.hds-ev-map .maplibregl-cooperative-gesture-screen { font-family: var(--hds-font); background: rgba(0, 27, 68, .55); }
.hds-map-pin { width: 48px; height: 60px; }
.hds-map-pin svg { position: relative; display: block; filter: drop-shadow(0 8px 10px rgba(0, 27, 68, .35)); }
.hds-map-pin__pulse { position: absolute; left: 50%; bottom: 0; width: 18px; height: 8px; margin: 0 0 -1px -9px; border-radius: 50%; background: rgba(255, 107, 74, .5); }
@media (prefers-reduced-motion: no-preference) {
	.hds-map-pin__pulse { animation: hdsPinPulse 2.2s ease-out infinite; }
	.hds-map-pin svg { animation: hdsPinDrop .8s cubic-bezier(.3, 1.4, .5, 1) both; }
}
@keyframes hdsPinPulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(4.5); opacity: 0; } }
@keyframes hdsPinDrop { from { transform: translateY(-40px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 700px) { .hds-ev-map__canvas.is-ready::after { display: none; } .hds-ev-map .maplibregl-ctrl-bottom-right { right: 0; } }
.hds-ev__timeline time small { display: block; font-size: 13px; font-weight: 400; color: var(--hd-slate); }
.hds-ev-map .hds-ev-map__canvas { position: absolute; inset: 0; }
@media (max-width: 700px) { .hds-ev-map .hds-ev-map__canvas { position: relative; inset: auto; height: 340px; } }
.hds-ev__art { overflow: visible; background: none; }
.hds-ev__art .hds-art__svg { border-radius: 28px; overflow: hidden; background: var(--c-soft); }
.hds-ev__stamp { left: -20px; top: 26px; }
@media (max-width: 900px) { .hds-ev__stamp { left: 14px; top: 14px; } }
.hds-ev .tribe-events-content, .hds-ev .tribe-events-content p, .hds-ev .tribe-events-content li { font-family: var(--hds-font) !important; font-size: inherit; line-height: inherit; color: inherit; font-weight: 300; }
.hds-ev .tribe-events-series-relationship-single-marker { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0; padding: 7px 16px; border-radius: 999px; border: 0; background: var(--c-soft); color: var(--c); font: 500 14px/1.3 var(--hds-font); }
.hds-ev .tribe-events-series-relationship-single-marker__icon-svg path { stroke: currentColor; }
.hds-ev .tribe-events-series-relationship-single-marker__prefix { color: var(--c); font: inherit; }
.hds-ev .tribe-events-series-relationship-single-marker__title, .hds-ev .tribe-events-series-relationship-single-marker__title span { color: var(--hd-navy); font: inherit; text-decoration: none; border: 0; }
.hds-ev .tribe-events-series-relationship-single-marker__title:hover span { color: var(--c); }
.tribe-events .tribe-events-l-container, .tribe-events-pro .tribe-events-l-container { padding: 28px 0 96px !important; }
@media (max-width: 1100px) { .tribe-events .tribe-events-l-container, .tribe-events-pro .tribe-events-l-container { padding: 20px var(--hds-gutter) 72px !important; } }

/* ==========================================================================
   Round 2 (theme 1.4): hover polish, schedules, calendar views, live card
   ========================================================================== */

/* Hover rings in the category color (matches the pager) */
.hds-ev__bar .hds-pill:hover, .hds-ev__bar .hds-pill:focus-visible { border-color: var(--c); color: var(--hd-ink); background: #fff; }
.hds-ev__bar .hds-pill--solid:hover, .hds-ev__bar .hds-pill--solid:focus-visible { border-color: var(--c); color: #fff; background: var(--hd-action); box-shadow: 0 0 0 2px var(--c); }
.hds-ev__bar .hds-pill--cat:hover { background: var(--c-soft); color: var(--c); }
.hds-ev__highlights li { border: 1px solid var(--hd-line); }
.hds-ev__highlights li:hover { border-color: var(--c); }

/* Orange buttons: glow on hover; footer keeps navy text (not the link aqua) */
.hds-btn--coral:hover, .hds-btn--coral:focus-visible { background: var(--hd-coral); color: var(--hd-navy); box-shadow: 0 0 0 4px rgba(255, 107, 74, .22), 0 10px 30px -6px rgba(255, 107, 74, .7); }
.hds-footer .hds-btn--coral:hover, .hds-footer .hds-btn--coral:focus-visible { color: var(--hd-navy); }

/* Four related events */
.hds-ev__related .hds-events { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .hds-ev__related .hds-events { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .hds-ev__related .hds-events { grid-template-columns: 1fr; } }

/* Day-by-day schedules */
.hds-ev__days { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.hds-ev__days .hds-date { width: 64px; padding: 10px 0; }
.hds-ev__days .hds-date span:first-child { font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c); }
.hds-ev__days .hds-date:hover span:first-child { color: var(--c); }
.hds-ev__daytag { display: inline-block; margin-right: 10px; padding: 3px 10px; border-radius: 999px; background: var(--c-soft); color: var(--c); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; vertical-align: 3px; }
.hds-ev__timeline > li { scroll-margin-top: calc(var(--hds-header) + 24px); }
.hds-ev__timeline--days > li { padding: 14px 0; }
.hds-ev__timeline .hds-ev__sessions { list-style: none; margin: 12px 0 2px; padding: 0; display: grid; gap: 6px; }
.hds-ev__timeline .hds-ev__sessions li { position: static; display: flex; gap: 12px; align-items: baseline; padding: 8px 14px; border-radius: 12px; background: var(--hd-mist); font-size: 14.5px; line-height: 1.4; transition: background-color .2s; }
.hds-ev__timeline .hds-ev__sessions li::before { content: none; }
.hds-ev__timeline .hds-ev__sessions li:hover { background: var(--c-soft); }
.hds-ev__timeline .hds-ev__sessions time { flex: none; min-width: 74px; padding: 0; text-align: left; font-size: 13.5px; font-weight: 600; color: var(--c); }
.hds-ev__timeline .hds-ev__sessions span { color: var(--hd-ink); }

/* ---------- Calendar views ---------- */
.tribe_events_cat-markets { --ec: #e14b2a; --ec-soft: #ffe9e3; }
.tribe_events_cat-workshops { --ec: #136fa5; --ec-soft: #e2f0fa; }
.tribe_events_cat-webinars { --ec: #0a8fd1; --ec-soft: #e2f4fc; }
.tribe_events_cat-festivals { --ec: #7a3fc4; --ec-soft: #efe6fb; }
.tribe_events_cat-outdoors { --ec: #127f86; --ec-soft: #dff3f1; }
.tribe_events_cat-arts { --ec: #b8458a; --ec-soft: #fbe7f2; }
.tribe_events_cat-family { --ec: #d9860b; --ec-soft: #fff1d9; }
.tribe_events_cat-community { --ec: #105378; --ec-soft: #e3eef5; }
.tribe-common { --tec-color-border-secondary: #e8edf1; --tec-color-border-default: #dfe5ea; --tec-color-text-primary: #001b44; }

/* Header block */
.tribe-events-header:has(.hds-vhead) .tribe-events-header__title,
.tribe-events-header:has(.hds-vhead) .tribe-events-header__breadcrumbs,
.tribe-events-header:has(.hds-vhead) .tribe-events-header__content-title,
.tribe-events-header:has(.hds-vhead) .tribe-events-c-view-selector { display: none !important; }
.tribe-events .hds-vhead { width: 100%; flex: 0 0 100%; order: -1; margin: 0 0 28px; }
.hds-vhead .hds-ev__bar { margin-top: 0; }
.hds-vhead .hds-pill { color: var(--hd-ink); font-family: var(--hds-font); }
.hds-vhead .hds-pill.is-active, .hds-vhead .hds-pill--solid { background: var(--hd-navy); border-color: var(--hd-navy); color: #fff; }
.hds-vhead .hds-ev__bar .hds-pill.is-active:hover { color: #fff; background: var(--hd-action); box-shadow: 0 0 0 2px var(--c); }
.hds-vhead__hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: clamp(24px, 4vw, 72px); align-items: center; padding: clamp(24px, 3vw, 40px) 0 4px; }
.tribe-common .hds-vhead__title { margin: 0 0 .3em; font: 600 clamp(2.2rem, 4vw, 3.6rem)/1.05 var(--hds-font); letter-spacing: -.028em; color: var(--hd-navy); }
.tribe-common .hds-vhead .hds-ev__kicker { margin-bottom: 12px; }
.tribe-common .hds-vhead .hds-ev__lede { font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.6; color: var(--hd-slate); font-weight: 300; }
.tribe-common .hds-vhead .hds-ev__chips { margin-top: 18px; }
.hds-vhead__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hds-pill--sm { min-height: 32px; padding: 0 13px; gap: 7px; font-size: 13px; }
.hds-pill--sm i { width: 8px; height: 8px; border-radius: 50%; background: var(--c); flex: none; }
.hds-vhead .hds-pill--sm:hover { border-color: var(--c); color: var(--c); }
.hds-vhead .hds-pill--sm.is-active { background: var(--c); border-color: var(--c); color: #fff; }
.hds-vhead .hds-pill--sm.is-active i { background: #fff; }
.hds-vhead__art { margin: 0; aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden; background: var(--c-soft); box-shadow: 0 30px 56px -32px rgba(0, 27, 68, .5), 0 0 0 1px rgba(0, 27, 68, .05); transform: rotate(1.2deg); }
@media (max-width: 900px) { .hds-vhead__hero { grid-template-columns: 1fr; } .hds-vhead__art { transform: none; aspect-ratio: 16 / 9; } }

/* Search bar + top bar */
.tribe-common .tribe-events-c-events-bar--border { border-radius: 999px; border-color: var(--hd-line); background: #fff; box-shadow: var(--hds-shadow); }
.tribe-common .tribe-events-c-search__button { border-radius: 999px !important; background-color: var(--hd-navy) !important; font-family: var(--hds-font); padding-left: 22px; padding-right: 22px; }
.tribe-common .tribe-events-c-search__button:hover, .tribe-common .tribe-events-c-search__button:focus { background-color: var(--hd-action) !important; box-shadow: 0 0 0 3px rgba(3, 169, 244, .25); }
.tribe-common .tribe-events-c-top-bar__nav-link { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hd-line); background: #fff; transition: border-color .2s, transform .25s var(--hds-ease); }
.tribe-common .tribe-events-c-top-bar__nav-link:hover, .tribe-common .tribe-events-c-top-bar__nav-link:focus { border-color: var(--hd-blue); transform: translateY(-1px); }
.tribe-common .tribe-events-c-top-bar__nav-list-item + .tribe-events-c-top-bar__nav-list-item { margin-left: 8px; }
.tribe-common .tribe-events-c-top-bar__today-button { border-radius: 999px; border-color: var(--hd-line); padding: 9px 18px; font: 500 14px/1 var(--hds-font); color: var(--hd-ink); }
.tribe-common .tribe-events-c-top-bar__today-button:hover { border-color: var(--hd-blue); color: var(--hd-blue); }
.tribe-common .tribe-events-c-top-bar__datepicker-desktop, .tribe-common .tribe-events-c-top-bar__datepicker-mobile { font-weight: 600; color: var(--hd-navy); letter-spacing: -.01em; }
.tribe-common .tribe-events-c-subscribe-dropdown__button { border-radius: 999px !important; font-family: var(--hds-font); }
.tribe-common .tribe-events-c-messages__message { border-radius: 16px; }

/* Month */
.tribe-events .tribe-events-calendar-month { overflow: hidden; border: 1px solid var(--hd-line); border-radius: 22px; background: #fff; box-shadow: 0 30px 60px -44px rgba(0, 27, 68, .5); }
.tribe-events .tribe-events-calendar-month__header { background: var(--hd-mist); }
.tribe-events .tribe-events-calendar-month__header-column-title { padding: 12px 14px; font: 600 12px/1 var(--hds-font); letter-spacing: .12em; text-transform: uppercase; color: var(--hd-slate); }
.tribe-events .tribe-events-calendar-month__day-date-daynum { font: 600 15px/1 var(--hds-font); color: var(--hd-navy); }
.tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date-daynum { color: #9aa4b2; }
.tribe-events .tribe-events-calendar-month__day--current .tribe-events-calendar-month__day-date-daynum { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--hd-blue); color: #fff; }
.tribe-events .tribe-events-calendar-month__day--past { background: #fcfdfd; }
.tribe-events .tribe-events-calendar-month__calendar-event { margin-top: 6px; padding: 6px 8px 7px 9px; border-radius: 9px; background: var(--ec-soft, #eef3f7); border-left: 3px solid var(--ec, var(--hd-blue)); transition: background-color .2s, box-shadow .2s, transform .2s var(--hds-ease); }
.tribe-events .tribe-events-calendar-month__calendar-event:hover { background: #fff; box-shadow: 0 0 0 1px var(--ec, var(--hd-blue)), 0 10px 20px -12px rgba(0, 27, 68, .5); transform: translateY(-1px); }
.tribe-events .tribe-events-calendar-month__calendar-event-title, .tribe-events .tribe-events-calendar-month__calendar-event-title-link { font: 500 13px/1.3 var(--hds-font); color: var(--hd-navy); }
.tribe-events .tribe-events-calendar-month__calendar-event-datetime { font-size: 11.5px; color: var(--hd-slate); }
.tribe-events .tribe-events-calendar-month__multiday-event-bar { background-color: var(--ec-soft, #e2f0fa) !important; border-radius: 8px; }
.tribe-events .tribe-events-calendar-month__multiday-event-bar-title { color: var(--ec, var(--hd-blue)) !important; font-weight: 500; }
.tribe-events .tribe-events-calendar-month__multiday-event:hover .tribe-events-calendar-month__multiday-event-bar { background-color: var(--ec, var(--hd-blue)) !important; }
.tribe-events .tribe-events-calendar-month__multiday-event:hover .tribe-events-calendar-month__multiday-event-bar-title { color: #fff !important; }
.tribe-events .tribe-events-calendar-month__more-events-link { font-weight: 500; color: var(--hd-blue); }
.tribe-events .tribe-events-calendar-month__mobile-events-icon--event { background-color: var(--hd-blue); }
.tribe-events .tribe-events-calendar-month__day-cell--selected .tribe-events-calendar-month__mobile-events-icon--event { background-color: #fff; }
.tribe-events .tribe-events-calendar-month__day-cell--selected { background-color: var(--hd-blue); border-radius: 12px; }

/* List + day: event cards */
.tribe-events .tribe-events-calendar-list__month-separator-text, .tribe-events .tribe-events-calendar-day__time-separator-text { display: inline-flex; padding: 6px 14px; border-radius: 999px; background: var(--hd-navy); color: #fff; font: 500 13.5px/1.2 var(--hds-font); letter-spacing: .02em; }
.tribe-events .tribe-events-calendar-list__event-row { margin-bottom: 22px; }
.tribe-events .tribe-events-calendar-list__event, .tribe-events .tribe-events-calendar-day__event { margin: 0; padding: 18px 8px; border: 1px solid var(--hd-line); border-radius: 22px; background: #fff; box-shadow: var(--hds-shadow); transition: border-color .2s, box-shadow .3s, transform .3s var(--hds-ease); }
.tribe-events .tribe-events-calendar-list__event:hover, .tribe-events .tribe-events-calendar-day__event:hover { border-color: var(--ec, var(--hd-blue)); transform: translateY(-3px); box-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 24px 40px -20px rgba(0, 27, 68, .4); }
.tribe-events .tribe-events-calendar-list__event-featured-image, .tribe-events .tribe-events-calendar-day__event-featured-image { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; }
.tribe-events .tribe-events-calendar-list__event-title, .tribe-events .tribe-events-calendar-day__event-title { font: 600 clamp(1.2rem, 1.6vw, 1.45rem)/1.25 var(--hds-font); letter-spacing: -.01em; }
.tribe-events .tribe-events-calendar-list__event-title-link, .tribe-events .tribe-events-calendar-day__event-title-link { color: var(--hd-navy); }
.tribe-events .tribe-events-calendar-list__event-title-link:hover, .tribe-events .tribe-events-calendar-day__event-title-link:hover { color: var(--ec, var(--hd-blue)); border-color: transparent; }
.tribe-events .tribe-events-calendar-list__event-datetime, .tribe-events .tribe-events-calendar-day__event-datetime { font-size: 14px; color: var(--ec, var(--hd-teal)); font-weight: 500; }
.tribe-events .tribe-events-calendar-list__event-description, .tribe-events .tribe-events-calendar-day__event-description { font-size: 15px; color: var(--hd-slate); }
.tribe-events .tribe-events-calendar-list__event-venue, .tribe-events .tribe-events-calendar-day__event-venue { font-size: 14px; }
.tribe-events .tribe-events-calendar-list__event-date-tag-datetime { display: grid; justify-items: center; width: 64px; padding: 10px 0 9px; border-radius: 16px; background: #fff; border: 1px solid var(--hd-line); box-shadow: var(--hds-shadow); }
.tribe-events .tribe-events-calendar-list__event-date-tag-weekday { color: var(--hd-ember); font: 600 11.5px/1 var(--hds-font); letter-spacing: .1em; text-transform: uppercase; }
.tribe-events .tribe-events-calendar-list__event-date-tag-daynum { margin-top: 4px; color: var(--hd-navy); font: 600 26px/1 var(--hds-font); }

/* Photo */
.tribe-events-pro .tribe-events-pro-photo__event { padding-bottom: 12px; border-radius: 20px; transition: transform .3s var(--hds-ease); }
.tribe-events-pro .tribe-events-pro-photo__event:hover { transform: translateY(-3px); }
.tribe-events-pro .tribe-events-pro-photo__event-featured-image-wrapper { overflow: hidden; border-radius: 18px; box-shadow: 0 0 0 1px transparent; transition: box-shadow .2s; }
.tribe-events-pro .tribe-events-pro-photo__event:hover .tribe-events-pro-photo__event-featured-image-wrapper { box-shadow: 0 0 0 2px var(--ec, var(--hd-blue)), 0 20px 36px -20px rgba(0, 27, 68, .5); }
.tribe-events-pro .tribe-events-pro-photo__event-featured-image { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--hds-ease); }
.tribe-events-pro .tribe-events-pro-photo__event:hover .tribe-events-pro-photo__event-featured-image { transform: scale(1.05); }
.tribe-events-pro .tribe-events-pro-photo__event-title { font: 600 1.1rem/1.3 var(--hds-font); }
.tribe-events-pro .tribe-events-pro-photo__event-title-link { color: var(--hd-navy); }
.tribe-events-pro .tribe-events-pro-photo__event-date-tag-month { color: var(--ec, var(--hd-ember)); }

/* Week */
.tribe-events-pro .tribe-events-pro-week-grid__event-link-inner { background-color: var(--ec-soft, #e2f0fa) !important; border-left: 3px solid var(--ec, var(--hd-blue)); border-radius: 8px; }
.tribe-events-pro .tribe-events-pro-week-grid__event-link:hover .tribe-events-pro-week-grid__event-link-inner { background-color: #fff !important; box-shadow: 0 0 0 1px var(--ec, var(--hd-blue)); }
.tribe-events-pro .tribe-events-pro-week-grid__event-title { color: var(--hd-navy); font-weight: 500; }
.tribe-events-pro .tribe-events-pro-week-grid__multiday-event-bar { background-color: var(--ec-soft, #e2f0fa) !important; border-radius: 8px; }
.tribe-events-pro .tribe-events-pro-week-grid__multiday-event-bar-title { color: var(--ec, var(--hd-blue)) !important; }
.tribe-events-pro .tribe-events-pro-week-grid__header-column--current .tribe-events-pro-week-grid__header-column-daynum { background: var(--hd-blue); color: #fff; border-radius: 50%; }
.tribe-events-pro .tribe-events-pro-week-day-selector__day { border-radius: 14px; }
.tribe-events-pro .tribe-events-pro-week-day-selector__day--active { background: var(--hd-navy); }

/* Summary + map cards */
.tribe-events-pro .tribe-events-pro-summary__event { border-radius: 14px; padding: 10px 12px; transition: background-color .2s, box-shadow .2s; }
.tribe-events-pro .tribe-events-pro-summary__event:hover { background: var(--ec-soft, var(--hd-mist)); box-shadow: inset 3px 0 0 var(--ec, var(--hd-blue)); }
.tribe-events-pro .tribe-events-pro-summary__event-title-link { color: var(--hd-navy); font-weight: 500; }
.tribe-events-pro .tribe-events-pro-summary__month-separator-text { display: inline-flex; padding: 6px 14px; border-radius: 999px; background: var(--hd-navy); color: #fff; font: 500 13.5px/1.2 var(--hds-font); }
.tribe-events-pro .tribe-events-pro-map__event-card { border-radius: 16px; transition: box-shadow .2s; }
.tribe-events-pro .tribe-events-pro-map__event-card-wrapper--active .tribe-events-pro-map__event-card, .tribe-events-pro .tribe-events-pro-map__event-card:hover { box-shadow: 0 0 0 2px var(--ec, var(--hd-blue)); }
.tribe-events-pro .tribe-events-pro-map__map { border-radius: 22px; overflow: hidden; }
.tribe-events-tooltip-theme .tooltipster-box { border-radius: 16px !important; box-shadow: 0 24px 40px -18px rgba(0, 27, 68, .45) !important; }

/* Landing preview card, now live */
a.hds-views__title { color: var(--hd-navy); text-decoration: none; }
a.hds-views__title:hover { color: var(--hd-blue); }
.hds-cal a { display: block; color: inherit; text-decoration: none; border-radius: 4px; }
.hds-cal--live em { white-space: nowrap; text-overflow: ellipsis; }
.hds-cal--live em.span { overflow: hidden; }
.hds-cal--live em.span.first { overflow: hidden; }
.hds-cal a:hover em { filter: brightness(1.12); box-shadow: 0 4px 10px -4px rgba(0, 27, 68, .5); }
.hds-cal__more { display: block; margin-top: 2px; font-size: 10px; line-height: 1; color: var(--hd-slate); }
.hds-vlist li { position: relative; transition: background-color .2s; }
.hds-vlist a { color: inherit; text-decoration: none; }
.hds-vlist a::after { content: ""; position: absolute; inset: 0; border-radius: 10px; }
.hds-vlist li:hover { background: #e7f0f7; }
.hds-vlist li:hover strong { color: var(--hd-blue); }
.hds-vphoto__item { display: block; min-height: 0; border-radius: 10px; text-decoration: none; }
.hds-vphoto__item figure { height: 100%; }
.hds-vphoto__item img { transition: transform .6s var(--hds-ease); }
.hds-vphoto__item:hover img, .hds-vphoto__item:focus-visible img { transform: scale(1.06); }
.hds-vmap svg a { cursor: pointer; }
.hds-vmap__pin circle:last-child { transition: fill .2s; }
.hds-vmap__pin:hover circle:last-child, .hds-vmap__pin:focus circle:last-child, .hds-vmap__pin.is-on circle:last-child { fill: #e14b2a; }
a.hds-vmap__pop { color: var(--hd-ink); text-decoration: none; transition: box-shadow .2s; }
a.hds-vmap__pop:hover { box-shadow: 0 0 0 1px var(--hd-blue), var(--hds-shadow); }
a.hds-vmap__pop:hover strong { color: var(--hd-blue); }
/* TEC's reset zeroes padding and borders on links; put the pills back. */
.tribe-common .hds-vhead .hds-pill { display: inline-flex; padding: 0 16px; border: 1px solid transparent; }
.tribe-common .hds-vhead .hds-pill--sm { padding: 0 13px; border-color: var(--hd-line); background: #fff; }
.tribe-common .hds-vhead .hds-pill--sm:hover { border-color: var(--c); color: var(--c); }
.tribe-common .hds-vhead .hds-pill--sm.is-active { border-color: var(--c); background: var(--c); color: #fff; }
.tribe-common .hds-vhead .hds-pill.is-active, .tribe-common .hds-vhead .hds-pill--solid { border-color: var(--hd-navy); }
.tribe-common .hds-vhead .hds-ev__bar .hds-pill:hover, .tribe-common .hds-vhead .hds-ev__bar .hds-pill:focus-visible { border-color: var(--c); }
.tribe-common .hds-vhead .hds-ev__bar .hds-pill.is-active:hover, .tribe-common .hds-vhead .hds-ev__bar .hds-pill--solid:hover { border-color: var(--c); color: #fff; }
@media (max-width: 1280px) { .hds-vhead__bar .hds-ev__bar-group:last-child { display: none; } }
.tribe-events .tribe-events-calendar-list__event-date-tag { align-self: flex-start; }
.tribe-events .tribe-events-calendar-list__event-date-tag-datetime { height: auto; }
.tribe-common .hds-vhead .hds-ev__bar { display: flex; }
.tribe-events .tribe-events-calendar-month__multiday-event-bar-inner, .tribe-events-pro .tribe-events-pro-week-grid__multiday-event-bar-inner { background-color: transparent !important; }
.tribe-events .tribe-events-calendar-month__multiday-event:hover .tribe-events-calendar-month__multiday-event-bar-inner { background-color: transparent !important; }
.tribe-events-pro .tribe-events-pro-week-grid__header-column--current .tribe-events-pro-week-grid__header-column-daynum { display: inline-grid; place-items: center; width: 38px; height: 38px; color: #fff !important; }

/* ---------- Visual course menu ---------- */
.hds-mega__card { display: grid !important; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: center; padding: 10px !important; border-radius: 14px !important; border: 1px solid transparent; transition: background-color .2s, border-color .2s, transform .25s var(--hds-ease); }
.hds-mega__card:hover { background: var(--hd-mist); border-color: var(--hd-teal); transform: translateY(-1px); }
.hds-mega__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; background: var(--hd-ice); }
.hds-mega__img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--hds-ease); }
.hds-mega__card:hover .hds-mega__img img { transform: scale(1.07); }
.hds-mega__body { display: grid; gap: 3px; min-width: 0; }
.hds-mega__cat { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--hd-teal); }
.hds-mega__title { font-size: 15.5px; font-weight: 600; line-height: 1.25; color: var(--hd-navy); }
.hds-mega__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 12.5px; color: var(--hd-slate); }
.hds-mega__meta i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }
.hds-mega__all-link { display: flex !important; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px !important; border-radius: 14px !important; background: var(--hd-navy); color: #fff !important; }
.hds-mega__all-link span { display: grid; gap: 2px; }
.hds-mega__all-link strong { color: #fff; font-weight: 500; font-size: 15px; }
.hds-mega__all-link small { color: #b3cde6; font-size: 12.5px; }
.hds-mega__all-link .hds-ico { width: 20px; height: 20px; transition: transform .25s var(--hds-ease); }
.hds-mega__all-link:hover { background: var(--hd-action) !important; }
.hds-mega__all-link:hover .hds-ico { transform: translateX(3px); }
@media (min-width: 961px) {
	.hds-nav__list .hds-mega > .sub-menu { left: 50%; width: min(760px, 92vw); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 14px; transform: translate(-50%, 8px); }
	.hds-nav__list .hds-mega:hover > .sub-menu, .hds-nav__list .hds-mega:focus-within > .sub-menu { transform: translate(-50%, 0); }
	.hds-nav__list .hds-mega > .sub-menu .hds-mega__all { grid-column: 1 / -1; margin-top: 4px; }
	.hds-nav__list .hds-mega > .sub-menu > li { opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .35s var(--hds-ease); }
	.hds-nav__list .hds-mega:hover > .sub-menu > li, .hds-nav__list .hds-mega:focus-within > .sub-menu > li { opacity: 1; transform: none; }
	.hds-nav__list .hds-mega > .sub-menu > li:nth-child(2) { transition-delay: .04s; }
	.hds-nav__list .hds-mega > .sub-menu > li:nth-child(3) { transition-delay: .08s; }
	.hds-nav__list .hds-mega > .sub-menu > li:nth-child(4) { transition-delay: .12s; }
	.hds-nav__list .hds-mega > .sub-menu > li:nth-child(5) { transition-delay: .16s; }
	.hds-nav__list .hds-mega > .sub-menu a.hds-mega__card:hover { background: var(--hd-mist); }
}
@media (prefers-reduced-motion: reduce) { .hds-nav__list .hds-mega > .sub-menu > li { transition: none; } }
@media (max-width: 960px) {
	.hds-nav__list .hds-mega > .sub-menu { display: grid; gap: 4px; padding: 6px 0 10px; }
	.hds-nav__list .hds-mega .hds-mega__card { grid-template-columns: 64px minmax(0, 1fr); border-bottom: 0; }
	.hds-nav__list .hds-mega .hds-mega__all-link { margin-top: 4px; border-bottom: 0; }
}
@media (max-width: 700px) {
	.hds-vhead__art { display: none; }
	.hds-vhead .hds-ev__chips li:nth-child(n+2) { display: none; }
	.hds-vhead__cats { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
	.hds-vhead__cats::-webkit-scrollbar { display: none; }
	.hds-vhead__cats .hds-pill { flex: none; }
}

/* ==========================================================================
   Round 3 (theme 1.5)
   ========================================================================== */

/* Stats chips in the view header (TEC's reset removed the gap and padding) */
.tribe-common .hds-vhead .hds-ev__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tribe-common .hds-vhead .hds-ev__chips li { padding: 8px 14px; }

/* Event page meta chips: hover */
.hds-ev__chips li { transition: border-color .2s, background-color .2s, color .2s, transform .25s var(--hds-ease), box-shadow .25s; }
.hds-ev__chips li:hover { border-color: var(--c); background: var(--c-soft); transform: translateY(-2px); box-shadow: 0 10px 20px -14px rgba(0, 27, 68, .5); }
.hds-ev__chips li.is-accent:hover { background: var(--c); color: #fff; }
.hds-ev__chips li.is-accent:hover .hds-ico { color: #fff; }
@media (prefers-reduced-motion: no-preference) { .hds-ev__chips li:hover .hds-ico { animation: hdsIcoPop .55s var(--hds-ease); } }
@keyframes hdsIcoPop { 0% { transform: scale(1); } 40% { transform: scale(1.3) rotate(-10deg); } 100% { transform: scale(1); } }

/* Good to know: icon badges that move, tiles that lift */
.hds-ev__good li { border: 1px solid transparent; transition: background-color .25s, border-color .25s, transform .3s var(--hds-ease), box-shadow .3s; }
.hds-ev__good li:hover { background: #fff; border-color: var(--c); transform: translateY(-3px); box-shadow: 0 1px 2px rgba(0, 27, 68, .06), 0 20px 36px -20px rgba(0, 27, 68, .4); }
.hds-ev__good .hds-ico { box-sizing: content-box; width: 22px; height: 22px; padding: 9px; margin-top: 0; border-radius: 12px; background: var(--c-soft); color: var(--c); transition: background-color .25s, color .25s; }
.hds-ev__good li:hover .hds-ico { background: var(--c); color: #fff; }
@media (prefers-reduced-motion: no-preference) {
	.hds-ev__good li:nth-child(4n+1) .hds-ico { animation: hdsGoodBob 3.2s ease-in-out infinite; }
	.hds-ev__good li:nth-child(4n+2) .hds-ico { animation: hdsGoodSwing 3.6s ease-in-out infinite; transform-origin: 50% 20%; }
	.hds-ev__good li:nth-child(4n+3) .hds-ico { animation: hdsGoodPulse 2.8s ease-in-out infinite; }
	.hds-ev__good li:nth-child(4n+4) .hds-ico { animation: hdsGoodTilt 4s ease-in-out infinite; }
	.hds-ev__good li:hover .hds-ico { animation-duration: .9s; }
}
@keyframes hdsGoodBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes hdsGoodSwing { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
@keyframes hdsGoodPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes hdsGoodTilt { 0%, 70%, 100% { transform: rotate(0); } 78% { transform: rotate(-12deg); } 86% { transform: rotate(10deg); } 94% { transform: rotate(-4deg); } }

/* Month + week hover cards: one rounded landscape card */
.tribe-events-tooltip-theme.tooltipster-base { max-width: none !important; }
.tribe-events-tooltip-theme .tooltipster-box { margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.tribe-events-tooltip-theme .tooltipster-content { padding: 0 !important; overflow: visible !important; max-height: none !important; }
.tribe-events-tooltip-theme .tooltipster-arrow { display: none !important; }
.tribe-common .hds-tip { display: grid !important; grid-template-columns: 220px minmax(0, 1fr); width: min(680px, 92vw); min-height: 210px; margin: 6px 0; overflow: hidden; border: 1px solid var(--hd-line); border-radius: 22px; background: #fff; box-shadow: 0 30px 60px -26px rgba(0, 27, 68, .5); font-family: var(--hds-font); transition: transform .3s var(--hds-ease), box-shadow .3s, border-color .2s; }
.tribe-common .hds-tip:hover, .tribe-events-tooltip-theme--hover .hds-tip { transform: translateY(-3px); border-color: var(--ec, var(--hd-blue)); box-shadow: 0 0 0 1px var(--ec, var(--hd-blue)), 0 36px 70px -26px rgba(0, 27, 68, .55); }
.tribe-common .hds-tip .hds-tip__img { position: relative; height: 100%; min-height: 210px; margin: 0 !important; padding: 0 !important; overflow: hidden; }
.tribe-common .hds-tip .hds-tip__img img { position: absolute; inset: 0; width: 100%; height: 100% !important; max-width: none; object-fit: cover; border-radius: 0; transition: transform .7s var(--hds-ease); }
.tribe-common .hds-tip:hover .hds-tip__img img, .tribe-events-tooltip-theme--hover .hds-tip__img img { transform: scale(1.06); }
.tribe-common .hds-tip__body { display: flex; flex-direction: column; gap: 7px; min-width: 0; padding: 20px 24px 20px 22px; }
.tribe-common .hds-tip__cat { align-self: flex-start; padding: 4px 11px; border-radius: 999px; background: var(--ec-soft, #e2f0fa); color: var(--ec, var(--hd-blue)); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.tribe-common .hds-tip__body > [class*="tooltip-datetime"] { margin: 0 !important; font-size: 13px; font-weight: 500; color: var(--ec, var(--hd-teal)); }
.tribe-common .hds-tip__body > [class*="tooltip-title"] { margin: 0 !important; font: 600 1.22rem/1.25 var(--hds-font); letter-spacing: -.01em; }
.tribe-common .hds-tip__body > [class*="tooltip-title"] a { color: var(--hd-navy); }
.tribe-common .hds-tip__body > [class*="tooltip-description"] { display: -webkit-box; margin: 0 !important; overflow: hidden; font-size: 14px; line-height: 1.5; color: var(--hd-slate); -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.tribe-common .hds-tip__body > [class*="tooltip-description"] p { margin: 0; }
.tribe-common .hds-tip__cta { display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; margin-top: auto; padding: 8px 15px; border-radius: 999px; background: var(--hd-navy); color: #fff; font-size: 13px; font-weight: 500; text-decoration: none; transition: background-color .2s, box-shadow .2s; }
.tribe-common .hds-tip__cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--hds-ease); }
.tribe-common .hds-tip__cta:hover { background: var(--ec, var(--hd-action)); color: #fff; box-shadow: 0 0 0 3px var(--ec-soft, #e2f0fa); }
.tribe-common .hds-tip__cta:hover svg { transform: translateX(3px); }
.tribe-common .hds-tip:not(:has(.hds-tip__img)) { grid-template-columns: 1fr; width: min(460px, 92vw); min-height: 0; }
@media (max-width: 600px) { .tribe-common .hds-tip { grid-template-columns: 120px minmax(0, 1fr); min-height: 170px; } }

/* Search bar: rounded all round, sonar + seeking magnifier */
.tribe-common--breakpoint-medium .tribe-events-c-events-bar--border { overflow: hidden; padding-left: 8px; transition: border-color .2s, box-shadow .25s; }
.tribe-common--breakpoint-medium .tribe-events-c-events-bar--border:focus-within { border-color: var(--hd-blue); box-shadow: 0 0 0 4px rgba(3, 169, 244, .16), var(--hds-shadow); }
.tribe-common .tribe-events-c-events-bar__search-container, .tribe-common .tribe-events-c-search { background: transparent; border-radius: 999px; }
.tribe-common .tribe-events-c-search__input { font-family: var(--hds-font); font-size: 15px; color: var(--hd-ink); background: transparent; }
.tribe-common .tribe-events-c-search__input::placeholder { color: #8a93a3; }
.tribe-common .tribe-events-c-search__input-control--keyword { position: relative; }
.tribe-common .tribe-events-c-search__input-control-icon-svg { color: var(--hd-blue); transform-origin: 40% 40%; }
.tribe-common .tribe-events-c-search__input-control-icon-svg path { fill: currentColor; stroke: none; }
.tribe-common .tribe-events-c-search__input-control--keyword:focus-within .tribe-events-c-search__input-control-icon-svg { color: var(--hd-coral); }
@media (prefers-reduced-motion: no-preference) {
	.tribe-common .tribe-events-c-search__input-control-icon-svg { animation: hdsSeek 4.5s ease-in-out infinite; }
	.tribe-common .tribe-events-c-search__input-control--keyword:focus-within .tribe-events-c-search__input-control-icon-svg { animation: hdsGoodPulse 1.1s ease-in-out infinite; }
}
@keyframes hdsSeek { 0%, 60%, 100% { transform: translate(0, 0) rotate(0); } 66% { transform: translate(-2px, -2px) rotate(-16deg); } 74% { transform: translate(2px, -1px) rotate(12deg); } 82% { transform: translate(1px, 1px) rotate(-6deg) scale(1.12); } 90% { transform: translate(0, 0) scale(1.18); } }

/* Day view: a quiet day */
.tribe-events-view--day:has(.hds-dayempty) .tribe-events-c-messages { display: none !important; }
.hds-dayempty { margin: 6px 0 28px; }
.hds-dayempty__head { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px; align-items: center; margin-bottom: 24px; padding: 22px; border: 1px solid var(--hd-line); border-radius: 22px; background: #fff; box-shadow: var(--hds-shadow); }
.hds-dayempty__art { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 16px; }
.tribe-common .hds-dayempty h2 { margin: 0 0 6px; font: 600 clamp(1.4rem, 2.2vw, 1.8rem)/1.2 var(--hds-font); letter-spacing: -.015em; color: var(--hd-navy); }
.tribe-common .hds-dayempty p { margin: 0 0 14px; font-size: 16px; color: var(--hd-slate); }
.tribe-common .hds-dayempty .hds-ev__kicker { margin-bottom: 10px; font-size: 12.5px; color: var(--hd-teal); }
.tribe-common .hds-dayempty .hds-ev__dot { background: var(--hd-teal); }
.tribe-common .hds-dayempty .hds-pill { display: inline-flex; padding: 0 18px; border: 1px solid var(--hd-navy); }
.tribe-common .hds-dayempty .hds-pill:hover { box-shadow: 0 0 0 2px var(--hd-teal); }
.hds-dayempty .hds-events { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tribe-common .hds-event__body h3 { font: 600 1.05rem/1.3 var(--hds-font); color: var(--hd-navy); }
.tribe-common .hds-event__body p { font-size: 14px; line-height: 1.45; color: var(--hd-slate); }
@media (max-width: 800px) { .hds-dayempty__head { grid-template-columns: 1fr; } .hds-dayempty__art { display: none; } .hds-dayempty .hds-events { grid-template-columns: 1fr; } }

/* Map view: tall full-width map on top, event cards in a grid below */
.tribe-events-pro .tribe-events-pro-map { display: flex !important; flex-direction: column; gap: 36px; height: auto !important; max-height: none !important; margin: 0; border: 0 !important; }
.tribe-events-pro .tribe-events-pro-map__map.hds-evmap { position: relative; order: -1; flex: none; width: 100vw !important; max-width: 100vw !important; height: clamp(520px, 74vh, 860px) !important; margin: 0 0 0 calc(50% - 50vw) !important; padding: 0 !important; border-radius: 0; overflow: hidden; }
.hds-evmap__canvas { position: absolute; inset: 0; background-color: #e6f1ee; background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0 26px, rgba(18, 127, 134, .1) 26px 27px), linear-gradient(160deg, #e9f3ef, #d7eaf3); }
.hds-evmap .hds-evmap__canvas { position: absolute; }
.hds-evmap__legend { position: absolute; top: 18px; left: 50%; z-index: 3; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; max-width: calc(100% - 32px); padding: 5px; border-radius: 999px; background: rgba(255, 255, 255, .95); box-shadow: 0 16px 36px -18px rgba(0, 27, 68, .55); transform: translateX(-50%); font: 400 14px/1 var(--hds-font); color: var(--hd-ink); pointer-events: none; }
.hds-evmap__legend span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: 999px; white-space: nowrap; }
.hds-evmap__legend b { font-weight: 600; color: var(--hd-navy); }
.hds-evmap__legend .hds-ico { color: var(--hd-blue); }
.hds-evmap__legend .hds-evmap__hint { background: var(--hd-navy); color: #fff; }
.tribe-events-pro .tribe-events-pro-map__event-column { width: 100% !important; max-width: none !important; height: auto !important; flex: none; padding: 0 !important; overflow: visible !important; border: 0 !important; }
.tribe-events-pro .tribe-events-pro-map__event-cards-wrapper { height: auto !important; max-height: none !important; overflow: visible !important; }
.tribe-events-pro .tribe-events-pro-map__event-cards { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: 16px; padding: 0 !important; }
.tribe-events-pro .tribe-events-pro-map__event-card-wrapper { margin: 0 !important; padding: 0 !important; border: 0 !important; background: none !important; }
.tribe-events-pro .tribe-events-pro-map__event-card-wrapper::before, .tribe-events-pro .tribe-events-pro-map__event-card-wrapper::after { display: none !important; }
.tribe-events-pro .tribe-events-pro-map__event-card-button { width: 100%; height: 100%; padding: 0; border-radius: 18px; }
.tribe-events-pro .tribe-events-pro-map__event-card { height: 100%; padding: 16px 16px 14px !important; border: 1px solid var(--hd-line); border-radius: 18px; background: #fff; box-shadow: var(--hds-shadow); transition: box-shadow .2s, transform .3s var(--hds-ease), border-color .2s; }
.tribe-events-pro .tribe-events-pro-map__event-card-wrapper:hover .tribe-events-pro-map__event-card { transform: translateY(-3px); border-color: var(--ec, var(--hd-blue)); box-shadow: 0 0 0 2px var(--ec, var(--hd-blue)), 0 22px 40px -22px rgba(0, 27, 68, .45); }
.tribe-events-pro .tribe-events-pro-map__event-title { font: 600 1.05rem/1.3 var(--hds-font); color: var(--hd-navy); }
.tribe-events-pro .tribe-events-pro-map__event-date-tag-month { color: var(--ec, var(--hd-ember)); font-weight: 600; }
.tribe-events-pro .tribe-events-pro-map__event-date-tag-daynum { color: var(--hd-navy); font-weight: 600; }
.tribe-events-pro .tribe-events-pro-map__event-datetime-wrapper { color: var(--ec, var(--hd-teal)); font-weight: 500; }
.tribe-events-pro .tribe-events-pro-map__nav { grid-column: 1 / -1; }

/* Map markers: venue cards and cluster bubbles */
.hds-mapmk { padding-bottom: 10px; }
.tribe-common .hds-mapcard, .hds-mapcard { position: relative; display: flex; align-items: center; gap: 10px; max-width: 260px; padding: 6px 14px 6px 6px; border: 2px solid #fff; border-radius: 16px; background: #fff; box-shadow: 0 14px 28px -12px rgba(0, 27, 68, .55), 0 0 0 1px rgba(0, 27, 68, .06); font: 400 13px/1.25 var(--hds-font); color: var(--hd-navy); text-align: left; cursor: pointer; transition: transform .25s var(--hds-ease), box-shadow .25s, border-color .2s; }
.hds-mapcard::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 14px; height: 14px; margin-left: -7px; border-radius: 3px; background: #fff; transform: rotate(45deg); box-shadow: 3px 3px 6px -3px rgba(0, 27, 68, .3); }
.hds-mapcard img { flex: none; width: 44px; height: 44px; border-radius: 11px; object-fit: cover; }
.hds-mapcard span { min-width: 0; }
.hds-mapcard b { display: block; max-width: 180px; overflow: hidden; font-size: 13.5px; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.hds-mapcard small { display: block; margin-top: 2px; font-size: 12px; font-weight: 500; color: var(--ec, var(--hd-teal)); white-space: nowrap; }
.hds-mapcard:hover, .hds-mapcard:focus-visible, .hds-mapmk.is-hot .hds-mapcard { z-index: 2; border-color: var(--ec, var(--hd-blue)); transform: translateY(-4px) scale(1.04); box-shadow: 0 22px 36px -14px rgba(0, 27, 68, .6); }
.hds-mapmk:hover, .hds-mapmk.is-hot { z-index: 5; }
.hds-mapcluster { position: relative; display: grid; place-items: center; align-content: center; width: 66px; height: 66px; padding: 0; border: 3px solid #fff; border-radius: 50%; background: var(--hd-navy); color: #fff; box-shadow: 0 14px 28px -12px rgba(0, 27, 68, .6); font-family: var(--hds-font); line-height: 1; cursor: pointer; transition: transform .25s var(--hds-ease), background-color .2s; }
.hds-mapcluster b { font-size: 21px; font-weight: 600; }
.hds-mapcluster small { margin-top: 3px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; opacity: .8; }
.hds-mapcluster::before { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--hd-sky); opacity: 0; }
.hds-mapcluster:hover { background: var(--hd-blue); transform: scale(1.08); }
@media (prefers-reduced-motion: no-preference) {
	.hds-mapcard { animation: hdsCardIn .55s var(--hds-ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
	.hds-mapcluster { animation: hdsCardIn .55s var(--hds-ease) both; }
	.hds-mapcluster::before { animation: hdsSonar 2.4s ease-out infinite; }
}
@keyframes hdsCardIn { from { opacity: 0; transform: translateY(12px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes hdsSonar { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }

/* Map popup: the venue's events */
.hds-mappop .maplibregl-popup-content { padding: 0; overflow: hidden; border-radius: 18px; box-shadow: 0 30px 60px -24px rgba(0, 27, 68, .55); font-family: var(--hds-font); }
.hds-mappop .maplibregl-popup-close-button { top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; color: #fff; font-size: 20px; line-height: 26px; }
.hds-mappop .maplibregl-popup-close-button:hover { background: rgba(255, 255, 255, .15); }
.hds-mappop__head { padding: 16px 44px 14px 18px; background: linear-gradient(135deg, var(--hd-navy), #0b3a78); color: #fff; }
.hds-mappop__head b { display: block; font-size: 16px; font-weight: 600; }
.hds-mappop__head small { display: block; margin-top: 3px; font-size: 12.5px; color: #b3cde6; }
.hds-mappop__list { max-height: 300px; margin: 0; padding: 8px; overflow-y: auto; list-style: none; }
.hds-mappop__list a { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; align-items: center; padding: 8px; border-radius: 12px; color: var(--hd-ink); text-decoration: none; transition: background-color .2s; }
.hds-mappop__list a:hover { background: var(--hd-mist); }
.hds-mappop__list time { display: grid; justify-items: center; padding: 6px 0; border-radius: 10px; background: #fff; border: 1px solid var(--hd-line); line-height: 1; }
.hds-mappop__list time span { font-size: 10.5px; font-weight: 600; text-transform: uppercase; color: var(--ec, var(--hd-ember)); }
.hds-mappop__list time b { margin-top: 2px; font-size: 18px; font-weight: 600; color: var(--hd-navy); }
.hds-mappop__list strong { display: block; font-size: 14px; font-weight: 500; line-height: 1.3; color: var(--hd-navy); }
.hds-mappop__list a:hover strong { color: var(--ec, var(--hd-blue)); }
.hds-mappop__list small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--hd-slate); }
.hds-mappop__dir { display: block; margin: 0 8px 8px; padding: 10px 14px; border-radius: 12px; background: var(--hd-mist); color: var(--hd-action); font-size: 13.5px; font-weight: 500; text-align: center; text-decoration: none; }
.hds-mappop__dir:hover { background: var(--hd-navy); color: #fff; }
@media (max-width: 700px) { .hds-evmap__legend span:not(.hds-evmap__hint):nth-child(n+2) { display: none; } }

/* Map view fixes + stacked venue cards (overrides TEC's reset inside .tribe-common) */
.tribe-events-pro .tribe-events-pro-map__event-cards { position: static !important; height: auto !important; overflow: visible !important; }
.hds-evlayer { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hds-evlayer__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hds-evlayer__lines path { fill: none; stroke: var(--ec, #136fa5); stroke-width: 2; stroke-dasharray: 4 4; opacity: .75; }
.tribe-common .hds-mapdot { position: absolute; left: -7px; top: -7px; width: 14px; height: 14px; border: 3px solid #fff; border-radius: 50%; background: var(--ec, #136fa5); box-shadow: 0 2px 6px rgba(0, 27, 68, .4); }
.tribe-common .hds-mapdot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--ec, #136fa5); opacity: 0; }
@media (prefers-reduced-motion: no-preference) { .tribe-common .hds-mapdot::after { animation: hdsSonar 2.4s ease-out infinite; } }
.tribe-common .hds-mapmk { position: absolute; left: 0; top: 0; padding: 0; pointer-events: auto; transition: transform .35s var(--hds-ease); }
.tribe-common .hds-mapcard { position: relative; display: flex; align-items: center; gap: 10px; max-width: 270px; margin: 0; padding: 6px 14px 6px 6px; border: 2px solid #fff; border-radius: 16px; background: #fff; }
.tribe-common .hds-mapcard::after { display: none; }
.tribe-common .hds-mapcard img { width: 44px; height: 44px; border-radius: 11px; }
.hds-mapmk:hover, .hds-mapmk.is-hot { z-index: 3; }
.hds-evmap .maplibregl-popup { z-index: 4; }
.hds-evmap .maplibregl-ctrl-bottom-right { z-index: 5; }
.tribe-common .hds-mappop .maplibregl-popup-content { padding: 0; }
.tribe-common .hds-mappop__head { padding: 16px 44px 14px 18px; }
.tribe-common .hds-mappop__list { margin: 0; padding: 8px; list-style: none; }
.tribe-common .hds-mappop__list a { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; align-items: center; padding: 8px; border-radius: 12px; }
.tribe-common .hds-mappop__list time { display: grid; justify-items: center; padding: 6px 0; border: 1px solid var(--hd-line); border-radius: 10px; }
.tribe-common .hds-mappop__dir { display: block; margin: 0 8px 8px; padding: 10px 14px; border-radius: 12px; }
.tribe-common .hds-mappop .maplibregl-popup-close-button { top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; color: #fff; font-size: 20px; line-height: 26px; }
.tribe-common .hds-mappop .maplibregl-popup-tip { border-top-color: #fff; }
.tooltipster-base.tribe-events-tooltip-theme, .tooltipster-base.tribe-events-tooltip-theme.tribe-common { padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.tribe-common .tribe-events-c-search__input-control-icon-svg { width: 17px; height: 17px; }
/* Map view cards: square thumbnails, no frame around the grid */
.tribe-events-pro .tribe-events-pro-map__event-column, .tribe-events-pro .tribe-events-pro-map__event-cards-wrapper { border: 0 !important; box-shadow: none !important; }
.tribe-events-pro .tribe-events-pro-map__event-featured-image-wrapper { flex: none; }
.tribe-events-pro .tribe-events-pro-map__event-featured-image { width: 96px; height: 96px !important; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.tribe-events-pro .tribe-events-pro-map__event-actions a, .tribe-events-pro .tribe-events-pro-map__event-actions .tribe-events-c-small-cta__link { font-weight: 500; }
/* Prev / next links under views become pills */
.tribe-common .tribe-events-c-nav { border-top: 0; }
.tribe-common .tribe-events-c-nav__list { gap: 12px; }
.tribe-common .tribe-events-c-nav__prev, .tribe-common .tribe-events-c-nav__next, .tribe-common .tribe-events-pro-map__nav .tribe-events-c-nav__prev, .tribe-common .tribe-events-pro-map__nav .tribe-events-c-nav__next { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--hd-line); border-radius: 999px; background: #fff; color: var(--hd-ink); font: 500 14px/1 var(--hds-font); transition: border-color .2s, box-shadow .25s, transform .25s var(--hds-ease); }
.tribe-common .tribe-events-c-nav__prev:hover, .tribe-common .tribe-events-c-nav__next:hover { border-color: var(--hd-blue); color: var(--hd-blue); transform: translateY(-1px); box-shadow: 0 8px 18px -12px rgba(0, 27, 68, .45); }
.tribe-common .tribe-events-c-nav__prev:disabled, .tribe-common .tribe-events-c-nav__next:disabled { opacity: .45; transform: none; box-shadow: none; }
.tribe-events-pro .tribe-events-pro-map__nav { border: 0 !important; padding: 18px 0 0 !important; }
/* Cards inside TEC views (its reset strips div padding) */
.tribe-common .hds-dayempty { width: 100%; grid-column: 1 / -1; }
.tribe-common .hds-dayempty__head { padding: 22px; }
.tribe-common .hds-events { gap: 20px; }
.tribe-common .hds-event__body { padding: 32px 16px 18px; }
.tribe-common .hds-event__date { padding: 6px 0; }
.tribe-common .hds-event__tags { padding-top: 6px; }
.tribe-common .hds-chip { padding: 3px 10px; }
.tribe-events-pro .tribe-events-pro-map__event-column::before, .tribe-events-pro .tribe-events-pro-map__event-column::after { display: none !important; }
.tribe-events-pro .tribe-events-pro-map__event-card-button { border: 0 !important; background: none !important; }
.tribe-events-pro .tribe-events-pro-map__event-card-spacer { display: none; }
.tribe-events-pro .tribe-events-pro-map__nav .tribe-events-c-nav__list { display: flex; justify-content: space-between; align-items: center; }
.tribe-events-pro .tribe-events-pro-map__nav .tribe-events-c-nav__list-item { width: auto; flex: none; }
@media (max-width: 700px) { .hds-evmap__legend span:not(.hds-evmap__hint) { display: none; } }
.tribe-common .tribe-events-c-search__input:focus, .tribe-common .tribe-events-c-search__input:focus-visible, .tribe-common .tribe-events-c-search__input-control:focus-within { outline: none !important; border-color: transparent !important; box-shadow: none !important; }

/* Round 4 (theme 1.5.7) */
.tribe-common .hds-tip { grid-template-columns: 190px minmax(0, 1fr); width: min(540px, calc(100vw - 24px)); min-height: 250px; }
.tribe-common .hds-tip .hds-tip__img { min-height: 250px; }
.tribe-common .hds-tip__body { padding: 22px 22px 20px; }
.tribe-common .hds-tip__body > [class*="tooltip-description"] { -webkit-line-clamp: 4; }
@media (max-width: 600px) { .tribe-common .hds-tip { grid-template-columns: 110px minmax(0, 1fr); min-height: 200px; } .tribe-common .hds-tip .hds-tip__img { min-height: 200px; } }
.tribe-common .hds-mapcard:hover, .tribe-common .hds-mapcard:focus-visible, .tribe-common .hds-mapmk.is-hot .hds-mapcard { background: #fff !important; color: var(--hd-navy); border-color: var(--ec, var(--hd-blue)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ec, #136fa5) 28%, transparent), 0 0 34px 8px color-mix(in srgb, var(--ec, #136fa5) 45%, transparent), 0 18px 30px -14px rgba(0, 27, 68, .5); }
.tribe-common .tribe-events-c-search__input-control-icon-svg { top: 50%; bottom: auto; margin-top: -8.5px; transform: none; }
.tribe-common--breakpoint-medium .tribe-events-c-events-bar--border { padding: 5px 6px 5px 8px; }
.tribe-common .hds-vhead__cats { margin-top: 14px; row-gap: 10px; }
.tribe-events .tribe-events-calendar-day__event { margin: 18px 0 30px !important; padding: 20px !important; }
.tribe-events .tribe-events-calendar-day__event-content { flex: 1 1 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
.tribe-events .tribe-events-calendar-day__event-details { padding-left: 4px !important; }
.tribe-events .tribe-events-calendar-day__event-featured-image-wrapper { padding-right: 0 !important; }
/* TEC colors visited/focused links navy; keep button text white in every state */
.tribe-common a.hds-tip__cta, .tribe-common a.hds-tip__cta:visited, .tribe-common a.hds-tip__cta:active, .tribe-common a.hds-tip__cta:focus, .tribe-common a.hds-tip__cta:hover { color: #fff; }
.tribe-common .hds-tip__body > [class*="tooltip-title"] a:visited { color: var(--hd-navy); }

/* ==========================================================================
   Mobile pass (theme 1.5.10)
   ========================================================================== */

/* One column that can shrink: a plain 1fr track grew to the width of the
   nowrap category row and pushed the whole page past the screen. */
.hds-vhead, .hds-vhead__intro, .hds-vhead__bar { min-width: 0; max-width: 100%; }
@media (max-width: 900px) { .hds-vhead__hero { grid-template-columns: minmax(0, 1fr); } }
/* View pills keep their full size inside the scrolling bar */
.hds-ev__bar .hds-pill { flex: none; white-space: nowrap; }
@media (max-width: 760px) {
	.tribe-common .hds-vhead .hds-ev__bar { border-radius: 22px; }
	.tribe-common .hds-vhead .hds-ev__bar-group { scroll-snap-type: x proximity; scroll-padding-inline: 4px; }
	.tribe-common .hds-vhead .hds-ev__bar-group .hds-pill { scroll-snap-align: start; }
}
@media (max-width: 700px) {
	/* TEC's reset (.tribe-common figure { display: block }) outranked the hide rule */
	.tribe-common .hds-vhead__art { display: none; }
	.tribe-common .hds-vhead__hero { padding-top: 18px; }
	.tribe-common .hds-vhead__title { font-size: clamp(2rem, 9vw, 2.4rem); }
	.tribe-common .hds-vhead__cats { margin-inline: -16px; padding-inline: 16px; scroll-padding-inline: 16px; }
}
/* TEC bleeds its mobile header 19.5px past a 16px gutter; keep it inside the page */
@media (max-width: 767px) { .tribe-common.tribe-events .tribe-events-header { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; } }
@media (max-width: 767px) {
	.tribe-common .tribe-events-pro-photo .tribe-common-g-row--gutters { margin-left: 0; margin-right: 0; }
	.tribe-common .tribe-events-pro-photo .tribe-common-g-row--gutters > .tribe-common-g-col { padding-left: 0; padding-right: 0; }
}

/* Phone search: TEC turns the search into a toggle + dropdown under 768 px.
   The desktop rule above made the container transparent, so the fields
   floated over the calendar. Here it becomes a card that slides down and
   fades in, and slides back up when closed (display transitions need
   allow-discrete + @starting-style; older browsers simply show/hide). */
@media (max-width: 767px) {
	.tribe-common .tribe-events-c-events-bar { position: relative; }
	.tribe-common .tribe-events-c-events-bar__search-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--hd-line); border-radius: 50%; background: #fff; color: var(--hd-navy); outline: none; box-shadow: 0 6px 16px -10px rgba(0, 27, 68, .45); transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .35s cubic-bezier(.2, .8, .2, 1); -webkit-tap-highlight-color: transparent; }
	.tribe-common .tribe-events-c-events-bar__search-button::before, .tribe-common .tribe-events-c-events-bar__search-button::after { display: none !important; }
	.tribe-common .tribe-events-c-events-bar__search-button:focus-visible { box-shadow: 0 0 0 3px rgba(3, 169, 244, .3); }
	.tribe-common .tribe-events-c-events-bar__search-button-icon-svg { width: 17px; height: 17px; transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
	.tribe-common .tribe-events-c-events-bar__search-button-icon-svg path { fill: currentColor; }
	.tribe-common .tribe-events-c-events-bar__search-button--active { background: var(--hd-navy); border-color: var(--hd-navy); color: #fff; box-shadow: 0 10px 22px -12px rgba(0, 27, 68, .7); }
	.tribe-common .tribe-events-c-events-bar__search-button--active .tribe-events-c-events-bar__search-button-icon-svg { transform: scale(1.1) rotate(-12deg); }

	.tribe-common .tribe-events-c-events-bar__search-container { left: 0; right: 0; top: calc(100% + 10px); width: auto; padding: 10px; background: #fff; border: 1px solid var(--hd-line); border-radius: 24px; box-shadow: 0 28px 56px -28px rgba(0, 27, 68, .5), 0 2px 6px -2px rgba(0, 27, 68, .08); transform-origin: calc(100% - 22px) -10px; opacity: 0; transform: translateY(-12px) scale(.97); transition: opacity .25s ease, transform .35s cubic-bezier(.2, .8, .2, 1), display .35s allow-discrete; }
	.tribe-common .tribe-events-c-events-bar__search-button--active + .tribe-events-c-events-bar__search-container { opacity: 1; transform: none; }
	@starting-style {
		.tribe-common .tribe-events-c-events-bar__search-button--active + .tribe-events-c-events-bar__search-container { opacity: 0; transform: translateY(-12px) scale(.97); }
	}
	/* A small notch pointing at the toggle */
	.tribe-common .tribe-events-c-events-bar__search-container::before { content: ""; position: absolute; top: -7px; right: 16px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--hd-line); border-top: 1px solid var(--hd-line); border-radius: 3px 0 0 0; transform: rotate(45deg); }
	.tribe-common .tribe-events-c-events-bar__search { padding: 0; background: none; }
	.tribe-common .tribe-events-c-search { display: flex; align-items: center; gap: 8px; border-radius: 0; }
	.tribe-common .tribe-events-c-search__input-group { flex: 1 1 auto; min-width: 0; margin: 0; }
	.tribe-common .tribe-events-c-search__input-control--keyword { margin: 0; background: var(--hd-mist); border-radius: 999px; }
	.tribe-common .tribe-events-c-search__input { width: 100%; height: 46px; padding: 0 12px 0 42px; border: 0; font-size: 16px; }
	.tribe-common .tribe-events-c-search__input-control-icon-svg { left: 15px; right: auto; }
	.tribe-common .tribe-events-c-search__button { flex: none; width: auto; height: 46px; margin: 0; padding: 0 18px; font-size: 15px; }
	/* Staggered entrance for the field and the button */
	.tribe-common .tribe-events-c-events-bar__search-button--active + .tribe-events-c-events-bar__search-container .tribe-events-c-search > * { animation: hdsSearchItem .45s cubic-bezier(.2, .8, .2, 1) both; }
	.tribe-common .tribe-events-c-events-bar__search-button--active + .tribe-events-c-events-bar__search-container .tribe-events-c-search > :last-child { animation-delay: .07s; }
}
@keyframes hdsSearchItem { from { opacity: 0; transform: translateY(-6px); } }
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
	.tribe-common .tribe-events-c-events-bar__search-container { transition: none; transform: none; }
	.tribe-common .tribe-events-c-events-bar__search-button--active + .tribe-events-c-events-bar__search-container .tribe-events-c-search > * { animation: none; }
}
@media (max-width: 767px) {
	/* TEC's .tribe-events …search-button:focus resets border, radius and background; outrank it */
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button:hover, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button:focus { border: 1px solid var(--hd-line); border-radius: 50%; background: #fff; color: var(--hd-navy); outline: none; box-shadow: 0 6px 16px -10px rgba(0, 27, 68, .45); }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button:focus-visible { box-shadow: 0 0 0 3px rgba(3, 169, 244, .3); }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button--active, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button--active:hover, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button--active:focus { border-color: var(--hd-navy); background: var(--hd-navy); color: #fff; box-shadow: 0 10px 22px -12px rgba(0, 27, 68, .7); }
	/* The bar wrapper is only as wide as the button, so size the panel to the page gutter and pin it right */
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-container { left: auto; right: 0; width: min(calc(100vw - 32px), 560px); }
}
@media (max-width: 767px) {
	.tribe-common.tribe-events .tribe-events-c-search__input-group { flex: 1 1 auto; width: auto; min-width: 0; }
	.tribe-common.tribe-events .tribe-events-c-search__button { flex: none; width: auto; }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button { opacity: 1; }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button .tribe-events-c-events-bar__search-button-icon-svg path { fill: currentColor; }
}
@media (max-width: 767px) {
	.tribe-common.tribe-events .tribe-events-c-search__button { margin: 0 !important; align-self: center; }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button:hover, .tribe-common.tribe-events .tribe-events-c-events-bar__search-button:focus { opacity: 1 !important; }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button .tribe-events-c-events-bar__search-button-icon-svg { color: inherit !important; }
	.tribe-common.tribe-events .tribe-events-c-events-bar__search-button .tribe-events-c-events-bar__search-button-icon-svg path { fill: currentColor !important; }
}

/* Visually hidden, still announced (WordPress core class; not every page loads a stylesheet that defines it). */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; word-wrap: normal !important; }

/* ---------- Event pages: RSVP (Event Tickets), theme 1.7.6 ----------
   Event Tickets' RSVP block restyled as an event-page card in the event's
   category colors (--c / --c-soft). Its markup sits inside .tribe-common,
   whose reset zeroes padding and borders, so rules are scoped under
   .hds-ev__rsvp-box .event-tickets to outrank it. */
.hds-ev__rsvp-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 14px 28px; margin-bottom: 22px; }
.hds-ev__rsvp-head h2 { margin: 0; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -.01em; color: var(--hd-navy); }
.hds-ev__meter { flex: 0 1 300px; }
.hds-ev__meter span { display: block; position: relative; height: 10px; border-radius: 999px; background: var(--c-soft); overflow: hidden; }
.hds-ev__meter span::before { content: ""; position: absolute; inset: 0 auto 0 0; width: max(var(--fill), 5%); border-radius: inherit; background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c) 70%, #fff)); transform-origin: left; animation: hds-meter 1.4s var(--hds-ease) both .2s; }
.hds-ev__meter span::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent); transform: translateX(-100%); animation: hds-meter-shine 3.6s ease-in-out 1.6s infinite; }
.hds-ev__meter p { margin: 8px 0 0; font-size: 14px; color: #5a6475; }
.hds-ev__meter b { color: var(--hd-navy); font-weight: 600; }
@keyframes hds-meter { from { transform: scaleX(0); } }
@keyframes hds-meter-shine { 60%, 100% { transform: translateX(100%); } }

.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-wrapper { position: relative; margin: 0; border: 1px solid var(--hd-line); border-radius: 22px; background: linear-gradient(135deg, var(--c-soft) 0%, #fff 62%); box-shadow: 0 30px 60px -40px rgba(0, 27, 68, .45); overflow: hidden; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px 36px; margin: 0; padding: clamp(22px, 3vw, 34px); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp > .tribe-common-g-col { width: auto; max-width: none; padding: 0; border: 0; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-details { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-title { flex: 1 0 100%; margin: 0; font: 600 clamp(20px, 2vw, 24px)/1.2 var(--hds-font); color: var(--hd-navy); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-description { flex: 1 0 100%; margin: 0 0 6px; font: 400 15px/1.55 var(--hds-font); color: #4b5563; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-description p { margin: 0; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-attendance,
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-availability { display: inline-flex; align-items: baseline; gap: 5px; margin: 0; padding: 6px 14px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 1px var(--hd-line); font: 400 14px/1.2 var(--hds-font); color: #5a6475; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-attendance-number,
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-availability-quantity { font: 600 15px/1.2 var(--hds-font); color: var(--c); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-attendance-going { font: inherit; color: inherit; text-transform: lowercase; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 0; padding: 0; border: 0; text-align: center; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions-rsvp > span { display: block; margin: 0 0 10px; font: 600 12px/1.2 var(--hds-font); letter-spacing: .14em; text-transform: uppercase; color: var(--c); }
.hds-ev__rsvp-box .event-tickets .tribe-common-c-btn,
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-button:not(.tribe-tickets__rsvp-form-button--cancel) { display: inline-flex; align-items: center; justify-content: center; min-width: 180px; height: auto; margin: 0; padding: 15px 34px; border: 0; border-radius: 999px; background: var(--hd-coral); color: var(--hd-navy); font: 600 16px/1.2 var(--hds-font); cursor: pointer; transition: transform .25s var(--hds-ease), box-shadow .25s; }
.hds-ev__rsvp-box .event-tickets .tribe-common-c-btn:hover,
.hds-ev__rsvp-box .event-tickets .tribe-common-c-btn:focus-visible { background: var(--hd-coral); color: var(--hd-navy); transform: translateY(-2px); box-shadow: 0 0 0 4px rgba(255, 107, 74, .22), 0 14px 26px -12px rgba(255, 107, 74, .8); outline: none; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions-button-going { animation: hds-rsvp-nudge 3.2s var(--hds-ease) 1.5s 2; }
@keyframes hds-rsvp-nudge { 0%, 70%, 100% { transform: none; } 78% { transform: translateY(-3px) scale(1.03); } 88% { transform: translateY(0) scale(.99); } }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions-button-not-going { background: none; border: 0; color: #5a6475; text-decoration: underline; font: 400 14px var(--hds-font); }

/* The form (after Going) */
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-wrapper { padding: clamp(22px, 3vw, 34px); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-title h3 { margin: 0 0 18px; font: 600 19px/1.35 var(--hds-font); color: var(--hd-navy); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form-field { margin: 0; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form-field-label { display: block; margin: 0 0 6px; font: 500 14px/1.3 var(--hds-font); color: var(--hd-navy); }
.hds-ev__rsvp-box .event-tickets .tribe-required { color: var(--hd-ember); }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form-field-input { width: 100%; height: 50px; padding: 0 16px; border: 1px solid #cfd8e0; border-radius: 14px; background: #fff; font: 400 16px var(--hds-font); color: var(--hd-ink); transition: border-color .2s, box-shadow .2s; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form-field-input:focus { border-color: var(--c); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c) 18%, transparent); outline: none; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-input-number { max-width: 120px; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-buttons { grid-column: 1 / -1; display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin: 6px 0 0; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-button--cancel { margin: 0; padding: 10px 8px; border: 0; background: none; font: 500 15px var(--hds-font); color: #5a6475; cursor: pointer; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-button--cancel:hover { color: var(--hd-navy); }

/* Confirmation, sold out, messages */
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-message { display: flex; align-items: center; gap: 12px; margin: 0; padding: 18px clamp(22px, 3vw, 34px); border: 0; border-radius: 0; background: color-mix(in srgb, var(--c) 12%, #fff); color: var(--hd-navy); font: 500 15px/1.5 var(--hds-font); animation: hds-rsvp-in .5s var(--hds-ease) both; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-message svg { flex: none; color: var(--c); fill: currentColor; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-message-link { color: var(--c); }
@keyframes hds-rsvp-in { from { opacity: 0; transform: translateY(-6px); } }
.hds-ev__rsvp-box .tribe-tickets-loader__dots { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255, 255, 255, .7); }
.hds-ev__rsvp-box .tribe-tickets-loader__dots.tribe-common-a11y-hidden { display: none; }
.hds-ev__rsvp-box .tribe-common-c-loader__dot { width: 12px; height: 12px; fill: var(--c); }

/* Event Tickets' own rules that outrank the ones above. */
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-wrapper { width: 100%; max-width: none; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-attendance,
.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-availability { flex-direction: row; white-space: nowrap; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form input.tribe-tickets__form-field-input { height: 50px; border: 1px solid #cfd8e0; border-radius: 14px; }
.hds-ev__rsvp-box .event-tickets .tribe-tickets__form input.tribe-tickets__form-field-input:focus { border-color: var(--c); }
.hds-ev__rsvp-box .tribe-common .tribe-tickets__rsvp-form-buttons button.tribe-common-c-btn { flex: none; width: auto; }

@media (max-width: 640px) {
	.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp { grid-template-columns: minmax(0, 1fr); }
	.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions,
	.hds-ev__rsvp-box .event-tickets .tribe-common-c-btn { width: 100%; }
	.hds-ev__rsvp-box .event-tickets .tribe-tickets__form { grid-template-columns: minmax(0, 1fr); }
	.hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-form-buttons { flex-direction: column-reverse; align-items: stretch; }
	.hds-ev__rsvp-box .tribe-common .tribe-tickets__rsvp-form-buttons button.tribe-common-c-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.hds-ev__meter span::before, .hds-ev__meter span::after, .hds-ev__rsvp-box .event-tickets .tribe-tickets__rsvp-actions-button-going { animation: none; }
}
/* RSVP call to action in calendar views (Event Tickets' small CTA). */
.tribe-common .tribe-events-c-small-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.tribe-common .tribe-events-c-small-cta a.tribe-events-c-small-cta__link { display: inline-flex; align-items: center; padding: 6px 14px; border: 0; border-radius: 999px; background: var(--ec, var(--hd-blue)); color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; transition: transform .2s var(--hds-ease), box-shadow .2s; }
.tribe-common .tribe-events-c-small-cta a.tribe-events-c-small-cta__link:hover { transform: translateY(-1px); box-shadow: 0 8px 16px -8px var(--ec, var(--hd-blue)); color: #fff; }
.tribe-common .tribe-events-c-small-cta__price { font-weight: 600; color: var(--hd-navy); }
.tribe-common .tribe-events-c-small-cta__stock { color: #5a6475; }
