:root {
  color-scheme: light;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #172326;
  --muted: #5e6b70;
  --line: #ddd5c8;
  --green: #064d2e;
  --green-strong: #03361f;
  --green-soft: #dceee9;
  --gold: #c99b3f;
  --red: #b54536;
  --shadow: 0 20px 55px rgba(23, 35, 38, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(221, 213, 200, 0.75);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.primary-nav a:hover,
.nav-login:hover,
.site-footer a:hover {
  color: var(--green);
}

.primary-nav a[aria-current="page"],
.nav-login[aria-current="page"] {
  color: var(--ink);
}

.nav-login {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 7px;
  color: var(--green);
}

.nav-cta {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #fff !important;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green);
  place-items: center;
  gap: 4px;
}

.mobile-menu-toggle span[aria-hidden="true"] {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-panel {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 850;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-strong);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.72;
  background: #e8eee9;
  color: #5f6f68;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(1.45rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  line-height: 1.05;
  font-weight: 930;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.button,
button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--gold);
  color: #1d211b;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #d9ad56;
}

.button.secondary,
button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

button.secondary:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

button.secondary:hover {
  background: #f5efe4;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}


.newsletter {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}


.newsletter p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.public-job-card,
.public-job-empty {
  padding: clamp(18px, 3vw, 24px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.public-job-card {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.3fr);
  align-items: start;
}

.job-card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.job-pill,
.job-source {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.job-pill {
  padding: 8px 10px;
  background: rgba(207, 157, 55, 0.16);
  color: #9a6d07;
  text-transform: uppercase;
}

.job-source {
  padding: 7px 9px;
  background: var(--green-soft);
  color: var(--green-strong);
}

.public-job-card h3,
.public-job-empty h3 {
  margin: 0 0 8px;
  color: var(--green-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  line-height: 1.2;
}

.job-description,
.public-job-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.newsletter {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(7, 21, 19, 0.84);
  box-shadow: none;
}

.newsletter label {
  margin-top: 12px;
}

.newsletter label > span {
  color: #fff;
}

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(12, 91, 82, 0.18);
  border-color: var(--green);
}


.toggle {
  min-height: 42px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}


.toggle span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}


.toggle input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}


.toggle:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.error {
  display: none;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
}

.actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--green-strong);
}

.form-status.error {
  color: var(--red);
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-brand strong {
  color: var(--green-strong);
  font-size: 0.98rem;
}

.footer-powered {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, auto);
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.footer-powered::before {
  content: "";
  grid-row: 1 / span 2;
  width: 48px;
  height: 32px;
  border-radius: 6px;
  background: #fff url("assets/aramunj-logo.webp") center / contain no-repeat;
  box-shadow: 0 0 0 1px rgba(8, 77, 50, 0.16);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 15px;
}

.site-footer a {
  min-height: 32px;
  padding-block: 4px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.dashboard-body {
  background: #f7f2e9;
}


.dashboard-note {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-body .button.secondary,
.dashboard-body button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-strong);
}

.dashboard-body .button.secondary:hover,
.dashboard-body button.secondary:hover {
  background: #f5efe4;
}

.dashboard-body {
  background:
    radial-gradient(circle at top right, rgba(201, 155, 63, 0.1), transparent 34rem),
    #faf7ef;
  font-size: 15px;
}

.dashboard-body .eyebrow {
  margin-bottom: 7px;
  font-size: 0.68rem;
  font-weight: 720;
}


.dashboard-note {
  font-size: 0.9rem;
  line-height: 1.5;
}

.dashboard-body .button,
.dashboard-body button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 720;
}

.dashboard-body .button:focus-visible,
.dashboard-body button:focus-visible {
  outline: 3px solid rgba(201, 155, 63, 0.35);
  outline-offset: 2px;
}

.compact-heading {
  margin-top: 18px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .primary-nav {
    display: none;
  }

  .nav-actions {
    width: auto;
    gap: 8px;
  }

  .nav-login,
  .nav-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-panel:not([hidden]) {
    display: grid;
  }
}

