:root {
  --navy: #061f5f;
  --navy-dark: #03194f;
  --orange: #ff7900;
  --orange-soft: #fff0e4;
  --blue: #0a63d8;
  --green: #0aad62;
  --red: #e40813;
  --purple: #743be6;
  --teal: #168faf;
  --ink: #071744;
  --muted: #596781;
  --line: #e8edf5;
  --surface: #f8fbff;
  --white: #fff;
  --shadow: 0 16px 42px rgba(6, 31, 95, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

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

.shell {
  width: min(1168px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 237, 245, 0.9);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 74px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: conic-gradient(from 34deg, #ff7900 0 33%, #e40813 33% 55%, #ff9b16 55% 82%, #ff7900 82%);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}
.brand-mark {
  position: relative;
}
.brand-mark + .brand-text { margin-left: 0; }
.brand-text {
  display: grid;
  gap: 0;
  line-height: 1;
}
.brand-text strong {
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: 0;
  font-weight: 950;
}
.brand-text em {
  color: var(--orange);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  margin: auto;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu i { font-size: 0.68rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(6, 31, 95, 0.16); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-secondary { background: #fff; color: var(--orange); border-color: var(--orange); }
.btn-red { background: var(--red); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-dark { background: #111; color: #fff; }
.btn-outline { border-color: rgba(255,255,255,0.75); color: #fff; background: transparent; }

.hero {
  min-height: 480px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 121, 0, 0.14), transparent 26%),
    linear-gradient(120deg, #fff 0%, #f7fbff 45%, #eef5ff 100%);
}

.hero-inner {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  width: auto;
  max-width: 650px;
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.85rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}
.hero h1 span { color: var(--orange); }
.hero-text {
  max-width: 480px;
  margin: 22px 0 28px;
  color: #17264e;
  font-size: 1.18rem;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-actions .btn { min-width: 185px; }

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.category-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid #dbe4f2;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: #243451;
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(6,31,95,0.05);
}
.category-pills a.active,
.category-pills a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.hero-showcase {
  position: relative;
  min-height: 388px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.05fr 0.95fr;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 28px 70px rgba(6, 31, 95, 0.15);
  backdrop-filter: blur(12px);
}
.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 28px -12px auto auto;
  width: 165px;
  height: 165px;
  border: 28px solid var(--orange);
  border-left-color: var(--navy);
  border-radius: 50%;
  opacity: 0.9;
}
.role-card {
  position: relative;
  z-index: 1;
  min-height: 170px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(6,31,95,0.13);
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,25,79,0.02), rgba(3,25,79,0.78));
}
.role-card span,
.role-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
}
.role-card span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 0.68rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}
.role-card strong {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 950;
}
.role-card.banking { background-image: url("nedbankPortal-card.png"); }
.role-card.government { background-image: url("Office Admin Img.png"); background-position: center top; }
.role-card.retail { background-image: url("cmega-jobs-shopriteCard-img.png"); }
.role-card.technical { background-image: url("SABcardImg.png"); }
.role-card.agriculture {
  grid-column: 1 / -1;
  min-height: 140px;
  background-image: url("Agriculture.png");
  background-position: center 42%;
}

.alert-card {
  position: absolute;
  right: 22px;
  top: 78px;
  width: 166px;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6,31,95,0.14);
}
.alert-card strong {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 0.88rem;
}
.alert-card strong i { color: var(--orange); }
.alert-card p {
  margin: 12px 0 14px;
  color: #17264e;
  font-size: 0.82rem;
  font-weight: 700;
}
.switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #17264e;
  font-size: 0.78rem;
  font-weight: 800;
}
.switch input {
  position: absolute;
  opacity: 0;
}
.switch b {
  position: relative;
  width: 34px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #d8dfec;
}
.switch b::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}
.switch input:checked + b { background: var(--blue); }
.switch input:checked + b::after { transform: translateX(16px); }

.mission {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 26px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6,31,95,0.05);
}
.mission article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  padding-inline: 22px;
  border-right: 1px solid var(--line);
}
.mission article:first-child { padding-left: 0; }
.mission article:last-child { border-right: 0; padding-right: 0; }
.mission i {
  font-size: 3.1rem;
  color: var(--blue);
}
.mission article:nth-child(2) i { color: var(--orange); }
.mission article:nth-child(3) i { color: var(--green); }
.mission article:nth-child(4) i { color: var(--purple); }
.mission span,
.mission strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}
.mission p {
  margin: 5px 0 0;
  color: #273755;
  font-size: 0.8rem;
  font-weight: 650;
}

