@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/cairo-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/cairo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-950: #071426;
  --navy-900: #0b1d35;
  --navy-800: #11365f;
  --blue-700: #1759c8;
  --blue-600: #246be8;
  --blue-100: #eaf2ff;
  --teal-600: #098a78;
  --teal-500: #12b89d;
  --teal-100: #e6f8f4;
  --amber-500: #f6b83f;
  --amber-100: #fff4d7;
  --red-600: #d34040;
  --red-100: #fff0f0;
  --ink: #16233b;
  --muted: #647188;
  --line: #e2e8f1;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-blue: #f3f7ff;
  --shadow-sm: 0 1px 2px rgba(15, 34, 64, 0.03), 0 8px 24px rgba(15, 34, 64, 0.055);
  --shadow-md: 0 4px 10px rgba(15, 34, 64, 0.04), 0 20px 48px rgba(15, 34, 64, 0.1);
  --shadow-lg: 0 12px 30px rgba(5, 20, 48, 0.09), 0 34px 80px rgba(5, 20, 48, 0.18);
  --radius-sm: 11px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --font: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.filters-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-user-drag: none;
}

a img,
img[draggable="false"] {
  -webkit-user-drag: none;
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.35;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon-arrow {
  transform: scaleX(-1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 110, 232, 0.28);
  outline-offset: 3px;
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 14px;
}

.button--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 9px 22px rgba(31, 110, 232, 0.2);
}

.button--primary:hover {
  background: var(--blue-700);
}

.button--accent {
  background: var(--teal-500);
  color: var(--navy-950);
  box-shadow: 0 10px 26px rgba(20, 184, 154, 0.22);
}

.button--accent:hover {
  background: #27c8a9;
}

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

.button--secondary:hover {
  border-color: #b9c6da;
  background: var(--surface-blue);
}

.button--light {
  background: #fff;
  color: var(--navy-900);
}

.button--share {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--disabled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  cursor: not-allowed;
}

.button--disabled:hover {
  transform: none;
}

.button--block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(225, 231, 241, 0.85);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 26px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 190px;
  max-height: 48px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blue-600), var(--teal-500));
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 110, 232, 0.2);
}

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

.brand-mark strong {
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.25;
}

.brand-mark small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.site-nav {
  margin-inline-start: 18px;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: #40506b;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  background: var(--blue-100);
  color: var(--blue-700);
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  padding: 8px;
  margin: 0;
  visibility: hidden;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}

.header-search,
.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.nav-toggle__close {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, #123761 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent 82%);
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.16;
}

.hero__glow--one {
  top: -240px;
  right: 32%;
  background: var(--teal-500);
}

.hero__glow--two {
  bottom: -300px;
  left: -90px;
  background: var(--blue-600);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: center;
  gap: 70px;
  padding-block: 72px 82px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.hero__content h1 {
  max-width: 710px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -2px;
}

.hero__content > p {
  max-width: 670px;
  margin-bottom: 30px;
  color: #c4d0e3;
  font-size: 19px;
}

.hero__kicker,
.section-heading__kicker,
.cta-panel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal-500);
  font-size: 13px;
  font-weight: 800;
}

.hero__kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(20, 184, 154, 0.14);
}

.hero-search {
  display: grid;
  max-width: 830px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  grid-template-columns: minmax(240px, 1fr) minmax(165px, 0.42fr) auto;
}

.hero-search__field {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding-inline: 14px;
  color: #8791a5;
}

.hero-search__field--keyword {
  border-inline-end: 1px solid var(--line);
}

.hero-search input,
.hero-search select {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.hero-search input::placeholder {
  color: #98a2b3;
}

.hero-search__submit {
  min-width: 122px;
}

.trending-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 12px;
}

.trending-links span {
  color: #91a1bc;
}

.trending-links a {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  color: #d9e2f1;
  transition: 0.2s ease;
}

.trending-links a:hover {
  border-color: rgba(20, 184, 154, 0.5);
  color: var(--teal-500);
}

.hero__panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
}

.hero-stat--primary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(20, 184, 154, 0.16);
  color: var(--teal-500);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.hero-stat div > span {
  color: #9faec4;
  font-size: 12px;
}

.hero-panel-card {
  padding: 15px;
  margin-top: 13px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.hero-panel-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.live-dot {
  position: relative;
  padding-inline-start: 13px;
  color: var(--teal-600);
}

.live-dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  content: "";
  transform: translateY(-50%);
}

.mini-job {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 12px 7px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  grid-template-columns: 36px 1fr auto;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.mini-job:last-child {
  border: 0;
}

.mini-job:hover,
.mini-job:focus-visible {
  background: var(--surface-soft);
  color: var(--blue-700);
}

.mini-job__logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 900;
}

.mini-job__logo--green {
  background: var(--teal-100);
  color: var(--teal-600);
}

.mini-job__logo--purple {
  background: #f0eaff;
  color: #7047c8;
}

.mini-job__arrow {
  color: var(--muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.mini-job:hover .mini-job__arrow,
.mini-job:focus-visible .mini-job__arrow {
  color: var(--blue-700);
  transform: translateX(-3px);
}

.mini-job strong,
.mini-job small {
  display: block;
}

.mini-job strong {
  font-size: 12px;
}

.mini-job small {
  color: var(--muted);
  font-size: 10px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px 0 0;
  color: #b8c5d7;
  font-size: 11px;
}

.hero-trust .icon {
  width: 16px;
  color: var(--teal-500);
}

/* Shared sections */
.section {
  padding-block: 82px;
}

.section--latest,
.section--companies,
.section--faq {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.faq-layout h2 {
  margin-bottom: 8px;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.7px;
}

.section-heading p,
.faq-layout > div > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: scaleX(-1) translateX(-4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.badge--soft {
  background: var(--blue-100);
  color: var(--blue-700);
}

.badge--accent {
  background: var(--amber-100);
  color: #a06200;
}

.badge--success {
  background: var(--teal-100);
  color: var(--teal-600);
}

.badge--muted {
  background: #eef0f4;
  color: #778093;
}

/* Job cards */
.jobs-list {
  display: grid;
  gap: 13px;
}

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

.job-card {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 62px minmax(0, 1fr) auto;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  z-index: 1;
  border-color: #bdcbe0;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.job-card__link {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  cursor: pointer;
  -webkit-user-drag: none;
  user-select: none;
  touch-action: manipulation;
}

.job-card--expired {
  opacity: 0.7;
}

.company-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--blue-700);
  font-size: 23px;
  font-weight: 900;
}

.company-logo img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.company-logo--large {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background: #fff;
  color: var(--blue-700);
  font-size: 34px;
}

.job-card__body {
  min-width: 0;
}

.job-card__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 18px;
  margin-bottom: 7px;
}

.job-card__title {
  overflow: hidden;
  margin-bottom: 4px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-card__company {
  overflow: hidden;
  margin-bottom: 8px;
  color: #4f5d73;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
}

.job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.job-card__meta .icon {
  width: 14px;
  height: 14px;
}

.job-card__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: #8d99ab;
  transition: 0.2s ease;
}

.job-card:hover .job-card__arrow {
  background: var(--blue-100);
  color: var(--blue-700);
  transform: translateX(-3px);
}

.starter-card,
.empty-state {
  padding: 48px 24px;
  border: 1px dashed #cbd4e2;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  text-align: center;
  grid-column: 1 / -1;
}

.starter-card > span,
.empty-state__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 18px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.starter-card h3,
.empty-state h2 {
  margin-bottom: 7px;
}

.starter-card p,
.empty-state p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: var(--muted);
}

