@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600;700;800&display=swap');

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

:root {
  --color-primary: #FFA953;
  --color-text: #2C2C2C;
  --color-heading: #1A3040;
  --secondary-color: #193a4b;
  --color-muted: #6B7280;
  --color-bg: #F5F4EF;
  --color-white: #FFFFFF;
  --color-border: #E5E4DC;
  --font: 'Commissioner', sans-serif;
  --max-width: 1200px;
  /* HubSpot / cookie UI — names match employers.newjobs template + components.js overrides */
  --font-family: var(--font);
  --secondary-color-hover: #476170;
  --grey-color: #f2f5f4;
  --primary-color: var(--color-primary);
  --primary-color-hover: #ffba75;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* ── HEADER ── */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo__name { color: var(--color-heading); }
.site-logo__hub  { color: var(--color-primary); }

.site-nav { display: flex; gap: 2rem; }

.site-nav a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--color-text); }

.nav-btn {
  background: var(--color-primary);
  color: var(--color-heading) !important;
  padding: 0.55rem 1.45rem;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity 0.2s !important;
}

.nav-btn:hover {
  opacity: 0.85;
  color: var(--color-heading) !important;
}

/* ── HERO ── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── FILTER BAR ── */
.filter-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ── POSTS ── */
.posts-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ── POST CARD ── */
.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.post-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.post-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f3f4f6;
}

.post-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.post-card__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-heading);
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
}

.post-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tag--career { background: #dbeafe; color: #1d4ed8; }
.tag--jobs   { background: #dcfce7; color: #15803d; }
.tag--hr     { background: #fef3c7; color: #b45309; }
.tag--ai     { background: #f3e8ff; color: #7e22ce; }

/* ── EMPTY STATE ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-muted);
}

/* ── ARTICLE PAGE ── */
.article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.article__container {
  max-width: 740px;
  margin: 0 auto;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.article__back:hover { color: var(--color-text); }

.article__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.article__date,
.article__reading-time {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.article__title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-heading);
}

.article__lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.article__featured-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  display: block;
}

.article__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.article__body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.75rem;
}

.article__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
}

.article__body p {
  margin-bottom: 1.25rem;
}

.article__body ul,
.article__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article__body li {
  margin-bottom: 0.5rem;
}

.article__body strong { font-weight: 700; }

.article__body blockquote {
  border-left: 3px solid var(--color-primary);
  margin: 2rem 0;
  padding: 0.75rem 1.5rem;
  background: #fff9f3;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  color: var(--color-text);
}

.article__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.site-footer a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* Employers-style shared footer */
.nj-footer {
  border-top: 1px solid var(--color-border);
  color: var(--secondary-color);
  font-weight: 500;
  padding: 24px 0;
}

.nj-footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.nj-footer a:hover {
  text-decoration: underline;
}

.nj-footer__container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.menu-list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer_social-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link {
  display: inline-flex;
  align-items: center;
}

.nj-footer--copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  font-size: 0.85rem;
}

.small.no-margin-to-sm {
  margin: 0;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nj-footer--copyright .menu-list-inline { flex-wrap: nowrap; }

.nj-footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-left: auto;
}

.footer-legal-list {
  justify-content: center;
  gap: 1.15rem;
}

.footer_social-list {
  justify-content: flex-end;
  gap: 0.6rem;
}

@media (max-width: 760px) {
  .nj-footer__container {
    padding: 0 1rem;
  }

  .nj-footer--copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .small.no-margin-to-sm {
    white-space: normal;
  }

  .nj-footer__right {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }

  .footer-legal-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .footer_social-list {
    margin-left: 0;
  }
}

/* ── GUIDE PAGE (role pages, salary guides, law guides) ── */

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 0.35rem; }
/* Category label (no dedicated section index URL) */
.breadcrumb .breadcrumb__section { color: inherit; }

/* Guide hero */
.guide-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  display: block;
}

@media (max-width: 768px) {
  .guide-hero { padding-top: 1.5rem; }
}

.guide-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.guide-hero__lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guide-hero__cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-heading) !important;
  padding: 0.55rem 1.45rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s !important;
}

.guide-hero__cta:hover {
  opacity: 0.85;
  color: var(--color-heading) !important;
}

/* Guide body — two-column layout */
.guide-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .guide-wrap { grid-template-columns: 1fr; }
  .guide-sidebar { display: none; }
}

/* Guide main content — uses article__body typography */
.guide-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  scroll-margin-top: 80px;
}

.guide-content h2:first-child {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}

.guide-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  scroll-margin-top: 80px;
}

.guide-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.guide-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.guide-content a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.guide-list {
  margin: 0.25rem 0 1.25rem 1.2rem;
  padding: 0;
}

.guide-list li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}

.guide-content strong { font-weight: 700; }

/* Data tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
}

.data-table th {
  text-align: left;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.55rem 0.75rem;
  border-bottom: 2px solid var(--color-border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table .num { font-weight: 600; color: var(--color-heading); }

/* Info box / callout */
.info-box {
  background: #fff9f3;
  border: 1px solid #ffe4c4;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
}