@media (max-width: 900px) {
  .split,
  .public-job-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .primary-nav {
    display: none;
  }

  .nav-actions {
    width: auto;
    gap: 8px;
  }

  .nav-login,
  .nav-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-panel:not([hidden]) {
    display: grid;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  
  .section-inner {
    width: min(100% - 20px, 1180px);
  }

  
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .button,
  button {
    width: 100%;
  }

  .mobile-menu-toggle {
    width: 42px;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

/* ZGTN member network polish */

/* ZGTN professional dashboard refresh */
.dashboard-body {
  --dash-bg: #f5f8f4;
  --dash-surface: #fffef9;
  --dash-surface-soft: #f7fbf6;
  --dash-border: rgba(8, 77, 50, 0.13);
  --dash-shadow: 0 18px 46px rgba(20, 38, 32, 0.08);
  --dash-shadow-soft: 0 10px 26px rgba(20, 38, 32, 0.055);
  background:
    radial-gradient(circle at 88% 4%, rgba(217, 165, 29, 0.12), transparent 360px),
    linear-gradient(180deg, #f7faf5 0%, var(--dash-bg) 42%, #fbf8ef 100%);
  color: #142326;
}

.dashboard-note {
  color: #596b69;
}

/* Final dashboard mobile and feed stabilization */

/* Lively member dashboard refresh */
.dashboard-body {
  --dash-sage: #eaf4ee;
  --dash-cream: #fffaf0;
  --dash-rust: #a73e2b;
  --dash-teal: #0f7568;
  --dash-gold-strong: #d19a27;
  background:
    linear-gradient(145deg, rgba(234, 244, 238, 0.92) 0%, rgba(255, 250, 240, 0.96) 48%, rgba(245, 249, 243, 0.95) 100%);
}

/* Public communications and admin publishing */

.communication-card {
  min-height: 190px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(8, 77, 50, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 247, 0.96));
  box-shadow: 0 18px 42px rgba(20, 38, 32, 0.075);
}

.communication-card span {
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(217, 165, 29, 0.16);
  color: #835c0b;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.communication-card h3 {
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.25;
}

.communication-card small,
.communication-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.communication-card details {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.communication-card summary {
  width: fit-content;
  cursor: pointer;
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 620px) {

  
  .communication-card {
    border-radius: 14px;
  }
}

/* Canva-inspired member dashboard refresh */

/* Canva public site refresh */
.public-canva-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 232, 224, 0.64), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(216, 166, 57, 0.14), transparent 30%),
    #fbfaf5;
  color: #14211f;
}

.public-canva-page .site-header {
  min-height: 78px;
  border-bottom: 1px solid rgba(8, 64, 47, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.public-canva-page .primary-nav {
  gap: clamp(12px, 1.6vw, 24px);
}

.public-canva-page .primary-nav a {
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .public-canva-page .site-header {
    min-height: 74px;
  }
}

/* Responsive polish: calmer public heroes and cleaner member header. */

/* ZGTN Canva polish: compact public hero and clean member navigation. */


.home-public-page .section-heading h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 760px) {

  
  .home-public-page .section-heading h2 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }
}

/* Final compact type pass after the Canva-inspired layer. */


body.home-public-page main .section-heading h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.85rem) !important;
  font-weight: 760 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {

  
  body.home-public-page main .section-heading h2 {
    font-size: clamp(1.15rem, 5vw, 1.45rem) !important;
  }
}

/* Network page: keep typography aligned with the compact homepage style. */

/* Site-wide ZGTN design refresh inspired by the Canva boards. */
body:not(.dashboard-body) {
  background:
    linear-gradient(180deg, rgba(236, 246, 241, 0.82), rgba(255, 253, 248, 0.96) 420px),
    #fffdf8;
  color: #13211e;
  font-size: 15px;
}

body:not(.dashboard-body):not(.jobs-page) .site-header {
  min-height: 70px;
  padding: 10px clamp(18px, 3.2vw, 48px);
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr) auto;
  gap: 14px;
  border-bottom: 1px solid rgba(7, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(8, 50, 40, 0.06);
}

body:not(.dashboard-body):not(.jobs-page) .brand {
  gap: 10px;
}

body:not(.dashboard-body):not(.jobs-page) .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

body:not(.dashboard-body):not(.jobs-page) .brand strong {
  color: #073d2e;
  font-size: 1rem;
  letter-spacing: 0;
}