/* Opportunity tracks */
.section--tracks {
  background: var(--surface-soft);
}

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

.track-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.track-card::after {
  position: absolute;
  top: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue-100);
  content: "";
  opacity: 0.8;
}

.track-card--coop::after {
  background: var(--teal-100);
}

.track-card--graduates::after {
  background: var(--amber-100);
}

.track-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.track-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 15px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.track-card--coop .track-card__icon {
  background: var(--teal-100);
  color: var(--teal-600);
}

.track-card--graduates .track-card__icon {
  background: var(--amber-100);
  color: #a06200;
}

.track-card .badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  background: var(--surface-soft);
  color: var(--muted);
}

.track-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.track-card p {
  min-height: 56px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.track-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 13px;
}

.track-card strong .icon {
  width: 16px;
}

/* Companies and browse blocks */
.company-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-card {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: 0.2s ease;
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.company-card:hover {
  border-color: #bdcbe0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.company-card__logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--blue-700);
  font-size: 20px;
  font-weight: 900;
}

.company-card__logo img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.company-card strong,
.company-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-card strong {
  font-size: 13px;
}

.company-card small {
  color: var(--muted);
  font-size: 10px;
}

.company-card > .icon {
  width: 16px;
  color: #9ca8b8;
}

.section--browse {
  background: var(--surface-soft);
}

.browse-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 0.85fr;
}

.browse-links {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.browse-links a,
.city-cloud a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: 0.2s ease;
}

.browse-links a:hover,
.city-cloud a:hover {
  border-color: #bdcbe0;
  color: var(--blue-700);
  transform: translateY(-1px);
}

.browse-links a > span,
.city-cloud a {
  font-size: 13px;
  font-weight: 700;
}

.browse-links a > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.browse-links .icon,
.city-cloud .icon {
  width: 17px;
  color: var(--blue-600);
}

.browse-links small,
.city-cloud small {
  display: grid;
  min-width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 10px;
}