.info-box strong { color: var(--color-heading); }

/* Tag list (skills, universities, etc.) */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.tag-list .tag {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.3rem 0.7rem;
}

/* Career path */
.career-path {
  margin: 1rem 0 1.5rem;
}

.career-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.career-step:last-child { border-bottom: none; }

.career-step__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff9f3;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.career-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.15rem;
}

.career-step__desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Sidebar */
.guide-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-card__heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
}

.toc-list { list-style: none; }

.toc-list li { margin-bottom: 0.3rem; }

.toc-list a {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list a:hover { color: var(--color-primary); }

.related-link {
  display: block;
  padding: 0.45rem 0;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.2s;
}

.related-link:last-child { border-bottom: none; }
.related-link:hover { opacity: 0.75; }

.sidebar-card--cta {
  background: #fff9f3;
  border-color: #ffe4c4;
}

.sidebar-card--cta p {
  color: var(--color-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.sidebar-cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-heading) !important;
  padding: 0.55rem 1.45rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity 0.2s !important;
}

.sidebar-cta-btn:hover {
  opacity: 0.85;
  color: var(--color-heading) !important;
}

/* Full-width CTA banner */
.cta-banner {
  background: var(--color-primary);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-banner__title {
  color: var(--color-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-banner__desc {
  color: var(--color-heading);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-banner__btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-heading);
  padding: 0.7rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.cta-banner__btn:hover { color: var(--color-text); }

/* ── SECTION TAG (for guide pages) ── */
.tag--epagelmata { background: #dcfce7; color: #15803d; }
.tag--misthoi    { background: #dbeafe; color: #1d4ed8; }
.tag--work       { background: #ccfbf1; color: #0f766e; }
.tag--dikeo      { background: #fef3c7; color: #b45309; }
.tag--symvoules  { background: #f3e8ff; color: #7e22ce; }
.tag--ergaleia   { background: #e0e7ff; color: #4338ca; }
.tag--epistrofi  { background: #fce7f3; color: #be185d; }

/* ── HOMEPAGE: Section Showcases ── */

.section-showcase {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-showcase + .section-showcase {
  padding-top: 0;
}

.section-showcase__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.section-showcase__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.section-showcase__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.section-showcase__link:hover { opacity: 0.75; }

.section-showcase__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  max-width: 640px;
  line-height: 1.6;
}

/* Role card — text only, used on homepage and section landing */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.role-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.role-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
  border-color: var(--color-primary);
}

.role-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.role-card__title::after {
  content: '→';
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.role-card:hover .role-card__title::after {
  transform: translateX(3px);
}

.role-card__salary {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.role-card__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Coming-soon variant — not yet clickable */
.role-card--coming {
  cursor: default;
  opacity: 0.7;
  position: relative;
}

.role-card--coming:hover {
  box-shadow: none;
  transform: none;
  border-color: var(--color-border);
}

.role-card--coming .role-card__title::after {
  content: '';
}

.role-card__badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  background: var(--color-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}

/* Section teaser cards — for upcoming content sections */
.hub-teasers {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.teaser-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.teaser-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.teaser-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.3rem;
}

.teaser-card__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.teaser-card__badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  background: var(--color-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.teaser-card__badge--live {
  color: var(--color-white);
  background: var(--color-primary);
}

a.teaser-card {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

a.teaser-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
  border-color: var(--color-primary);
}

/* ── SECTION LANDING PAGE ── */

.section-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
}

.section-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.section-hero__desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 640px;
}

.section-hero__count {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.section-hero__count strong {
  color: var(--color-primary);
  font-weight: 700;
}

.section-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* ── LEGACY GUIDE COMPATIBILITY (older occupation pages) ── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.sidebar {
  position: sticky;
  top: 80px;
}

@media (max-width: 768px) {
  .sidebar { position: static; }
}

.card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  margin-bottom: 0.35rem;
}

.card ul li:last-child { margin-bottom: 0; }

.card ul:not(.related-link) a {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: none;
}

.card ul:not(.related-link) a:hover { color: var(--color-primary); }

ul.related-link {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.related-link li {
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}

ul.related-link li:last-child { border-bottom: none; }

ul.related-link a {
  display: block;
  padding: 0.45rem 0;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

ul.related-link a:hover { opacity: 0.75; }

.card.cta {
  background: #fff9f3;
  border-color: #ffe4c4;
}

.card.cta p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn:hover { opacity: 0.85; }

.content {
  min-width: 0;
}

.content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.content .intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content section {
  margin-top: 2rem;
}

.content section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.content p,
.content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

.content p { margin-bottom: 1rem; }

.content ul,
.content ol {
  margin: 0 0 1rem 1.25rem;
}

.content li {
  margin-bottom: 0.35rem;
}

.career-step .number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff9f3;
  border: 2px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.career-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.15rem;
}

.career-step p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Sector group headings on landing page */
.sector-group {
  margin-bottom: 2rem;
}

.sector-group__title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