body:not(.dashboard-body):not(.jobs-page) .brand small {
  color: #5b6965;
  font-size: 0.68rem;
  line-height: 1.18;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav {
  flex-wrap: nowrap;
  gap: clamp(5px, 0.9vw, 12px);
  justify-content: center;
  white-space: nowrap;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a {
  padding: 7px 9px;
  border-radius: 999px;
  color: #52635e;
  font-size: clamp(0.7rem, 0.82vw, 0.82rem);
  font-weight: 820;
  line-height: 1;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a:hover,
body:not(.dashboard-body):not(.jobs-page) .primary-nav a:focus-visible {
  background: rgba(7, 92, 67, 0.08);
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) .primary-nav a[aria-current="page"] {
  background: #073d2e;
  color: #fff;
}

body:not(.dashboard-body):not(.jobs-page) .nav-login,
body:not(.dashboard-body):not(.jobs-page) .nav-cta {
  min-height: 38px;
  padding-inline: 14px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 850;
}

body:not(.dashboard-body):not(.jobs-page) .nav-login {
  border-color: rgba(7, 61, 46, 0.42);
  background: #fff;
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) .nav-cta {
  background: linear-gradient(135deg, #073d2e, #0a6449);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(7, 61, 46, 0.16);
}

body:not(.dashboard-body):not(.jobs-page) .section {
  padding: clamp(46px, 6vw, 78px) 0;
}

body:not(.dashboard-body):not(.jobs-page) .section-heading h2,
body:not(.dashboard-body):not(.jobs-page) .split h2 {
  color: #073d2e;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 780;
  line-height: 1.14;
  letter-spacing: 0;
}

body:not(.dashboard-body):not(.jobs-page) .button,
body:not(.dashboard-body):not(.jobs-page) button {
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 840;
}

body:not(.dashboard-body):not(.jobs-page) .button:not(.secondary),
body:not(.dashboard-body):not(.jobs-page) button:not(.secondary) {
  background: linear-gradient(135deg, #0a573f, #073d2e);
  color: #fff;
}

body:not(.dashboard-body):not(.jobs-page) .button.secondary,
body:not(.dashboard-body):not(.jobs-page) button.secondary {
  border-color: rgba(7, 61, 46, 0.2);
  background: #fff;
  color: #073d2e;
}

body:not(.dashboard-body):not(.jobs-page) input,
body:not(.dashboard-body):not(.jobs-page) select,
body:not(.dashboard-body):not(.jobs-page) textarea {
  border-radius: 10px;
  background: #fbfdfc;
  font-size: 0.92rem;
}

body:not(.dashboard-body):not(.jobs-page) .site-footer {
  margin-top: 0;
  padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(7, 61, 46, 0.12);
  background:
    linear-gradient(180deg, #fffdf8, #f3f8f5);
  color: #52635e;
}

body:not(.dashboard-body):not(.jobs-page) .site-footer a {
  color: #43514d;
  font-size: 0.8rem;
}

body:not(.dashboard-body):not(.jobs-page) .footer-brand strong {
  font-size: 1rem;
}

body:not(.dashboard-body):not(.jobs-page) .footer-powered {
  color: #073d2e;
  font-size: 0.72rem;
}

.dashboard-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(221, 238, 231, 0.8), transparent 28%),
    linear-gradient(180deg, #f7fbf8, #fffdf8 42%, #f5f1e8);
}

@media (max-width: 1180px) {
  body:not(.dashboard-body):not(.jobs-page) .site-header {
    grid-template-columns: minmax(170px, 260px) minmax(0, 1fr) auto;
  }

  body:not(.dashboard-body):not(.jobs-page) .primary-nav {
    gap: 4px;
  }

  body:not(.dashboard-body):not(.jobs-page) .primary-nav a {
    padding-inline: 7px;
  }
}

@media (max-width: 980px) {
  body:not(.dashboard-body):not(.jobs-page) .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-cta {
    max-width: 170px;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  body:not(.dashboard-body):not(.jobs-page) {
    font-size: 14px;
  }

  body:not(.dashboard-body):not(.jobs-page) .site-header {
    min-height: 66px;
    padding: 9px 12px;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand-logo {
    width: 44px;
    height: 44px;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand strong {
    font-size: 0.94rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .brand small {
    max-width: 150px;
    font-size: 0.64rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-login {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  body:not(.dashboard-body):not(.jobs-page) .nav-cta {
    display: none;
  }
}

/* Final public-page guardrails for the compact Canva-inspired refresh. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body:not(.dashboard-body):not(.jobs-page) .mobile-menu-toggle {
  background: #fff;
  color: #073d2e;
}

/* Homepage development showcase: convert the partnership visual into an interactive page section. */

/* True final dashboard override: keeps account pages usable on phones after all
   page-specific styles have loaded. */
.dashboard-body,
.dashboard-body * {
  min-width: 0;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body p,
.dashboard-body small,
.dashboard-body span,
.dashboard-body strong,
.dashboard-body a,
.dashboard-body button,
.dashboard-body label {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .dashboard-body {
    font-size: 14px !important;
  }

  
  .dashboard-body .dashboard-note {
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
  }
}

/* Final mobile dashboard navigation pass */

/* Keep the approved three-metric homepage strip balanced at the bottom. */

@media (max-width: 760px) {
  .home-public-page :is(.button, button):not(.mobile-menu-toggle) {
    width: auto;
    justify-self: start;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 9px;
    font-size: 0.78rem;
    line-height: 1.15;
  }
}