.city-cloud {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-cloud a {
  display: grid;
  justify-content: initial;
  grid-template-columns: auto 1fr auto;
}

/* CTA and FAQ */
.section--cta {
  padding-block: 64px;
  background: #fff;
}

.cta-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px 48px;
  border-radius: 25px;
  background: linear-gradient(120deg, var(--blue-700), #164b9e 55%, var(--navy-900));
  color: #fff;
}

.cta-panel::after {
  position: absolute;
  top: -120px;
  left: -70px;
  width: 350px;
  height: 350px;
  border: 65px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 30px;
}

.cta-panel p {
  margin-bottom: 0;
  color: #cad7ea;
}

.cta-panel__actions {
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.65fr 1.35fr;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 19px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 19px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Listing archive */
.listing-hero,
.directory-hero {
  padding-block: 45px 52px;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: #8fa0ba;
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--teal-500);
}

.breadcrumbs > span:last-child {
  overflow: hidden;
  max-width: 520px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.listing-hero h1,
.directory-hero h1 {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(31px, 4vw, 47px);
}

.listing-hero__row p,
.directory-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: #b8c5d8;
}

.listing-count,
.directory-stat {
  display: flex;
  min-width: 142px;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.listing-count strong,
.directory-stat strong {
  color: var(--teal-500);
  font-size: 26px;
  line-height: 1.3;
}

.listing-count span,
.directory-stat span {
  color: #adbbce;
  font-size: 11px;
}

.listing-search {
  display: grid;
  max-width: 830px;
  gap: 8px;
  padding: 7px;
  margin-top: 27px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1fr 210px auto;
}

.listing-search > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 12px;
  color: #8b96a8;
}

.listing-search input,
.listing-search select {
  width: 100%;
  height: 44px;
  border: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  color-scheme: light;
  -webkit-text-fill-color: var(--ink);
}

.listing-search input::placeholder {
  color: #7c8798;
  opacity: 1;
}

.listing-search select option {
  background: #fff;
  color: var(--ink);
}

.listing-search select {
  padding-inline: 12px;
  border-inline-start: 1px solid var(--line);
}

.listing-layout {
  display: grid;
  align-items: start;
  gap: 26px;
  padding-block: 36px 82px;
  grid-template-columns: 255px minmax(0, 1fr);
}

.filters-panel {
  position: sticky;
  top: 96px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filters-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.filters-panel__head h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 15px;
}

.filters-panel__head .icon {
  width: 18px;
  color: var(--blue-600);
}

.filters-panel__head button {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.filters-form {
  padding: 18px;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group label {
  display: block;
  margin-bottom: 5px;
  color: #4c586d;
  font-size: 11px;
  font-weight: 800;
}

.filter-group select,
.listing-toolbar select {
  width: 100%;
  height: 42px;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: var(--surface-soft);
  font-size: 12px;
}

.filter-group select:focus,
.listing-toolbar select:focus {
  border-color: var(--blue-600);
  background: #fff;
}

.clear-filters {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.clear-filters:hover {
  color: var(--red-600);
}

.filters-form__actions {
  position: sticky;
  z-index: 3;
  bottom: -18px;
  margin: 18px -18px -18px;
  padding: 13px 18px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 22px rgba(15, 34, 64, 0.06);
  backdrop-filter: blur(8px);
}

.filters-form__actions .clear-filters {
  margin-top: 9px;
}

.listing-toolbar {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.listing-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.listing-toolbar p strong {
  color: var(--ink);
}

.listing-toolbar form {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.listing-toolbar select {
  width: 125px;
}

.mobile-filter-button,
.filter-backdrop {
  display: none;
}

.navigation.pagination {
  margin-top: 28px;
}

.nav-links,
.pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination ul.page-numbers > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pagination span.page-numbers.current,
.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus-visible {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: #fff;
}

/* Single job */
.job-hero {
  padding-block: 34px 48px;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.job-hero__content {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.job-hero__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 9px;
}

.job-hero__title h1 {
  max-width: 760px;
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(25px, 4vw, 38px);
}

.job-hero__company {
  margin-bottom: 10px;
  color: #ced8e7;
  font-weight: 700;
}

.job-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #9eacc1;
  font-size: 12px;
}

.job-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.job-hero__meta .icon {
  width: 16px;
}

.job-hero__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  min-width: 150px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.share-menu a,
.share-menu button {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 12px;
  text-align: right;
}

.share-menu a:hover,
.share-menu button:hover {
  background: var(--surface-soft);
}

.job-layout {
  display: grid;
  align-items: start;
  gap: 26px;
  padding-block: 36px 54px;
  grid-template-columns: minmax(0, 1fr) 315px;
}

.job-content-column {
  min-width: 0;
}

.article-card,
.facts-card,
.company-summary,
.source-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.job-description {
  padding: clamp(22px, 4vw, 42px);
}

.entry-content {
  color: #354258;
  font-size: 15px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2 {
  position: relative;
  padding-inline-start: 15px;
  margin: 34px 0 14px;
  font-size: 22px;
}

.entry-content h2::before {
  position: absolute;
  top: 4px;
  right: 0;
  width: 4px;
  height: calc(100% - 8px);
  border-radius: 99px;
  background: var(--teal-500);
  content: "";
}

.entry-content h3 {
  margin: 26px 0 12px;
  font-size: 18px;
}

.entry-content ul,
.entry-content ol {
  padding-inline-start: 24px;
}

.entry-content ul {
  list-style: disc;
}

.entry-content li {
  padding-inline-start: 4px;
  margin-bottom: 8px;
}

.entry-content li::marker {
  color: var(--teal-600);
  font-weight: 800;
}

.entry-content a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  padding: 16px 20px;
  margin: 24px 0;
  border-inline-start: 4px solid var(--blue-600);
  border-radius: 9px;
  background: var(--surface-blue);
}

.entry-content table {
  width: 100%;
  margin-block: 22px;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 11px;
  border: 1px solid var(--line);
  text-align: right;
}

.entry-content th {
  background: var(--surface-soft);
}

.notice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 19px;
  margin-bottom: 14px;
  border: 1px solid #f1caca;
  border-radius: 13px;
  background: var(--red-100);
  color: #8f2b2b;
}

.notice-card strong {
  display: block;
}

.notice-card p {
  margin: 2px 0 0;
  font-size: 12px;
}

.source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  margin-top: 14px;
}

.source-card > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.source-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-600);
}

.source-card strong,
.source-card p {
  display: block;
  margin: 0;
}

.source-card p {
  color: var(--muted);
  font-size: 11px;
}

.source-card > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.source-card > a .icon {
  width: 15px;
}

.job-disclaimer {
  padding: 13px 16px;
  margin-top: 14px;
  border-radius: 11px;
  background: #eef2f7;
  color: #69758a;
  font-size: 11px;
}

.job-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.facts-card,
.company-summary {
  padding: 20px;
}

.facts-card h2,
.company-summary h2 {
  margin-bottom: 16px;
  font-size: 17px;
}

.facts-card dl {
  margin: 0 0 18px;
}

.facts-card dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}

.facts-card dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.facts-card dt .icon {
  width: 16px;
  color: var(--blue-600);
}

.facts-card dd {
  max-width: 160px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
}

.facts-card dd a {
  color: var(--blue-700);
}

.company-summary__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.company-summary__head .company-logo {
  width: 50px;
  height: 50px;
}

.company-summary__head h2 {
  margin: 0;
}

.company-summary p {
  color: var(--muted);
  font-size: 12px;
}

.company-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.company-summary > a .icon {
  width: 15px;
}

.related-jobs {
  padding-top: 20px;
  background: #fff;
}

/* Company profiles and directory */
.company-hero {
  padding-block: 36px 48px;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.company-profile {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.company-profile__logo {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: var(--blue-700);
  font-size: 36px;
  font-weight: 900;
}

.company-profile__logo img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.company-profile h1 {
  margin: 7px 0;
  color: #fff;
  font-size: 34px;
}

.company-profile__content {
  min-width: 0;
}

.company-profile p {
  max-width: 700px;
  margin-bottom: 8px;
  color: #b9c6d8;
  font-size: 13px;
}

.company-profile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  color: #a7b4c8;
  font-size: 12px;
}

.company-profile__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.company-profile__meta .icon {
  width: 16px;
}

.company-profile__meta + p {
  margin-top: 8px;
}

.company-profile__cities {
  min-width: 0;
  color: #c5d0df;
}

.company-profile__cities > span {
  display: inline;
  line-height: 1.7;
}

.company-jobs {
  min-height: 440px;
}

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

.directory-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.directory-shell {
  min-height: 480px;
  padding-block: 38px 82px;
}

.directory-search {
  display: flex;
  max-width: 620px;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 14px;
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: #8b96a8;
  box-shadow: var(--shadow-sm);
}

.directory-search__icon {
  display: inline-grid;
  flex: 0 0 auto;
  color: var(--muted);
  place-items: center;
}

.directory-search__icon .icon {
  width: 19px;
  height: 19px;
}

.directory-search input {
  width: 100%;
  min-width: 0;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  outline: 0;
}

.directory-search__submit {
  min-width: 82px;
  height: 42px;
  padding-inline: 18px;
  border: 0;
  border-radius: 10px;
  background: var(--blue-600);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.directory-search__submit:hover,
.directory-search__submit:focus-visible {
  background: var(--blue-700);
}

.directory-search-status {
  display: flex;
  max-width: 720px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  margin: -12px auto 26px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 800;
}

.directory-search-status a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directory-empty {
  grid-column: 1 / -1;
}

.companies-directory {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: 0.2s ease;
  grid-template-columns: 62px minmax(0, 1fr) auto;
}

.directory-card:hover {
  border-color: #bdcbe0;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.directory-card__logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--blue-700);
  font-size: 24px;
  font-weight: 900;
}

.directory-card__logo img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.directory-card__content {
  min-width: 0;
}

.directory-card__content strong,
.directory-card__content small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-card__content strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.directory-card__content small {
  color: var(--muted);
  font-size: 11px;
}

.directory-card__arrow {
  color: #9ca8b8;
}

.directory-card__arrow .icon {
  width: 17px;
}

/* Generic content */
.page-shell {
  min-height: 520px;
  padding-block: 55px 82px;
}

.page-shell--narrow {
  max-width: 900px;
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1 {
  font-size: clamp(29px, 4vw, 42px);
}

.article-header {
  padding: 36px 42px 0;
}

.article-header h1 {
  font-size: clamp(27px, 4vw, 39px);
}

.article-card > .entry-content {
  padding: 25px 42px 42px;
}

.article-featured-image {
  padding: 24px 42px 0;
}

.article-featured-image img {
  width: 100%;
  border-radius: 14px;
}

.post-grid {
  display: grid;
  gap: 14px;
}

.content-card {
  padding: 25px;
}

.content-card h2 {
  margin-bottom: 9px;
  font-size: 21px;
}

.content-card h2 a:hover {
  color: var(--blue-700);
}

.content-card__date {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.content-card > p:last-child {
  margin: 0;
  color: var(--muted);
}

.error-page {
  padding: 65px 20px;
  text-align: center;
}

.error-page > span {
  display: block;
  color: var(--blue-600);
  font-size: clamp(80px, 16vw, 150px);
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
}

.error-page h1 {
  margin-top: -18px;
  margin-bottom: 7px;
}

.error-page p {
  margin-bottom: 22px;
  color: var(--muted);
}

.comments-area {
  padding: 28px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: #9cabc0;
}

.footer-grid {
  display: grid;
  gap: 52px;
  padding-block: 60px 46px;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
}

.footer-logo {
  display: inline-flex;
  max-width: 190px;
  align-items: center;
  line-height: 0;
}

.footer-logo__image {
  display: block;
  width: auto;
  max-width: 166px;
  max-height: 48px;
  object-fit: contain;
}

.footer-about p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #8291a8;
  font-size: 13px;
  line-height: 1.9;
}

.footer-socials {
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}

.footer-socials .social-link {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #b7c2d2;
}

.footer-socials .social-link:hover {
  border-color: transparent;
}

.footer-column h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
}

.footer-links,
.footer-column .site-nav__list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-column .site-nav__list a {
  padding: 0;
  color: #8291a8;
  font-size: 12px;
  font-weight: 500;
}

.footer-links a:hover,
.footer-column .site-nav__list a:hover {
  background: transparent;
  color: var(--teal-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  color: #718096;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding-block: 0 22px;
}

.footer-legal a {
  color: #8291a8;
  font-size: 11px;
}

.footer-legal a:hover {
  color: var(--teal-500);
}

.wjf-contact-email {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  font-size: 17px;
  font-weight: 700;
  direction: ltr;
  text-align: left;
}

/* Responsive */
@media (max-width: 1060px) {
  .site-nav {
    margin-inline-start: 0;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero__inner {
    gap: 38px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

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

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

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

  .job-hero__actions {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__open {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    padding: 18px;
    visibility: hidden;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 30px 60px rgba(10, 22, 47, 0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

  .admin-bar .site-nav {
    top: 120px;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav__list,
  .site-nav .menu {
    display: grid;
    align-items: stretch;
  }

  .site-nav a {
    padding: 12px;
    font-size: 14px;
  }

  .site-nav .sub-menu {
    position: static;
    width: auto;
    padding: 4px 10px;
    visibility: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .hero__inner {
    min-height: 0;
    gap: 45px;
    padding-block: 60px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content h1,
  .hero__content > p,
  .hero-search {
    margin-inline: auto;
  }

  .hero__kicker,
  .trending-links {
    justify-content: center;
  }

  .hero__panel {
    display: none;
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    min-height: 0;
  }

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

  .browse-grid,
  .faq-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .mobile-filter-button {
    display: inline-flex;
    justify-self: start;
  }

  .filters-panel {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 90vw);
    visibility: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

  .filters-panel__head {
    position: sticky;
    z-index: 2;
    top: 0;
    background: #fff;
  }

  .filters-panel__head button {
    display: block;
  }

  .filters-open .filters-panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .filter-backdrop {
    position: fixed;
    z-index: 1100;
    inset: 0;
    background: rgba(4, 13, 30, 0.58);
  }

  .filters-open .filter-backdrop {
    display: block;
  }

  .job-layout {
    grid-template-columns: 1fr;
  }

  .job-sidebar {
    position: static;
  }

  .footer-grid {
    gap: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    min-height: 66px;
    gap: 8px;
  }

  .brand-mark__icon {
    width: 38px;
    height: 38px;
  }

  .brand-mark strong {
    font-size: 16px;
  }

  .brand-mark small,
  .header-search {
    display: none;
  }

  .site-nav {
    top: 66px;
  }

  .admin-bar .site-nav {
    top: 112px;
  }

  .hero__inner {
    padding-block: 50px 55px;
  }

  .hero__content h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero__content > p {
    font-size: 16px;
  }

  .hero-search {
    gap: 7px;
    padding: 8px;
    grid-template-columns: 1fr;
  }

  .hero-search__field {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .hero-search__field--keyword {
    border-inline-end: 1px solid var(--line);
  }

  .hero-search__submit {
    width: 100%;
  }

  .trending-links {
    display: none;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .faq-layout h2 {
    font-size: 27px;
  }

  .section-heading p {
    display: none;
  }

  .text-link {
    font-size: 11px;
  }

  .jobs-list--home,
  .jobs-list--company,
  .company-grid,
  .browse-links,
  .city-cloud,
  .companies-directory {
    grid-template-columns: 1fr;
  }

  .job-card {
    gap: 12px;
    padding: 14px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .company-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .job-card__arrow {
    display: none;
  }

  .job-card__title {
    font-size: 14px;
  }

  .job-card__meta span:nth-child(2) {
    display: none;
  }

  .track-card {
    padding: 23px;
  }

  .browse-grid {
    gap: 40px;
  }

  .cta-panel {
    align-items: stretch;
    padding: 30px 22px;
    flex-direction: column;
  }

  .cta-panel h2 {
    font-size: 25px;
  }

  .cta-panel__actions {
    flex-direction: column;
  }

  .listing-hero,
  .directory-hero {
    padding-block: 32px 38px;
  }

  .listing-hero__row,
  .directory-hero__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-count,
  .directory-stat {
    min-width: 120px;
    align-items: flex-start;
  }

  .listing-search {
    grid-template-columns: 1fr;
  }

  .listing-search select {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .listing-layout {
    padding-block: 24px 58px;
  }

  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-hero {
    padding-block: 25px 35px;
  }

  .job-hero__content {
    align-items: flex-start;
    gap: 14px;
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .company-logo--large {
    width: 66px;
    height: 66px;
    border-radius: 15px;
  }

  .job-hero__title h1 {
    font-size: 23px;
  }

  .job-hero__meta span:last-child {
    display: none;
  }

  .job-hero__actions {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
  }

  .button--share span {
    display: none;
  }

  .share-menu {
    left: 0;
  }

  .job-layout {
    padding-block: 24px 42px;
  }

  .job-description {
    padding: 22px 18px;
  }

  .entry-content {
    font-size: 14px;
  }

  .entry-content h2 {
    font-size: 19px;
  }

  .source-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-profile {
    align-items: flex-start;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .company-profile__logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .company-profile h1 {
    font-size: 25px;
  }

  .company-profile > .button {
    grid-column: 1 / -1;
  }

  .directory-card {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .directory-card__logo {
    width: 54px;
    height: 54px;
  }

  .article-header {
    padding: 25px 20px 0;
  }

  .article-card > .entry-content {
    padding: 18px 20px 28px;
  }

  .article-featured-image {
    padding: 18px 20px 0;
  }

  .footer-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Professional responsive refinement — v1.1 */
:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid rgba(31, 110, 232, 0.32);
  outline-offset: 3px;
}

.hero-search:focus-within,
.listing-search:focus-within,
.directory-search:focus-within {
  box-shadow: 0 0 0 4px rgba(20, 184, 154, 0.16), var(--shadow-lg);
}

.job-card,
.company-card,
.directory-card,
.track-card,
.article-card,
.facts-card {
  border-color: #e2e8f1;
}

.job-card {
  isolation: isolate;
  overflow: hidden;
}

.job-card::before {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 3px;
  background: linear-gradient(var(--blue-600), var(--teal-500));
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.job-card:hover::before,
.job-card:focus-within::before {
  opacity: 1;
  transform: scaleY(1);
}

.job-card__body,
.job-card__arrow,
.company-logo {
  position: relative;
  z-index: 1;
}

.company-logo,
.company-card__logo,
.directory-card__logo {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.filters-panel,
.job-sidebar {
  max-height: calc(100vh - 116px);
}

@supports (content-visibility: auto) {
  .home .section:nth-of-type(n + 3) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 680px;
  }
}

@media (max-width: 860px) {
  body.nav-open::after {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(4, 13, 30, 0.52);
    content: "";
  }

  .site-header {
    z-index: 1000;
  }

  .track-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .site-nav {
    top: 62px;
    width: min(330px, 90vw);
    padding: 14px;
  }

  .admin-bar .site-nav {
    top: 108px;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 11px;
  }

  .hero::before {
    background-size: 32px 32px;
  }

  .hero__inner {
    padding-block: 38px 44px;
  }

  .hero__content {
    text-align: right;
  }

  .hero__kicker {
    justify-content: flex-start;
    font-size: 12px;
  }

  .hero__content h1 {
    margin-bottom: 14px;
    font-size: clamp(32px, 10vw, 39px);
    line-height: 1.22;
  }

  .hero__content > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-search {
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(4, 13, 30, 0.28);
  }

  .hero-search__field {
    border-radius: 11px;
    background: #f8fafc;
  }

  .hero-search__submit {
    min-height: 50px;
    border-radius: 11px;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .section-heading h2,
  .faq-layout h2 {
    font-size: 25px;
    line-height: 1.35;
  }

  .jobs-list {
    gap: 10px;
  }

  .job-card {
    min-height: 126px;
    align-items: start;
    padding: 15px 13px;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(16, 32, 61, 0.055);
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .job-card__eyebrow {
    margin-bottom: 6px;
  }

  .job-card__title {
    overflow: visible;
    font-size: 14px;
    line-height: 1.55;
    text-overflow: clip;
    white-space: normal;
  }

  .job-card__company {
    margin-bottom: 7px;
  }

  .job-card__meta {
    gap: 6px 10px;
    font-size: 10px;
  }

  .track-grid {
    display: flex;
    gap: 12px;
    padding: 2px 12px 12px;
    margin-inline: -12px;
    overflow-x: auto;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .track-grid::-webkit-scrollbar {
    display: none;
  }

  .track-card {
    min-height: 252px;
    flex: 0 0 min(84vw, 320px);
    padding: 24px;
    scroll-snap-align: start;
  }

  .company-card,
  .directory-card {
    min-height: 76px;
    border-radius: 15px;
  }

  .listing-hero,
  .directory-hero {
    padding-block: 26px 32px;
  }

  .listing-hero h1,
  .directory-hero h1 {
    font-size: 30px;
  }

  .listing-count,
  .directory-stat {
    padding: 9px 14px;
    border-radius: 13px;
  }

  .listing-search {
    margin-top: 20px;
    border-radius: 15px;
  }

  .listing-layout {
    gap: 14px;
    padding-block: 18px 44px;
  }

  .mobile-filter-button {
    position: sticky;
    z-index: 30;
    top: 72px;
    min-height: 44px;
    align-self: start;
    border: 1px solid #dbe3ef;
    background: #fff;
    box-shadow: 0 8px 24px rgba(10, 28, 59, 0.11);
  }

  .filters-panel {
    z-index: 1500;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(88dvh, 720px);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 60px rgba(4, 13, 30, 0.25);
    transform: translateY(100%);
  }

  .filters-panel__head {
    padding: 18px 20px 13px;
    border-radius: 22px 22px 0 0;
  }

  .filters-panel__head::before {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 42px;
    height: 4px;
    border-radius: 99px;
    background: #d5dce7;
    content: "";
    transform: translateX(-50%);
  }

  .filters-open .filters-panel {
    transform: translateY(0);
  }

  .filter-backdrop {
    z-index: 1400;
  }

  .listing-toolbar {
    min-height: 42px;
    align-items: center;
    flex-direction: row;
  }

  .job-hero__content {
    gap: 13px;
  }

  .job-hero__title h1 {
    font-size: 22px;
    line-height: 1.45;
  }

  .job-description {
    padding: 22px 17px;
    border-radius: 16px;
  }

  .entry-content {
    font-size: 14px;
    line-height: 1.95;
  }

}

/* Visual refinement — v1.3 */
::selection {
  background: rgba(36, 107, 232, 0.18);
  color: var(--navy-950);
}

body {
  background: #f7f9fc;
  color: var(--ink);
  font-feature-settings: "kern" 1;
}

.button {
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
}

.button--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 10px 25px rgba(36, 107, 232, 0.22);
}

.button--accent {
  background: linear-gradient(135deg, #21c6a9, var(--teal-500));
  box-shadow: 0 10px 28px rgba(18, 184, 157, 0.22);
}

.site-header {
  border-bottom-color: rgba(219, 227, 238, 0.84);
  background: rgba(255, 255, 255, 0.965);
  box-shadow: 0 5px 25px rgba(10, 30, 60, 0.045);
}

.site-header__inner {
  min-height: 78px;
}

.brand-mark__icon {
  border-radius: 14px;
  box-shadow: 0 11px 24px rgba(36, 107, 232, 0.22);
}

.brand-mark strong {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #3f4e67;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  background: #eef4ff;
}

.header-search,
.nav-toggle {
  border-color: #dfe6ef;
  border-radius: 12px;
  background: #fbfcfe;
}

.header-search:hover,
.nav-toggle:hover {
  border-color: #cbd7e7;
  background: var(--surface-blue);
  color: var(--blue-700);
}

.hero {
  background:
    radial-gradient(circle at 84% 8%, rgba(18, 184, 157, 0.15), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(36, 107, 232, 0.18), transparent 31%),
    linear-gradient(135deg, #061225 0%, #0a1d36 52%, #123e68 100%);
}

.hero::before {
  background-size: 48px 48px;
  opacity: 0.72;
}

.hero__inner {
  min-height: 620px;
  gap: 78px;
  padding-block: 78px 88px;
}

.hero__content h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.24;
}

.hero__content > p {
  max-width: 720px;
  color: #c8d4e5;
  font-size: 18px;
  line-height: 1.9;
}

.hero__kicker {
  padding: 6px 11px;
  border: 1px solid rgba(18, 184, 157, 0.25);
  border-radius: 999px;
  background: rgba(18, 184, 157, 0.08);
}

.hero-search {
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(2, 14, 32, 0.3);
}

.hero-search__field {
  padding-inline: 16px;
}

.hero-search input,
.hero-search select {
  height: 50px;
}

.hero-search__submit {
  min-width: 132px;
  min-height: 50px;
}

.trending-links a {
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.035);
}

.hero__panel {
  padding: 19px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 70px rgba(2, 13, 29, 0.25);
}

.hero-stat {
  padding: 13px 15px;
}

.hero-stat__icon {
  border: 1px solid rgba(18, 184, 157, 0.18);
  border-radius: 14px;
}

.hero-panel-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 19px;
  box-shadow: 0 18px 45px rgba(2, 13, 29, 0.13);
}

.hero-panel-card__head {
  padding: 2px 6px 12px;
}

.mini-job {
  padding: 12px 8px;
  border-radius: 12px;
}

.section {
  padding-block: 88px;
}

.section--latest {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.section--tracks,
.section--browse {
  background: #f5f8fc;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.faq-layout h2 {
  color: #12213a;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.text-link {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 11px;
  background: var(--surface-blue);
}

.text-link:hover {
  background: var(--blue-100);
}

.job-card {
  min-height: 138px;
  gap: 18px;
  padding: 20px;
  border-color: #e0e7f0;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fefeff 100%);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 66px minmax(0, 1fr) auto;
}

.job-card:hover,
.job-card:focus-within {
  border-color: #c6d5e8;
  box-shadow: 0 7px 16px rgba(13, 39, 76, 0.05), 0 25px 55px rgba(13, 39, 76, 0.1);
  transform: translateY(-3px);
}

.company-logo {
  width: 66px;
  height: 66px;
  border-color: #e2e8f1;
  border-radius: 17px;
  background: #f7f9fc;
}

.job-card__title {
  margin-bottom: 5px;
  color: #14213b;
  font-size: 17px;
  font-weight: 850;
}

.job-card__company {
  color: #45546c;
  font-weight: 650;
}

.job-card__meta {
  gap: 7px;
}

.job-card__meta span {
  padding: 3px 7px;
  border-radius: 8px;
  background: #f6f8fb;
}

.job-card__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #e3e9f1;
  background: #fafbfd;
}

.track-grid {
  gap: 20px;
}

.track-card {
  min-height: 286px;
  padding: 30px;
  border-radius: 27px;
  box-shadow: var(--shadow-sm), inset 0 4px 0 var(--blue-600);
}

.track-card--coop {
  box-shadow: var(--shadow-sm), inset 0 4px 0 var(--teal-500);
}

.track-card--graduates {
  box-shadow: var(--shadow-sm), inset 0 4px 0 var(--amber-500);
}

.track-card:hover {
  border-color: #cfd9e7;
  box-shadow: var(--shadow-md), inset 0 4px 0 var(--blue-600);
}

.track-card--coop:hover {
  box-shadow: var(--shadow-md), inset 0 4px 0 var(--teal-500);
}

.track-card--graduates:hover {
  box-shadow: var(--shadow-md), inset 0 4px 0 var(--amber-500);
}

.track-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
}

.track-card h3 {
  font-size: 23px;
  font-weight: 900;
}

.company-grid {
  gap: 14px;
}

.company-card {
  min-height: 84px;
  padding: 15px;
  border-color: #e1e7ef;
  border-radius: 17px;
  box-shadow: 0 5px 18px rgba(15, 34, 64, 0.035);
}

.company-card:hover {
  border-color: #cad6e6;
  box-shadow: var(--shadow-sm);
}

.company-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.company-card strong {
  font-size: 14px;
  font-weight: 850;
}

.browse-grid {
  gap: 56px;
}

.browse-links,
.city-cloud {
  gap: 10px;
}

.browse-links a,
.city-cloud a {
  min-height: 54px;
  border-color: #e0e7f0;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(15, 34, 64, 0.03);
}

.browse-links a:hover,
.city-cloud a:hover {
  border-color: #c7d5e6;
  background: var(--surface-blue);
  box-shadow: var(--shadow-sm);
}

.cta-panel {
  padding: 48px 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 15%, rgba(18, 184, 157, 0.3), transparent 30%),
    linear-gradient(125deg, var(--blue-700), #174b94 56%, var(--navy-900));
  box-shadow: 0 25px 65px rgba(13, 48, 99, 0.2);
}

.cta-panel h2 {
  font-size: 32px;
  font-weight: 900;
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border-color: #e0e7f0;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(15, 34, 64, 0.035);
}

.faq-list details[open] {
  border-color: #cbd8e8;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  min-height: 64px;
  padding: 18px 21px;
}

.listing-hero,
.directory-hero,
.job-hero,
.company-hero {
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 184, 157, 0.13), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.listing-hero h1,
.directory-hero h1,
.job-hero__title h1,
.company-profile h1 {
  font-weight: 900;
  letter-spacing: -0.65px;
}

.listing-count,
.directory-stat {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.listing-search,
.directory-search {
  border: 1px solid rgba(221, 228, 238, 0.9);
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(4, 18, 39, 0.16);
}

.listing-layout {
  gap: 28px;
}

.filters-panel {
  border-color: #dfe6ef;
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}

.filters-panel__head {
  background: #fbfcfe;
}

.filter-group select,
.listing-toolbar select {
  border-radius: 11px;
  background: #f7f9fc;
}

.job-hero,
.company-hero {
  padding-block: 40px 52px;
}

.company-logo--large,
.company-profile__logo {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(2, 14, 32, 0.22);
}

.company-logo--large {
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.job-layout {
  gap: 28px;
  padding-block: 40px 62px;
}

.article-card,
.facts-card,
.company-summary,
.source-card,
.content-card {
  border-color: #dfe6ef;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.job-description {
  padding: clamp(24px, 4vw, 44px);
}

.entry-content {
  color: #34445d;
  font-size: 16px;
  line-height: 2;
}

.entry-content h2 {
  padding-inline-start: 16px;
  border-inline-start: 4px solid var(--teal-500);
  color: #14213b;
  font-weight: 900;
}

.entry-content li::marker {
  color: var(--teal-600);
}

.facts-card,
.company-summary {
  padding: 22px;
}

.company-profile__meta > span {
  padding: 4px 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.065);
}

.directory-card {
  min-height: 100px;
  border-color: #e0e7f0;
  border-radius: 19px;
  box-shadow: 0 6px 20px rgba(15, 34, 64, 0.035);
}

.directory-card:hover {
  border-color: #c7d5e6;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 184, 157, 0.09), transparent 28%),
    var(--navy-950);
}

@media (max-width: 1060px) {
  .hero__inner {
    gap: 46px;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 70px;
  }

  .hero__inner {
    min-height: 0;
    padding-block: 62px 68px;
  }

  .section {
    padding-block: 66px;
  }

  .job-card {
    min-height: 132px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 62px;
  }

  .brand-mark strong {
    font-size: 17px;
  }

  .hero__inner {
    padding-block: 42px 50px;
  }

  .hero__content h1 {
    margin-bottom: 15px;
    font-size: clamp(32px, 10vw, 40px);
    letter-spacing: -0.8px;
  }

  .hero__content > p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .hero__kicker {
    padding: 5px 9px;
  }

  .hero-search {
    padding: 7px;
    border-radius: 18px;
  }

  .hero-search input,
  .hero-search select {
    height: 47px;
  }

  .section {
    padding-block: 52px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .faq-layout h2 {
    font-size: 26px;
    letter-spacing: -0.4px;
  }

  .text-link {
    min-height: 36px;
    padding: 6px 8px;
  }

  .job-card {
    min-height: 128px;
    gap: 12px;
    padding: 15px 13px;
    border-radius: 17px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .company-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .company-logo--large {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }

  .job-card__title {
    font-size: 14px;
  }

  .job-card__meta span {
    padding: 2px 5px;
  }

  .track-card {
    min-height: 254px;
    padding: 24px;
    border-radius: 23px;
  }

  .track-card__icon {
    width: 54px;
    height: 54px;
  }

  .company-card,
  .directory-card {
    min-height: 80px;
    border-radius: 16px;
  }

  .browse-grid {
    gap: 42px;
  }

  .cta-panel {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .cta-panel h2 {
    font-size: 26px;
  }

  .listing-hero,
  .directory-hero,
  .job-hero,
  .company-hero {
    padding-block: 28px 36px;
  }

  .listing-search,
  .directory-search {
    border-radius: 16px;
  }

  .job-layout {
    padding-block: 24px 48px;
  }

  .job-description {
    padding: 23px 18px;
    border-radius: 17px;
  }

  .entry-content {
    font-size: 14px;
    line-height: 1.95;
  }

  .entry-content h2 {
    font-size: 19px;
  }

  .company-profile__meta > span {
    padding: 3px 6px;
  }
}

/* 1.4.0: real header search, focused hero paths and comfortable sticky offset. */
.header-search-form {
  display: flex;
  width: 210px;
  height: 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fbfcfe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
}

.header-search-form:focus-within {
  width: 245px;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(36, 107, 232, 0.1);
}

.header-search-form input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.header-search-form input::placeholder {
  color: #7a879b;
}

.header-search-form .header-search {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-inline-start: 1px solid #e4eaf2;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.hero-paths {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 27px;
}

.hero-paths__head h2 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.45;
}

.hero-paths__head p {
  margin: 0;
  color: #afbdd0;
  font-size: 13px;
}

.hero-paths__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #65dec9;
  font-size: 12px;
  font-weight: 800;
}

.hero-paths__eyebrow .icon {
  width: 17px;
}

.hero-paths__list {
  display: grid;
  gap: 10px;
}

.hero-paths__stats {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-paths__stats > div {
  padding: 13px 16px;
  text-align: center;
}

.hero-paths__stats > div + div {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-paths__stats strong,
.hero-paths__stats span {
  display: block;
}

.hero-paths__stats strong {
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.hero-paths__stats span {
  margin-top: 3px;
  color: #afbdd0;
  font-size: 10px;
}

.company-opportunity-stats {
  display: grid;
  max-width: 850px;
  overflow: hidden;
  margin-top: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-opportunity-stats > div {
  padding: 15px 18px;
  text-align: center;
}

.company-opportunity-stats > div + div {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.company-opportunity-stats strong,
.company-opportunity-stats span {
  display: block;
}

.company-opportunity-stats strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.company-opportunity-stats span {
  margin-top: 4px;
  color: #c2cee0;
  font-size: 11px;
}

.company-opportunity-stats--content {
  max-width: none;
  margin: 0 0 34px;
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.company-opportunity-stats--content > div + div {
  border-inline-start-color: var(--line);
}

.company-opportunity-stats--content strong {
  color: var(--blue-700);
}

.company-opportunity-stats--content span {
  color: var(--muted);
}

.job-apply-after-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px;
  margin-top: 16px;
  border: 1px solid #cbdcf8;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7faff, #edf4ff);
  box-shadow: var(--shadow-sm);
}

.job-apply-after-content strong,
.job-apply-after-content span {
  display: block;
}

.job-apply-after-content strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 16px;
}

.job-apply-after-content span {
  color: var(--muted);
  font-size: 12px;
}

.company-summary__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.company-summary__head h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.featured-employers {
  margin: 34px 0 42px;
}

.directory-section-heading {
  margin-bottom: 16px;
}

.directory-section-heading span,
.directory-section-heading h2 {
  display: block;
  margin: 0;
}

.directory-section-heading span {
  margin-bottom: 3px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 900;
}

.directory-section-heading h2 {
  font-size: 22px;
}

.directory-section-heading--all {
  margin-top: 8px;
}

.featured-employers__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-employer {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid #d5e1f4;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f5f8fe);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 62px minmax(0, 1fr) auto;
  transition: 0.2s ease;
}

.featured-employer:hover {
  border-color: #a9c4ed;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.featured-employer strong,
.featured-employer small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-employer strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.featured-employer small {
  color: var(--muted);
  font-size: 10px;
}

.featured-employer > .icon {
  width: 17px;
  color: var(--blue-600);
}

.hero-path {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  grid-template-columns: 43px minmax(0, 1fr) 20px;
  transition: 0.2s ease;
}

.hero-path:hover {
  border-color: rgba(101, 222, 201, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-path__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: rgba(65, 132, 244, 0.18);
  color: #83b2ff;
}

.hero-path--coop .hero-path__icon {
  background: rgba(18, 184, 157, 0.17);
  color: #65dec9;
}

.hero-path--graduates .hero-path__icon {
  background: rgba(246, 184, 63, 0.16);
  color: #ffd77f;
}

.hero-path__icon .icon {
  width: 21px;
}

.hero-path strong,
.hero-path small {
  display: block;
}

.hero-path strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.hero-path small {
  color: #aebcd0;
  font-size: 11px;
  line-height: 1.65;
}

.hero-path__arrow {
  color: #8da0ba;
}

.hero-path__arrow .icon {
  width: 17px;
}

.hero-paths .hero-trust {
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1061px) {
  .job-sidebar,
  .filters-panel {
    top: 116px;
  }

  .admin-bar .job-sidebar,
  .admin-bar .filters-panel {
    top: 148px;
  }
}

@media (max-width: 1180px) {
  .header-search-form {
    width: 175px;
  }

  .header-search-form:focus-within {
    width: 205px;
  }
}

@media (max-width: 640px) {
  .header-search-form,
  .header-search-form:focus-within {
    width: min(145px, 38vw);
  }

  .header-search-form input {
    padding-inline: 10px;
    font-size: 11px;
  }

  .header-search-form .header-search {
    display: grid;
    width: 38px;
    height: 40px;
    flex-basis: 38px;
  }

  .hero-paths {
    padding: 20px;
  }

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

  .company-opportunity-stats > div:nth-child(3) {
    border-inline-start: 0;
  }

  .company-opportunity-stats > div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-opportunity-stats--content > div:nth-child(n+3) {
    border-top-color: var(--line);
  }

  .featured-employers__grid {
    grid-template-columns: 1fr;
  }

  .job-apply-after-content {
    align-items: stretch;
    flex-direction: column;
  }

  .job-apply-after-content .button {
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .featured-employers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1.5.0: configurable socials, taxonomy directories and internal browsing. */
.social-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.social-link {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #667386;
  transition: 0.2s ease;
}

.social-link:hover {
  background: #edf2f8;
  transform: translateY(-1px);
}

.social-link svg {
  width: 15px;
  height: 15px;
}

.social-link > span,
.mobile-nav-socials {
  display: none;
}

.social-link:hover {
  color: #fff;
}

.social-link--x:hover,
.social-link--apple:hover,
.social-link--tiktok:hover {
  background: #111;
}

.social-link--linkedin:hover {
  background: #0a66c2;
}

.social-link--instagram:hover {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.social-link--google-play:hover {
  background: #01875f;
}

.social-link--snapchat:hover {
  background: #fffc00;
  color: #111;
}

.social-link--telegram:hover {
  background: #229ed9;
}

.job-hero__company a {
  color: inherit;
  text-decoration: none;
}

.job-hero__company a:hover {
  color: #fff;
}

.job-hero__title-en {
  margin: -2px 0 4px;
  color: #b9c6d9;
  direction: ltr;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.site-taxonomy-browse {
  padding-block: 58px;
  border-top: 1px solid var(--line);
  background: #f2f6fc;
}

.site-taxonomy-browse__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.taxonomy-browse-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.taxonomy-browse-card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.taxonomy-browse-card__head span {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 900;
}

.taxonomy-browse-card__head h2 {
  margin: 2px 0 0;
  font-size: 19px;
}

.taxonomy-browse-card__head > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
}

.taxonomy-browse-card__head > a .icon {
  width: 14px;
}

.taxonomy-browse-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.taxonomy-browse-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #f8fafe;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.taxonomy-browse-links a:hover {
  border-color: #b9cceb;
  background: var(--blue-100);
  color: var(--blue-700);
}

.taxonomy-browse-links small {
  color: var(--muted);
  font-size: 9px;
}

.taxonomy-directory {
  min-height: 440px;
  padding-block: 42px 76px;
}

.taxonomy-directory__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.taxonomy-directory-card {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 48px minmax(0, 1fr) auto;
  transition: 0.2s ease;
}

.taxonomy-directory-card:hover {
  border-color: #b8cae5;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.taxonomy-directory-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-100);
  color: var(--teal-600);
}

.taxonomy-directory-card__icon--field {
  background: var(--blue-100);
  color: var(--blue-700);
}

.taxonomy-directory-card__icon .icon,
.taxonomy-directory-card__arrow .icon {
  width: 18px;
}

.taxonomy-directory-card strong,
.taxonomy-directory-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taxonomy-directory-card strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.taxonomy-directory-card small {
  color: var(--muted);
  font-size: 10px;
}

.taxonomy-directory-card__arrow {
  color: #98a6ba;
}

@media (max-width: 860px) {
  .header-socials {
    display: none;
  }

  .mobile-nav-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 9px 10px 1px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-socials .social-link > span {
    display: none;
  }

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

/* Use the compact side navigation on tablets before the desktop menu crowds. */
@media (min-width: 861px) and (max-width: 1100px) {
  body.nav-open::after {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(4, 13, 30, 0.52);
    content: "";
  }

  .site-header {
    z-index: 1000;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__open {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__close {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    padding: 18px;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 30px 60px rgba(10, 22, 47, 0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

  .admin-bar .site-nav {
    top: 106px;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav__list,
  .site-nav .menu {
    display: grid;
    width: 100%;
    align-items: stretch;
  }

  .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 12px;
    border-radius: 11px;
    font-size: 14px;
    white-space: normal;
  }

  .site-nav .sub-menu {
    position: static;
    width: auto;
    padding: 4px 10px;
    visibility: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .header-socials {
    display: none;
  }

  .mobile-nav-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 9px 10px 1px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }
}

/* Keep mobile/tablet social marks visible despite generic menu-link colors. */
@media (max-width: 1100px) {
  .site-nav .mobile-nav-socials .social-link {
    display: grid;
    width: 28px;
    min-height: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border-radius: 7px;
    background: transparent;
    color: #667386;
  }

  .site-nav .mobile-nav-socials .social-link--x:hover,
  .site-nav .mobile-nav-socials .social-link--apple:hover,
  .site-nav .mobile-nav-socials .social-link--tiktok:hover {
    background: #111;
    color: #fff;
  }

  .site-nav .mobile-nav-socials .social-link--linkedin:hover {
    background: #0a66c2;
    color: #fff;
  }

  .site-nav .mobile-nav-socials .social-link--instagram:hover {
    background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
    color: #fff;
  }

  .site-nav .mobile-nav-socials .social-link--google-play:hover {
    background: #01875f;
    color: #fff;
  }

  .site-nav .mobile-nav-socials .social-link--snapchat:hover {
    background: #fffc00;
    color: #111;
  }

  .site-nav .mobile-nav-socials .social-link--telegram:hover {
    background: #229ed9;
    color: #fff;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .site-header__actions {
    gap: 6px;
  }

  .header-search-form,
  .header-search-form:focus-within {
    width: min(154px, 42vw);
  }

  .button--share span {
    display: inline;
  }

  .job-hero__actions {
    grid-template-columns: 1fr;
  }

  .button--share {
    justify-content: center;
  }

  .site-taxonomy-browse {
    padding-block: 40px;
  }

  .site-taxonomy-browse__grid,
  .taxonomy-directory__grid {
    grid-template-columns: 1fr;
  }

  .taxonomy-browse-card {
    padding: 18px;
  }

  .taxonomy-browse-card__head h2 {
    font-size: 17px;
  }

  .taxonomy-directory {
    padding-block: 28px 52px;
  }

  .directory-search {
    gap: 7px;
    padding: 6px 7px 6px 11px;
  }

  .directory-search__submit {
    min-width: 66px;
    padding-inline: 12px;
  }

  .directory-search-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .listing-hero__row,
  .directory-hero__inner {
    align-items: center;
    text-align: center;
  }

  .listing-hero__row > div:first-child,
  .directory-hero__inner > div:first-child {
    width: 100%;
  }

  .listing-hero .breadcrumbs,
  .directory-hero .breadcrumbs {
    justify-content: center;
  }

  .listing-count,
  .directory-stat {
    align-items: center;
    align-self: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .job-hero__actions,
  .job-sidebar .button,
  .related-jobs,
  .source-card a {
    display: none !important;
  }

  body,
  .job-hero {
    background: #fff !important;
    color: #111 !important;
  }

  .job-hero h1,
  .job-hero p {
    color: #111 !important;
  }

  .job-layout {
    grid-template-columns: 1fr;
  }
}
