: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);
}

.job-detail-page {
  background: #fbfaf5;
}

.job-detail-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(12, 64, 49, 0.12);
}

.job-detail-hero {
  padding: clamp(30px, 5vw, 54px) 0 26px;
  background: linear-gradient(180deg, #f7f7f1 0%, #fffdf8 100%);
  border-bottom: 1px solid rgba(12, 64, 49, 0.1);
}

.job-breadcrumbs {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #5d6b65;
  font-size: 0.82rem;
}

.job-breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 750;
}

.job-breadcrumbs span {
  display: inline-flex;
  align-items: center;
}

.job-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.job-detail-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #152220;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.job-detail-company {
  margin: 12px 0 0;
  color: #52635d;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 800;
}

.job-detail-summary {
  max-width: 760px;
  margin: 16px 0 0;
  color: #51615c;
  font-size: 0.98rem;
  line-height: 1.65;
}

.job-detail-action-card,
.job-detail-sidebar,
.job-detail-content {
  border: 1px solid rgba(12, 64, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(15, 44, 36, 0.08);
}

.job-detail-action-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.job-detail-action-card p {
  margin: 0;
  color: #5c6b66;
  font-size: 0.88rem;
  line-height: 1.45;
}

.job-detail-status {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #24563d;
  background: #eaf4ed;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-detail-action-card .button {
  min-height: 46px;
}

.job-detail-action-card .job-report-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #704f1e;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.disabled,
.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.72;
  background: #e8eee9;
  color: #5f6f68;
}

.job-detail-section {
  padding: clamp(24px, 5vw, 52px) 0;
  background: transparent;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.job-detail-content {
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
}

.job-copy-block + .job-copy-block {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(12, 64, 49, 0.1);
}

.job-copy-block h2,
.job-detail-sidebar h2,
.job-link-notice h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.job-copy-block p {
  max-width: 78ch;
  margin: 0 0 16px;
  color: #273532;
  font-size: 0.97rem;
  line-height: 1.72;
}

.job-copy-block p:last-child {
  margin-bottom: 0;
}

.job-detail-sidebar {
  position: sticky;
  top: 94px;
  padding: 18px;
}

.job-detail-meta-grid {
  display: grid;
  gap: 10px;
}

.job-detail-meta-card {
  padding: 12px;
  border: 1px solid rgba(12, 64, 49, 0.1);
  border-radius: 8px;
  background: #f8fbf8;
}

.job-detail-meta-card span {
  display: block;
  margin-bottom: 4px;
  color: #b8871d;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-detail-meta-card strong {
  display: block;
  color: #172421;
  font-size: 0.88rem;
  line-height: 1.35;
}

.job-link-notice {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(216, 168, 67, 0.38);
  border-radius: 8px;
  background: #fff8e8;
}

.job-link-notice p {
  margin: 0 0 14px;
  color: #5e5542;
  font-size: 0.92rem;
  line-height: 1.55;
}

.job-link-notice .hero-actions {
  margin-top: 14px;
  gap: 10px;
}

.related-jobs-section {
  background: #f2f5ef;
}

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

.related-job-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(12, 64, 49, 0.12);
  border-radius: 14px;
  background: #fff;
}

.related-job-grid article > span {
  color: #806419;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-job-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.related-job-grid h3 a {
  color: #173629;
}

.related-job-grid p {
  color: #5f6c65;
  line-height: 1.5;
}

.job-link-notice .button.secondary {
  min-height: 42px;
  border: 1px solid rgba(11, 93, 66, 0.22);
  background: #0b5d42;
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 93, 66, 0.14);
}

.job-link-notice .button.secondary:hover,
.job-link-notice .button.secondary:focus-visible {
  background: #083f31;
  color: #fff;
}

.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;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 410px;
  margin: 8px 0 0;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.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;
}

.mission-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

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

.jobs-portal-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.jobs-portal-stats article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
}

.jobs-portal-stats strong {
  display: block;
  color: var(--green-strong);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1;
}

.jobs-portal-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
}

.job-results-summary {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.public-jobs-list {
  display: grid;
  gap: 14px;
}

.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;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.contact-panel {
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.field {
  min-width: 0;
}

.field > span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

input,
select {
  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;
}

.field > span small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

input:focus,
select: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;
}

.invalid .error {
  display: block;
}

.invalid input,
.invalid select {
  border-color: var(--red);
}

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

dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

dt,
dd {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  line-height: 1.5;
}

.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;
}

.avatar {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1d211b;
  font-weight: 950;
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}


.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;
}

.avatar {
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
  font-weight: 760;
}


.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;
}

[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,
  .contact-layout,
  .public-job-card,
  .job-detail-hero-grid,
  .job-detail-layout,
  .related-job-grid {
    grid-template-columns: 1fr;
  }

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

  .job-detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .job-detail-hero {
    padding-top: 22px;
  }

  .job-detail-hero h1 {
    font-size: clamp(1.38rem, 8vw, 1.9rem);
  }

  .job-detail-action-card,
  .job-detail-content,
  .job-detail-sidebar {
    padding: 16px;
  }

  .job-copy-block p {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .jobs-portal-stats {
    grid-template-columns: 1fr;
  }

  .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);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
  }

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

  
  dl {
    grid-template-columns: 1fr;
  }

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

  .button,
  button {
    width: 100%;
  }

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

  dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  dd {
    padding-top: 0;
  }
}

@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. */

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

/* 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 {
  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;
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

@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) {
  .jobs-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;
  }

  .jobs-page :is(.hero-actions, .actions, .jobs-hero-actions, .jobs-search-actions) {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}
