@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --chc-bg: #ffffff;
  --chc-bg-soft: #edf9ff;
  --chc-bg-soft-2: #e3f4ff;
  --chc-bg-band: #d9efff;
  --chc-surface: #ffffff;
  --chc-surface-soft: #f8fcff;
  --chc-line: #d7e9fb;
  --chc-line-strong: #c4dbf5;
  --chc-brand: #2a65c7;
  --chc-brand-strong: #1d4694;
  --chc-brand-ink: #1e4586;
  --chc-heading: #1d4588;
  --chc-text: #4a648f;
  --chc-text-soft: #7188ac;
  --chc-accent: #ffd927;
  --chc-accent-strong: #f2c400;
  --chc-success: #2aa269;
  --chc-warning: #ffc842;
  --chc-danger: #d35a5a;
  --chc-shadow: 0 14px 34px rgba(32, 85, 156, 0.08);
  --chc-shadow-lg: 0 22px 54px rgba(32, 85, 156, 0.1);
  --chc-radius-sm: 18px;
  --chc-radius-md: 24px;
  --chc-radius-lg: 36px;
  --chc-container: 1120px;
  --chc-content: 760px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--chc-bg);
  color: var(--chc-text);
  font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
  line-height: 1.72;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.1rem;
}

.chc-page-shell {
  min-height: 100vh;
}

.chc-container,
.chc-container-narrow {
  width: min(100% - 2rem, var(--chc-container));
  margin: 0 auto;
}

.chc-container-narrow {
  width: min(100% - 2rem, var(--chc-content));
}

.chc-module-shell {
  width: min(100% - 2rem, var(--chc-container));
  margin-inline: auto;
}

.chc-shortcode-shell,
.chc-adverts-shell,
.chc-community-index,
.chc-community-category,
.chc-member-dashboard-app,
.chc-profile-editor-shell,
.chc-advert-form-shell,
.chc-my-adverts,
.chc-join-page-shell,
.chc-blog-page {
  margin-block: clamp(2.5rem, 6vw, 4.75rem);
}

.chc-section {
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
}

.chc-section-tight {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.chc-section-muted {
  background: var(--chc-bg-soft);
}

.chc-grid,
.chc-grid-2,
.chc-grid-3,
.chc-grid-4,
.chc-two-column,
.chc-split-card,
.chc-aside-layout,
.chc-form-grid,
.chc-filter-bar,
.chc-footer-grid,
.chc-hero-grid,
.chc-benefit-strip,
.chc-process-grid,
.chc-news-grid,
.chc-feature-grid {
  display: grid;
  gap: 1.5rem;
}

.chc-grid,
.chc-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chc-grid-3,
.chc-news-grid,
.chc-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chc-grid-4,
.chc-benefit-strip,
.chc-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chc-two-column {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.chc-split-card,
.chc-aside-layout,
.chc-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.chc-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chc-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 233, 251, 0.84);
  backdrop-filter: blur(10px);
}

.chc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chc-logo {
  /* Adjust these four values if you want to resize the header logo manually. */
  --chc-header-logo-width-desktop: 54px;
  --chc-header-logo-height-desktop: 54px;
  --chc-header-logo-width-mobile: 42px;
  --chc-header-logo-height-mobile: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.chc-logo-image {
  display: block;
  width: var(--chc-header-logo-width-desktop);
  height: var(--chc-header-logo-height-desktop);
  max-width: var(--chc-header-logo-width-desktop);
  max-height: var(--chc-header-logo-height-desktop);
  aspect-ratio: 1;
  object-fit: contain;
}

.chc-logo-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d4694, #2a65c7);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(42, 101, 199, 0.18);
}