.section { padding-top: 38px; }
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 950;
}
.section-title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}
.section-title p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #3c4962;
  font-size: 0.92rem;
  font-weight: 650;
}

.featured-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.featured-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(6,31,95,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.featured-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,121,0,0.42);
  box-shadow: 0 24px 54px rgba(6,31,95,0.14);
}
.featured-media {
  min-height: 160px;
  background-size: cover;
  background-position: center;
}
.shoprite .featured-media { background-image: url("cmega-jobs-shopriteCard-img.png"); }
.nedbank .featured-media { background-image: url("nedbankPortal-card.png"); }
.sab .featured-media { background-image: url("SABcardImg.png"); }
.agriculture .featured-media { background-image: url("Agriculture.png"); background-position: center 42%; }
.office .featured-media { background-image: url("Office Admin Img.png"); background-position: center top; }
.featured-body {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 18px;
}
.featured-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}
.featured-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  border-radius: 7px;
  background: #f3f6fb;
  color: #30405d;
  font-size: 0.68rem;
  font-weight: 900;
}
.featured-meta .brand-chip {
  color: #fff;
}
.brand-chip.red { background: var(--red); }
.brand-chip.green { background: #007749; }
.brand-chip.navy { background: var(--navy); }
.brand-chip.purple { background: var(--purple); }
.featured-card h3 {
  min-height: 58px;
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.1;
  font-weight: 950;
}
.featured-card p {
  margin: 10px 0 14px;
  color: #3c4962;
  font-size: 0.82rem;
  font-weight: 680;
}
.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.featured-tags span {
  padding: 6px 9px;
  border-radius: 7px;
  background: #eef4ff;
  color: #23385f;
  font-size: 0.68rem;
  font-weight: 850;
}
.shoprite .featured-tags span { color: #9f1018; background: #fff0f1; }
.nedbank .featured-tags span,
.agriculture .featured-tags span { color: #00643d; background: #eaf8f1; }
.sab .featured-tags span { color: #8b4a00; background: #fff1df; }
.office .featured-tags span { color: #552bb1; background: #f0eaff; }
.opportunity-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 15px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
}
.opportunity-cta.red { background: var(--red); }
.opportunity-cta.green { background: #007749; }
.opportunity-cta.navy { background: var(--navy); }
.opportunity-cta.purple { background: var(--purple); }
.opportunity-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(6,31,95,0.18); }

.compact-section { padding-top: 34px; }
.compact-section h2 { margin-bottom: 18px; }
.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.benefits article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 10px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(6,31,95,0.04);
}
.benefits i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.15rem;
}
.benefits article:nth-child(2) i { background: var(--orange); }
.benefits article:nth-child(3) i { background: var(--green); }
.benefits article:nth-child(4) i { background: var(--purple); }
.benefits article:nth-child(5) i { background: var(--red); }
.benefits article:nth-child(6) i { background: var(--teal); }
.benefits strong {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1.1;
  font-weight: 950;
}
.benefits p {
  margin: 4px 0 0;
  color: #3c4962;
  font-size: 0.64rem;
  font-weight: 700;
}

.community-title { margin-bottom: 16px; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.community-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6,31,95,0.06);
}
.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.96;
}
.community-card.youtube::before { background-image: url("WhatsApp Image 2026-05-24 at 09.50.48.jpeg"); }
.community-card.whatsapp::before { background-image: url("cmega-whatsappbackground.jpeg"); }
.community-card.tiktok::before { background-image: url("jobPortal-YTbackground.jpeg"); }
.community-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.05));
}
.community-copy {
  position: relative;
  z-index: 1;
  width: min(58%, 205px);
  padding: 26px 20px;
}
.community-copy > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
}
.youtube .community-copy > i { background: var(--red); }
.whatsapp .community-copy > i { background: var(--green); border-radius: 50%; }
.tiktok .community-copy > i { background: #111; border-radius: 50%; }
.community-copy h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}
.community-copy p {
  margin: 0 0 18px;
  color: #273755;
  font-size: 0.82rem;
  font-weight: 700;
}
.community-copy .btn {
  min-height: 36px;
  padding: 10px 12px;
  font-size: 0.72rem;
}

.employer-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 150px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.employer-band::before,
.employer-band::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 24px solid;
  opacity: 0.95;
}
.employer-band::before {
  left: -54px;
  bottom: -64px;
  border-color: var(--red);
}
.employer-band::after {
  right: -66px;
  bottom: -82px;
  border-color: var(--orange);
}
.employer-band h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.42rem;
}
.employer-band p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #fff;
  font-weight: 700;
}
.employer-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 24px;
  margin-bottom: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6,31,95,0.05);
}
.stats article {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}
.stats article:last-child { border-right: 0; }
.stats i {
  grid-row: span 2;
  color: var(--orange);
  font-size: 1.75rem;
}
.stats article:nth-child(2) i,
.stats article:nth-child(3) i { color: var(--blue); }
.stats article:nth-child(4) i { color: var(--green); }
.stats article:nth-child(5) i { color: var(--orange); }
.stats article:nth-child(6) i { color: var(--red); }
.stats strong {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.05;
  font-weight: 950;
}
.stats span {
  color: #4f5e76;
  font-size: 0.72rem;
  font-weight: 750;
}

.site-footer {
  background: var(--navy-dark);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 50px;
  padding: 38px 0 26px;
}
.footer-logo { margin-bottom: 12px; }
.footer-logo .brand-text strong,
.footer-logo .brand-text em { color: #fff; }
.footer-brand p,
.site-footer section p,
.site-footer a {
  color: #dce7ff;
  font-size: 0.88rem;
}
.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
}
.site-footer a:not(.btn) {
  display: block;
  margin: 7px 0;
}
.site-footer section p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  display: grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
}
.site-footer .btn {
  min-height: 40px;
  margin-top: 10px;
  padding: 10px 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom p {
  margin: 0;
  color: #dce7ff;
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .navbar { grid-template-columns: 160px 1fr auto; gap: 14px; }
  .brand-mark { width: 40px; height: 40px; font-size: 1.75rem; }
  .brand-text strong { font-size: 1.3rem; }
  .nav-menu { gap: 18px; }
  .mission { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .mission article:nth-child(2) { border-right: 0; }
  .mission article:nth-child(3) { padding-left: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-showcase { min-height: 330px; }
  .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .stats article:nth-child(3) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 720px); }
  .navbar {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
  }
  .nav-toggle { display: block; order: 3; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  body.menu-open .nav-menu { display: flex; }
  .nav-menu a {
    min-height: 46px;
    padding-inline: 10px;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav-menu a::after { display: none; }

  .hero { min-height: auto; }
  .hero-inner {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    padding-top: 34px;
  }
  .hero h1 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .hero-text { font-size: 1rem; max-width: 420px; }
  .alert-card {
    top: auto;
    right: 22px;
    bottom: 190px;
  }
  .mission,
  .benefits,
  .community-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission article,
  .stats article {
    padding: 0;
    border-right: 0;
  }
  .featured-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 72%);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .featured-card { scroll-snap-align: start; }
  .employer-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 28px;
  }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 430px); }
  .brand-mark { width: 37px; height: 37px; font-size: 1.58rem; }
  .brand-text strong { font-size: 1.2rem; }
  .hero-inner { min-height: auto; }
  .eyebrow {
    margin-bottom: 15px;
    font-size: 0.72rem;
  }
  .hero h1 { font-size: 2.38rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }
  .category-pills a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .hero-showcase {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 64%);
    grid-template-rows: 210px;
    min-height: 238px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }
  .hero-showcase::before { display: none; }
  .role-card,
  .role-card.agriculture {
    grid-column: auto;
    min-height: 210px;
    scroll-snap-align: start;
  }
  .alert-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 12px 0 24px;
    transform: none;
  }
  .mission,
  .benefits,
  .community-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mission { padding: 18px; }
  .mission article { grid-template-columns: 48px 1fr; }
  .mission i { font-size: 2.1rem; }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .job-card { min-height: 220px; }
  .community-card { min-height: 245px; }
  .community-copy { width: 68%; }
  .stats { padding: 18px; }
  .stats article {
    grid-template-columns: 44px 1fr;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }
  .stats article:last-child { border-bottom: 0; }
  .employer-actions {
    width: 100%;
    flex-direction: column;
  }
  .employer-actions .btn { width: 100%; }
}