.chc-logo-text {
  display: inline-flex;
  flex-direction: column;
  color: var(--chc-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.chc-logo-text small {
  color: var(--chc-text-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chc-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
}

.chc-menu a,
.chc-sidebar-nav a,
.chc-dashboard-nav a {
  color: var(--chc-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity 180ms ease, color 180ms ease;
}

.chc-menu a:hover,
.chc-menu a.is-active,
.chc-sidebar-nav a:hover,
.chc-sidebar-nav a.active,
.chc-dashboard-nav a:hover,
.chc-dashboard-nav a.is-active {
  color: var(--chc-brand);
}

.chc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.chc-button,
.chc-button-secondary,
.chc-button-ghost,
.chc-profile-link,
.chc-dashboard-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.chc-button {
  background: var(--chc-accent);
  color: var(--chc-heading);
  box-shadow: 0 10px 20px rgba(255, 217, 39, 0.22);
}

.chc-button-secondary,
.chc-dashboard-button.is-primary {
  background: var(--chc-brand);
  color: #fff;
}

.chc-button-ghost,
.chc-profile-link,
.chc-dashboard-button {
  background: #fff;
  color: var(--chc-brand);
  border-color: var(--chc-brand);
}

.chc-account-menu {
  position: relative;
  display: inline-flex;
}

.chc-account-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  min-width: 11rem;
  height: 0.75rem;
}

.chc-account-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 80;
  min-width: 11rem;
  padding: 0.55rem;
  border: 1px solid var(--chc-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(28, 80, 150, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.chc-account-menu:hover .chc-account-dropdown,
.chc-account-menu:focus-within .chc-account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chc-account-dropdown a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: var(--chc-heading);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.chc-account-dropdown a:hover,
.chc-account-dropdown a:focus-visible {
  background: var(--chc-surface-soft);
  color: var(--chc-brand);
  outline: none;
}

.chc-button:hover,
.chc-button-secondary:hover,
.chc-button-ghost:hover,
.chc-profile-link:hover,
.chc-dashboard-button:hover {
  transform: translateY(-1px);
}

.chc-mobile-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--chc-line);
  background: #fff;
  color: var(--chc-brand);
}

.chc-hero {
  padding: 0 0 3rem;
  background:
    radial-gradient(circle at 78% 24%, rgba(42, 101, 199, 0.06), rgba(42, 101, 199, 0) 18rem),
    linear-gradient(180deg, #eaf8ff 0%, #edf9ff 100%);
  border-bottom: 1px solid rgba(215, 233, 251, 0.84);
}

.chc-hero-grid {
  align-items: center;
  min-height: 520px;
}

.chc-hero-copy,
.chc-page-intro,
.chc-shortcode-header,
.chc-section-title,
.chc-callout {
  display: grid;
  gap: 1rem;
}

.chc-hero-copy {
  max-width: 30rem;
}

.chc-page-intro {
  max-width: 44rem;
  padding-bottom: 0.75rem;
}

.chc-section-title {
  margin-bottom: 2rem;
  align-items: end;
}

.chc-eyebrow,
.chc-dashboard-kicker {
  margin: 0;
  color: var(--chc-brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chc-badge,
.chc-chip,
.chc-status-pill,
.chc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.chc-badge,
.chc-pill.is-info {
  background: var(--chc-brand);
  color: #fff;
}

.chc-chip,
.chc-pill.is-muted {
  background: #eef6ff;
  color: var(--chc-brand);
  border: 1px solid var(--chc-line);
}

.chc-status-pill,
.chc-pill.is-success {
  background: #ebfbf3;
  color: var(--chc-success);
}

.chc-pill.is-warning {
  background: #fff6df;
  color: #bb8900;
}

.chc-pill.is-danger {
  background: #fff0f0;
  color: var(--chc-danger);
}

.chc-pill.is-accent {
  background: var(--chc-accent);
  color: var(--chc-heading);
}

.chc-hero-copy h1,
.chc-page-intro h1,
.chc-section-title h2,
.chc-callout h2,
.chc-panel h1,
.chc-panel h2,
.chc-panel h3,
.chc-card h3,
.chc-list-card h3,
.chc-box h3,
.chc-topic-row h3,
.chc-dashboard-panel h3 {
  margin: 0;
  color: var(--chc-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.chc-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 8.8ch;
}

.chc-page-intro h1,
.chc-callout h2,
.chc-panel h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
}

.chc-section-title h2,
.chc-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.chc-card h3,
.chc-list-card h3,
.chc-box h3,
.chc-topic-row h3,
.chc-panel h3,
.chc-dashboard-panel h3 {
  font-size: 1.08rem;
}

.chc-hero-copy p,
.chc-page-intro p,
.chc-section-title p,
.chc-callout p,
.chc-panel p,
.chc-card p,
.chc-list-card p,
.chc-box p,
.chc-topic-row p,
.chc-footer p,
.chc-faq-item p {
  color: var(--chc-text);
}

.chc-hero-copy p,
.chc-page-intro p {
  font-size: 1rem;
}

.chc-hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--chc-radius-lg);
  background:
    radial-gradient(circle at 52% 24%, rgba(42, 101, 199, 0.08), rgba(42, 101, 199, 0) 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    transparent;
}

.chc-hero-visual::before {
  content: "";
  position: absolute;
  top: 4.8rem;
  left: 50%;
  width: 10rem;
  height: 10rem;
  transform: translateX(-50%);
  border: 6px solid rgba(42, 101, 199, 0.08);
  border-radius: 50%;
}

.chc-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 2rem 1.5rem auto;
  width: 10rem;
  height: 4rem;
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    -4rem -1.4rem 0 -0.3rem rgba(255, 255, 255, 0.42),
    -2rem -2rem 0 -0.7rem rgba(255, 255, 255, 0.45);
}

.chc-hero-card {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: min(100%, 26rem);
  padding: 1.4rem;
  border: 1px solid rgba(215, 233, 251, 0.88);
  border-radius: var(--chc-radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--chc-shadow-lg);
}

.chc-partner-banner {
  padding: 3rem 0;
  background:
    linear-gradient(180deg, #dce9ff 0%, #d9e6fb 100%);
}

.chc-partner-banner .chc-panel {
  padding: 2.6rem 2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.chc-partner-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.chc-panel,
.chc-card,
.chc-list-card,
.chc-box,
.chc-sidebar-card,
.chc-form-panel,
.chc-dashboard-card,
.chc-topic-row,
.chc-category-group {
  background: var(--chc-surface);
  border: 1px solid var(--chc-line);
  border-radius: var(--chc-radius-md);
  box-shadow: var(--chc-shadow);
}

.chc-panel {
  padding: 2rem;
}

.chc-page-hero-panel {
  padding: clamp(2rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at top right, rgba(42, 101, 199, 0.08), transparent 15rem),
    linear-gradient(180deg, rgba(237, 249, 255, 0.96), #fff 100%);
}

.chc-page-hero-panel .chc-shortcode-header {
  max-width: 46rem;
}

.chc-card,
.chc-list-card,
.chc-box,
.chc-sidebar-card,
.chc-form-panel,
.chc-dashboard-card,
.chc-topic-row {
  padding: 1.45rem;
}

.chc-list-card + .chc-list-card,
.chc-topic-row + .chc-topic-row {
  margin-top: 1rem;
}

.chc-card-meta,
.chc-meta,
.chc-inline-meta,
.chc-utility-meta,
.chc-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.chc-card-meta,
.chc-meta,
.chc-inline-meta {
  color: var(--chc-text-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.chc-card-meta span,
.chc-meta span,
.chc-inline-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.chc-card-meta span::before,
.chc-meta span::before,
.chc-inline-meta span::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #9db7db;
}

.chc-stat {
  flex: 1 1 9.5rem;
  padding: 1.05rem 1.1rem;
  border-radius: var(--chc-radius-sm);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(196, 219, 245, 0.82);
}

.chc-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--chc-heading);
  font-size: 1.15rem;
  line-height: 1.2;
}

.chc-icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ddecff;
  color: var(--chc-brand);
  font-size: 1.3rem;
  font-weight: 800;
}

.chc-feature-band {
  background:
    linear-gradient(180deg, rgba(191, 235, 255, 0.6), rgba(194, 234, 255, 0.8));
  border-block: 1px solid rgba(196, 219, 245, 0.7);
}

.chc-feature-band .chc-card {
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 1rem 0.75rem;
}

.chc-process-grid .chc-card,
.chc-feature-grid .chc-card,
.chc-news-grid .chc-card {
  height: 100%;
}

.chc-process-grid .chc-card {
  text-align: center;
}

.chc-process-step {
  width: 5.2rem;
  height: 5.2rem;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #e3f0ff;
  color: var(--chc-brand-strong);
  font-size: 1.9rem;
  font-weight: 800;
}

.chc-filter-bar {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)) auto;
  padding: 1rem;
  background: var(--chc-surface);
  border: 1px solid var(--chc-line);
  border-radius: var(--chc-radius-md);
  box-shadow: var(--chc-shadow);
}

.chc-field,
.chc-select,
.chc-textarea,
.chc-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.chc-form select,
.chc-form textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--chc-line-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--chc-heading);
}

.chc-textarea,
.chc-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.chc-field:focus,
.chc-select:focus,
.chc-textarea:focus,
.chc-form input:focus,
.chc-form select:focus,
.chc-form textarea:focus {
  outline: none;
  border-color: var(--chc-brand);
  box-shadow: 0 0 0 4px rgba(42, 101, 199, 0.12);
}

.chc-form label,
.chc-form-group label {
  display: grid;
  gap: 0.45rem;
  color: var(--chc-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.chc-form label small,
.chc-field-hint {
  color: var(--chc-text-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.chc-alert,
.chc-form-note,
.chc-empty-state {
  padding: 1rem 1.1rem;
  border-radius: var(--chc-radius-sm);
  border: 1px solid var(--chc-line);
  background: #f9fcff;
}

.chc-empty-state {
  display: grid;
  gap: 0.45rem;
  min-height: 10rem;
  place-content: center;
  text-align: center;
}

.chc-empty-state strong,
.chc-alert strong {
  color: var(--chc-heading);
}

.chc-alert.is-accent,
.chc-form-note {
  background: #fff8d8;
}

.chc-alert.is-warning {
  background: #fff6df;
}

.chc-alert.is-success {
  background: #ebfbf3;
}

.chc-alert.is-danger {
  background: #fff1f1;
}

.chc-callout {
  padding: 2.2rem;
  background: linear-gradient(135deg, #2562c4 0%, #1d4694 100%);
  color: #fff;
  border-radius: var(--chc-radius-lg);
  box-shadow: var(--chc-shadow-lg);
}

.chc-callout h2,
.chc-callout .chc-eyebrow {
  color: #fff;
}

.chc-callout p,
.chc-callout .chc-card-meta,
.chc-callout .chc-meta {
  color: rgba(255, 255, 255, 0.84);
}

.chc-pricing,
.chc-table-wrap {
  overflow-x: auto;
}

.chc-pricing table,
.chc-table {
  width: 100%;
  border-collapse: collapse;
}

.chc-pricing th,
.chc-pricing td,
.chc-table th,
.chc-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--chc-line);
  text-align: left;
}

.chc-pricing th,
.chc-table th {
  color: var(--chc-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chc-faq {
  display: grid;
  gap: 1rem;
}

.chc-faq-item {
  padding: 1.25rem;
  border: 1px solid var(--chc-line);
  border-radius: var(--chc-radius-sm);
  background: #fff;
}

.chc-faq-item h3 {
  margin: 0 0 0.5rem;
  color: var(--chc-heading);
  font-size: 1rem;
}

.chc-placeholder {
  min-height: 10rem;
  border-radius: var(--chc-radius-md);
  border: 1px dashed var(--chc-line-strong);
  background:
    radial-gradient(circle at top left, rgba(42, 101, 199, 0.08), rgba(42, 101, 199, 0) 40%),
    linear-gradient(135deg, #f5fbff, #eef7ff);
}

.chc-placeholder.large {
  min-height: 20rem;
}

.chc-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #2b68cb 0%, #1f4ca0 100%);
  color: #fff;
}

.chc-footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
}

.chc-footer .chc-logo-text,
.chc-footer h3,
.chc-footer a {
  color: #fff;
}

.chc-footer .chc-logo-text small,
.chc-footer p,
.chc-footer small {
  color: rgba(255, 255, 255, 0.78);
}

.chc-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.chc-hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .chc-hero-grid,
  .chc-two-column,
  .chc-split-card,
  .chc-aside-layout,
  .chc-grid,
  .chc-grid-2,
  .chc-grid-3,
  .chc-grid-4,
  .chc-benefit-strip,
  .chc-process-grid,
  .chc-news-grid,
  .chc-feature-grid,
  .chc-filter-bar,
  .chc-form-grid,
  .chc-footer-grid {
    grid-template-columns: 1fr;
  }

  .chc-nav {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .chc-menu {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0 0;
  }

  .chc-nav.is-open .chc-menu {
    display: flex;
  }

  .chc-mobile-toggle {
    display: inline-flex;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .chc-nav {
    flex-wrap: nowrap;
    align-items: center;
  }

  .chc-menu {
    display: flex;
    width: auto;
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    padding: 0;
  }

  .chc-mobile-toggle {
    display: none;
  }
}

.chc-nav:not(.is-compact-menu) {
  flex-wrap: nowrap;
  align-items: center;
}

.chc-nav:not(.is-compact-menu) .chc-menu {
  display: flex !important;
  order: 0 !important;
  width: auto !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.chc-nav:not(.is-compact-menu) .chc-menu > a,
.chc-nav:not(.is-compact-menu) .chc-menu-parent,
.chc-nav:not(.is-compact-menu) .chc-more-toggle {
  white-space: nowrap;
  line-height: 1.1;
}

.chc-nav:not(.is-compact-menu) .chc-mobile-toggle {
  display: none !important;
}

.chc-nav.is-measuring-menu {
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.chc-nav.is-measuring-menu .chc-menu {
  display: flex !important;
  order: 0 !important;
  width: auto !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  visibility: hidden !important;
}

.chc-nav.is-measuring-menu .chc-mobile-toggle {
  display: none !important;
}

.chc-nav.is-compact-menu {
  flex-wrap: wrap;
  align-items: center;
}

.chc-nav.is-compact-menu .chc-mobile-toggle {
  display: inline-flex;
}

.chc-nav.is-compact-menu .chc-menu {
  display: none;
  order: 4;
  width: 100%;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.chc-nav.is-compact-menu.is-open .chc-menu {
  display: flex;
}

@media (max-width: 720px) {
  .chc-container,
  .chc-container-narrow {
    width: min(100% - 1rem, var(--chc-container));
  }

  .chc-logo-image {
    width: var(--chc-header-logo-width-mobile);
    height: var(--chc-header-logo-height-mobile);
    max-width: var(--chc-header-logo-width-mobile);
    max-height: var(--chc-header-logo-height-mobile);
  }

  .chc-section {
    padding: 3.5rem 0;
  }

  .chc-hero-grid {
    min-height: auto;
  }

  .chc-hero-copy h1 {
    max-width: none;
  }

  .chc-actions {
    width: 100%;
  }

  .chc-button,
  .chc-button-secondary,
  .chc-button-ghost,
  .chc-profile-link,
  .chc-dashboard-button {
    width: 100%;
  }

  .chc-topbar .chc-actions {
    width: auto;
    flex: 0 0 auto;
    gap: 0;
  }

  .chc-topbar .chc-button,
  .chc-topbar .chc-button-secondary,
  .chc-topbar .chc-button-ghost,
  .chc-topbar .chc-profile-link {
    width: auto;
    min-height: 2.85rem;
    padding: 0.78rem 1.1rem;
    white-space: nowrap;
  }
}
