/* ═══════════════════════════════════════════════════
   BLUECARDWORK.DE — Light Theme
   Inspired by: StepStone, Indeed, XING Jobs
════════════════════════════════════════════════════ */

:root {
  --navy:       #0A2463;
  --navy-dark:  #071840;
  --blue:       #1A56DB;
  --blue-light: #EBF5FF;
  --blue-mid:   #DBEAFE;
  --gold:       #F59E0B;
  --gold-light: #FEF3C7;
  --green:      #059669;
  --green-light:#D1FAE5;
  --red:        #DC2626;
  --red-light:  #FEE2E2;
  --purple:     #7C3AED;
  --purple-light:#EDE9FE;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --text:       #1F2937;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --radius:     12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLL LINE ─────────────────────────────────── */
.scroll-line {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
  width: 0%;
}

/* ═══════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

/* Topbar */
.topbar {
  background: var(--navy);
  height: 34px;
  font-size: 11px;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.topbar-badge {
  display: flex; align-items: center; gap: 5px;
  font-weight: 600; color: rgba(255,255,255,.6);
}
.topbar-badge svg { opacity: .7; flex-shrink: 0; }
.topbar-badge--gold { color: #FCD34D; }
.topbar-badge--gold svg { opacity: 1; }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.15); }

/* Topbar Ticker */
.topbar-ticker {
  display: flex; align-items: center; gap: 10px;
  overflow: hidden; min-width: 0; flex: 1;
}
.topbar-ticker-tag {
  flex-shrink: 0; background: #FCD34D; color: var(--navy);
  font-size: 9.5px; font-weight: 900; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 4px; line-height: 1.3;
}
.topbar-ticker-track {
  overflow: hidden; white-space: nowrap; flex: 1;
}
.topbar-ticker-track span {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.65);
  letter-spacing: .2px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topbar-ticker-track:hover span { animation-play-state: paused; }

/* Topbar Right: contact / com-link + lang */
.topbar-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .2s;
}
.topbar-contact:hover { color: var(--gold); }
.topbar-contact svg { opacity: .7; flex-shrink: 0; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, .15); }
.topbar-lang { display: flex; align-items: center; gap: 2px; }
.topbar-lang-btn {
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all .2s;
}
.topbar-lang-btn:hover { color: rgba(255, 255, 255, .95); background: rgba(255, 255, 255, .08); }
.topbar-lang-btn.active {
  color: var(--gold);
  background: rgba(255, 202, 0, .14);
}

/* Nav */
nav { background: var(--white); overflow: visible; position: relative; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 64px; gap: 0;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; margin-right: 40px; flex-shrink: 0;
}
.logo img { height: 36px; width: auto; display: block; max-width: 220px; }
.logo-badge {
  background: var(--navy); color: white;
  font-size: 8.5px; font-weight: 900; letter-spacing: 2px;
  padding: 3px 6px; border-radius: 5px;
  align-self: flex-end; margin-bottom: 1px;
}

.nav-menu { display: flex; align-items: center; flex: 1; gap: 0; overflow: visible; }
.nav-item {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-600);
  text-decoration: none; cursor: pointer; border: none; background: none;
  transition: all .15s; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-link .chevron { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }
.nav-link svg:last-child { color: var(--gray-400); }

/* Drop menu */
.drop-menu {
  position: absolute; top: calc(100% - 8px); left: 0;
  background: white; border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  transition-delay: .12s;
  z-index: 1100; min-width: 240px;
}
.drop-menu::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.nav-item:hover .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition-delay: 0s;
}
.drop-menu--wide { min-width: 460px; }
.drop-inner { padding: 10px; display: flex; flex-direction: column; gap: 1px; }
.drop-inner--2col { flex-direction: row; gap: 0; }
.drop-col { flex: 1; padding: 6px; }
.drop-col + .drop-col { border-left: 1px solid var(--gray-100); }
.drop-col-head {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); padding: 6px 10px 10px; border-bottom: 1px solid var(--gray-100); margin-bottom: 6px;
}
.drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  text-decoration: none; transition: background .12s;
}
.drop-item:hover { background: var(--gray-50); }
.drop-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.drop-title { font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 1px; }
.drop-sub { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.drop-item--all {
  justify-content: space-between; margin-top: 4px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  font-size: 12.5px; font-weight: 700; color: var(--blue);
}
.drop-item--all:hover { background: var(--blue-light); }
.drop-item--empty { cursor: default; pointer-events: none; }
.drop-item--empty:hover { background: transparent; }

/* Work mega menu (Sektörler) */
.nav-item.is-mega-open .nav-link .chevron { transform: rotate(180deg); }

.work-mega-stage {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  padding-top: 14px;
  margin-top: -14px;
}
.work-mega-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
}
.work-mega-stage.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.work-mega-menu {
  display: none;
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 40px 100px rgba(5, 14, 39, .18);
  border-top: 1px solid rgba(10, 36, 99, .08);
  overflow: hidden;
}
.work-mega-menu.is-active { display: block; }

.work-mega-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 360px;
}

.work-mega-sidebar {
  background: var(--navy);
  border-radius: 0 0 0 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.work-mega-sidebar-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.work-mega-sidebar-heading {
  font-size: 26px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.work-mega-sidebar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  font-weight: 500;
}
.work-mega-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 11px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  transition: transform .2s, box-shadow .2s;
}
.work-mega-sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 202, 0, .35);
}
.work-mega-sidebar-badge {
  padding: 14px 18px;
  background: rgba(255, 202, 0, .1);
  border-radius: 12px;
  border: 1px solid rgba(255, 202, 0, .2);
}
.work-mega-sidebar-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.work-mega-sidebar-badge-val {
  font-size: 22px;
  font-weight: 900;
  color: white;
}
.work-mega-sidebar-badge-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
  margin-top: 2px;
}

.work-mega-content { padding: 36px 36px 36px 28px; }
.work-mega-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 100%;
}
.work-mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--gray-100);
}
.work-mega-col:first-child { padding-left: 0; }
.work-mega-col:last-child { border-right: none; padding-right: 0; }
.work-mega-col-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.work-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s, transform .18s;
  margin-bottom: 2px;
}
.work-mega-item:hover {
  background: var(--gray-50);
  transform: translateX(3px);
}
.work-mega-item:hover .work-mega-item-title { color: var(--blue); }
.work-mega-item--compact { align-items: center; padding: 10px; }
.work-mega-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.work-mega-icon--sm { width: 34px; height: 34px; border-radius: 9px; }
.work-mega-item:hover .work-mega-icon { transform: scale(1.06); }
.work-mega-item-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -.2px;
  transition: color .18s;
}
.work-mega-item-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.45;
  font-weight: 500;
}
.work-mega-empty {
  padding: 24px 8px;
}
.work-mega-empty-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.work-mega-empty-sub {
  font-size: 13px;
  color: var(--gray-500);
}

.work-mega-mobile { display: none; }

@media (max-width: 1180px) {
  .work-mega-cols { grid-template-columns: repeat(2, 1fr); }
  .work-mega-col--quick { display: none; }
}

.drop-company {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px; text-decoration: none; transition: background .12s;
}
.drop-company:hover { background: var(--gray-50); }
.drop-company--empty { cursor: default; pointer-events: none; }
.drop-company--empty:hover { background: transparent; }
.company-logo-sm {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-100);
}

/* Nav CTA */
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; overflow: visible; }
.btn-nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--gray-700);
  background: white; cursor: pointer;
  text-decoration: none; transition: all .15s; white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.btn-nav-login:hover {
  border-color: var(--navy); color: var(--navy); background: var(--gray-50);
}

.btn-primary--employer {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 800;
  background: var(--navy); color: white;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.btn-primary--employer:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,36,99,.25); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
header.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-panel {
  display: contents;
}
.nav-backdrop {
  display: none;
}
body.nav-open { overflow: hidden; }
body.jobs-filter-open { overflow: hidden; }

.jobs-toolbar-mobile { display: none; }
.jobs-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.jobs-filter-toggle:hover { border-color: var(--navy); background: var(--gray-50); }
.jobs-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1180;
}
.jobs-sidebar-backdrop.is-visible { display: block; }
.jobs-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.jobs-sidebar__head .sidebar-title { margin-bottom: 0; }
.jobs-sidebar__close {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jobs-sidebar__close:hover { border-color: var(--navy); color: var(--navy); }

/* ═══════════════════════════════════════════════════
   HERO — Light / Open
════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #EEF4FF 0%, #F0F7FF 40%, #FAFBFF 100%);
  padding: 64px 0 72px;
  position: relative; overflow: visible;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: none; }
.orb { display: none; }
.hero-marquee { display: none; }

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(26,86,219,.15);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.6); } }

.hero-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900; line-height: 1.1;
  color: var(--gray-900); margin-bottom: 16px; letter-spacing: -1.5px;
}
.hero-title em { font-style: normal; color: var(--navy); }
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px; opacity: .7;
}

.hero-sub {
  font-size: 15px; line-height: 1.7; color: var(--gray-500);
  margin-bottom: 28px; max-width: 480px; font-weight: 400;
}

/* Search card */
.hero-search-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.05);
  padding: 8px 8px 10px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 5;
}
@media (min-width: 901px) {
  .hero-search-card {
    width: calc(100% + min(120px, 14vw));
    max-width: min(640px, calc(100vw - 64px));
  }
}
.hero-search {
  display: flex; align-items: stretch; border-radius: 10px;
  overflow: visible;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  min-height: 46px;
}
.search-group {
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px; flex: 1; min-width: 0;
  background: white;
}
.search-group--keyword { flex: 1.55; min-width: 0; border-radius: 10px 0 0 10px; }
.search-group--type { border-radius: 0; }
.search-group svg { color: var(--gray-400); flex-shrink: 0; width: 16px; height: 16px; }
.search-group input, .search-select-wrap select, .search-combobox-input {
  flex: 1; border: none; outline: none; font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 500; color: var(--text);
  background: transparent; min-width: 0; padding: 12px 0;
  appearance: none; -webkit-appearance: none;
  width: 100%;
}
.search-group input { cursor: text; }
.search-group input::placeholder { color: var(--gray-400); }
.search-select-wrap {
  position: relative; flex: 1; min-width: 0; display: flex; align-items: center;
}
.search-select-wrap select {
  padding-right: 22px;
  color: var(--gray-500);
  cursor: pointer;
}
.search-select-wrap select:valid,
.search-select-wrap select option:not([value=""]) {
  color: var(--text);
}
.search-select-chevron {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); pointer-events: none;
}
.search-combobox {
  position: relative; flex: 1; min-width: 0; display: flex; align-items: center;
}
.search-combobox-input {
  padding-right: 22px;
  color: var(--gray-500);
  cursor: text;
}
.search-combobox.is-filled .search-combobox-input,
.search-combobox-input:not(:placeholder-shown) {
  color: var(--text);
}
.search-combobox.is-open .search-select-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.search-combobox-list {
  position: absolute;
  left: -42px;
  top: calc(100% + 8px);
  z-index: 80;
  margin: 0; padding: 6px;
  list-style: none;
  min-width: 280px;
  width: max-content;
  max-width: min(360px, 90vw);
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}
.search-combobox-list--wide {
  min-width: 320px;
  max-width: min(440px, 92vw);
}
.search-combobox-option {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  white-space: normal;
  line-height: 1.35;
  word-break: break-word;
}
.search-combobox-option:hover,
.search-combobox-option.is-active {
  background: var(--blue-light);
  color: var(--blue);
}
.search-combobox-option--empty {
  color: var(--gray-400);
  font-weight: 500;
}
.search-combobox-option.is-hidden { display: none; }
.search-combobox-empty-msg {
  padding: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
}
.search-group--location { flex: 0.95; min-width: 0; }
.search-group--type { flex: 0.95; min-width: 0; }
.search-divider { width: 1px; align-self: stretch; background: var(--gray-200); flex-shrink: 0; }
.hero-search-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--navy); color: white; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 800;
  padding: 0 18px; margin: 0; border-radius: 0 10px 10px 0;
  transition: all .2s; white-space: nowrap; flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--blue); }
.hero-search-btn svg { width: 15px; height: 15px; }

.hero-search-tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 14px 10px 4px; font-size: 12px;
  border-top: 1px solid var(--gray-200);
  margin-top: 10px;
}
.search-tag-label { color: var(--gray-400); font-weight: 600; font-size: 11px; flex-shrink: 0; }
.search-tag {
  padding: 5px 11px; border-radius: 20px;
  background: var(--gray-100); color: var(--gray-600);
  text-decoration: none; font-weight: 600; font-size: 11px;
  transition: all .15s; border: 1px solid var(--gray-200);
}
.search-tag:hover { background: var(--blue-light); color: var(--blue); border-color: rgba(26,86,219,.2); }
.search-tag--blue { background: rgba(10,36,99,.07); color: var(--navy); border-color: rgba(10,36,99,.15); }
.search-tag--blue:hover { background: var(--navy); color: white; }
.search-tag--muted {
  background: transparent; border-color: transparent; color: var(--gray-400);
  cursor: default; pointer-events: none;
}

.hero-stats {
  display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--gray-200); margin-top: 4px;
}
.stat-number { font-size: 24px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 3px; letter-spacing: -.5px; }
.stat-number span { color: var(--blue); }
.stat-label { font-size: 10.5px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; }

/* Hero Visual — light floating cards */
.hero-visual { position: relative; height: 480px; }
.job-cards-visual { position: relative; width: 100%; height: 100%; }

.jcard {
  position: absolute;
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px; color: var(--text);
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.jcard:hover {
  border-color: #bfdbfe;
  box-shadow: 0 18px 40px rgba(10, 36, 99, .14);
  color: inherit;
  text-decoration: none;
}
.jcard--1 { top: 0; left: 0; width: 260px; animation-delay: 0s; }
.jcard--2 { top: 60px; right: 0; width: 268px; animation-delay: 1.5s; }
.jcard--3 { bottom: 60px; left: 20px; width: 252px; animation-delay: 3s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.jcard-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.jcard-logo { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-100); }
.jcard-badge { font-size: 9.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.jcard-badge--new { background: var(--green-light); color: var(--green); }
.jcard-badge--hot { background: #FEF3C7; color: #D97706; }
.jcard-badge--blue { background: var(--blue-light); color: var(--blue); }

.jcard-title { font-size: 13px; font-weight: 800; margin-bottom: 3px; line-height: 1.35; color: var(--gray-900); }
.jcard-company { font-size: 11px; color: var(--gray-400); font-weight: 500; margin-bottom: 10px; }
.jcard-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.jctag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px; background: var(--gray-100); color: var(--gray-600); }
.jctag--gold { background: #FEF3C7; color: #92400E; }

.jcard-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.jcard-applicants { display: flex; align-items: center; gap: 7px; font-size: 10.5px; color: var(--gray-400); font-weight: 600; }
.applicant-avatars { display: flex; }
.av { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-200); border: 1.5px solid white; margin-left: -5px; }
.av:first-child { margin-left: 0; }
.av--1 { background: #93c5fd; }
.av--2 { background: #fcd34d; }
.av--3 { background: #86efac; }
.jcard-time { font-size: 10px; color: var(--gray-400); font-weight: 600; }

/* Notification */
.hero-notif {
  position: absolute; top: 210px; left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite alternate;
  animation-delay: .8s; white-space: nowrap;
}
.notif-icon { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.notif-title { font-size: 12px; font-weight: 800; color: var(--gray-800); }
.notif-sub { font-size: 10.5px; color: var(--gray-400); font-weight: 500; }
.notif-badge { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* Match chip */
.hero-match-chip {
  position: absolute; bottom: 30px; right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4.5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.match-circle { position: relative; flex-shrink: 0; }
.match-circle svg { transform: rotate(-90deg); }
.match-pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: var(--navy); }
.match-title { font-size: 12px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.match-sub { font-size: 10.5px; color: var(--gray-400); }


/* ═══════════════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════════════════ */
.marquee-strip { background: var(--navy); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700;
  white-space: nowrap; padding: 0 28px; letter-spacing: .8px; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
}
.marquee-item:last-child { border-right: none; }
.marquee-item svg { opacity: .4; }


/* ═══════════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 20px; height: 2.5px; background: var(--gold); border-radius: 2px; display: block; flex-shrink: 0; }

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: var(--gray-900);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--navy); }
.section-sub { font-size: 15px; color: var(--gray-500); line-height: 1.75; max-width: 520px; }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--navy);
  text-decoration: none; transition: all .15s; white-space: nowrap;
}
.btn-outline-navy:hover { border-color: var(--navy); background: var(--gray-50); }


/* ═══════════════════════════════════════════════════
   FEATURE HIGHLIGHTS
════════════════════════════════════════════════════ */
.work-features {
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.work-features__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.work-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.work-feature:nth-child(even) .work-feature__media { order: 2; }
.work-feature:nth-child(even) .work-feature__body { order: 1; }
.work-feature + .work-feature {
  border-top: 1px solid var(--gray-100);
}
.work-feature__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-feature__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
.work-feature__body { min-width: 0; }
.work-feature__title {
  position: relative;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.6px;
  margin-bottom: 18px;
  padding-top: 18px;
}
.work-feature__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}
.work-feature__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 56ch;
}

@media (max-width: 900px) {
  .work-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .work-feature__media,
  .work-feature:nth-child(even) .work-feature__media { order: -1; }
  .work-feature__body,
  .work-feature:nth-child(even) .work-feature__body { order: 0; }
  .work-feature__title { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════════ */
.categories-section { background: white; }
.categories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 36px;
}
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat-card {
  background: var(--gray-50); border-radius: 14px; padding: 24px 20px;
  border: 1.5px solid var(--gray-100);
  text-decoration: none; color: var(--text);
  transition: all .2s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cat-card:hover {
  background: white; border-color: rgba(10,36,99,.2);
  box-shadow: var(--shadow); transform: translateY(-3px);
}
.cat-card--all { background: var(--navy); border-color: var(--navy); }
.cat-card--all:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 24px rgba(10,36,99,.2); }
.cat-card--all .cat-name { color: white; }
.cat-card--all .cat-count { color: rgba(255,255,255,.5); }
.cat-card--all .cat-arrow { color: #FCD34D; }
.cat-card--empty { cursor: default; pointer-events: none; }
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; transition: transform .2s;
}
.cat-card:hover .cat-icon { transform: scale(1.06); }
.cat-name { font-size: 14px; font-weight: 800; color: var(--gray-800); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: auto; }
.cat-arrow { font-size: 16px; margin-top: 14px; opacity: 0; transform: translateX(-4px); transition: all .2s; }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }


/* ═══════════════════════════════════════════════════
   JOB LISTINGS
════════════════════════════════════════════════════ */
.jobs-section { background: var(--gray-50); }
.jobs-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; margin-bottom: 28px;
  padding-top: 30px;
}
.jobs-header-sub { font-size: 14px; color: var(--gray-400); margin-top: 5px; }
.jobs-header-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; padding-top: 4px; }

.jobs-filter-tabs {
  display: flex; gap: 4px; background: white;
  border-radius: 10px; padding: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border: 1px solid var(--gray-200);
}
.filter-tab {
  padding: 7px 16px; border-radius: 7px; border: none; cursor: pointer;
  font-size: 12.5px; font-weight: 700; color: var(--gray-400);
  background: transparent; font-family: 'Montserrat', sans-serif; transition: all .15s;
}
.filter-tab.active { background: var(--navy); color: white; }
.filter-tab:not(.active):hover { color: var(--navy); background: var(--gray-100); }

.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }

/* Filter sidebar */
.jobs-sidebar {
  background: white; border-radius: 14px; padding: 22px;
  border: 1px solid var(--gray-200); height: fit-content;
  position: sticky; top: 88px;
  margin-bottom: 30px;
}
.sidebar-title { font-size: 13px; font-weight: 800; color: var(--gray-900); margin-bottom: 18px; }
.filter-group { margin-bottom: 22px; }
.filter-group-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 10px;
}
.filter-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; cursor: pointer;
}
.filter-option-left { display: flex; align-items: center; gap: 9px; }
.filter-checkbox {
  width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--gray-300);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.filter-checkbox.checked { background: var(--navy); border-color: var(--navy); }
.filter-checkbox.checked::after { content: '✓'; color: white; font-size: 9px; font-weight: 900; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.filter-count { font-size: 11px; font-weight: 700; color: var(--gray-400); background: var(--gray-100); padding: 1px 7px; border-radius: 20px; }
.filter-divider { height: 1px; background: var(--gray-100); margin: 4px 0 18px; }
.filter-apply {
  width: 100%; padding: 11px; border-radius: 9px; border: none; cursor: pointer;
  background: var(--navy); color: white; font-size: 13px; font-weight: 800;
  font-family: 'Montserrat', sans-serif; transition: background .15s;
}
.filter-apply:hover { background: var(--blue); }

/* Job grid */
.jobs-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.job-card {
  background: white; border-radius: 14px; padding: 20px 22px;
  border: 1.5px solid var(--gray-200);
  transition: all .2s; position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start;
}
.job-card:hover { border-color: rgba(10,36,99,.25); box-shadow: var(--shadow); transform: translateX(2px); }
.job-card--featured { border-color: var(--gold); background: linear-gradient(to right, #FFFBF0, white); }
.job-card--featured:hover { border-color: #D97706; box-shadow: 0 4px 20px rgba(245,158,11,.12); }

.job-featured-badge {
  position: absolute; top: -1px; left: 20px;
  background: var(--gold); color: #92400E;
  font-size: 9.5px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 0 0 8px 8px;
}

.job-logo {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-100); margin-top: 2px;
}

.job-card-body { min-width: 0; }
.job-card-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.job-title { font-size: 15px; font-weight: 800; color: var(--gray-900); line-height: 1.3; letter-spacing: -.2px; }
.job-title a { text-decoration: none; color: inherit; }
.job-title a:hover { color: var(--blue); }

.job-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.job-company { font-size: 13px; font-weight: 700; color: var(--blue); }
.job-location { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--gray-500); font-weight: 500; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.jtag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.jtag { background: var(--gray-100); color: var(--gray-600); }
.jtag--blue { background: var(--blue-light); color: var(--navy); }
.jtag--gold { background: #FEF3C7; color: #92400E; }
.jtag--red { background: var(--red-light); color: var(--red); }
.jtag--purple { background: var(--purple-light); color: var(--purple); }
.jtag--green { background: var(--green-light); color: var(--green); }

.job-card-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.job-save {
  width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--gray-200);
  background: transparent; cursor: pointer; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.job-save:hover { border-color: var(--gold); color: var(--gold); background: #FEF3C7; }
.job-save.saved { border-color: var(--gold); background: #FEF3C7; color: var(--gold); }
.job-save.saved svg { fill: var(--gold); stroke: var(--gold); }

.job-detail-row { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.job-detail-item { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray-500); font-weight: 600; }
.job-detail-item svg { color: var(--gray-400); }

.job-apply-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px; font-size: 12.5px; font-weight: 800;
  background: var(--navy); color: white; text-decoration: none;
  transition: all .2s; white-space: nowrap; margin-top: auto;
}
.job-apply-btn:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,36,99,.2); }
.job-card--featured .job-apply-btn { background: var(--gold); color: #92400E; }
.job-card--featured .job-apply-btn:hover { background: #F59E0B; box-shadow: 0 4px 14px rgba(245,158,11,.3); }

.job-time { font-size: 11px; color: var(--gray-400); font-weight: 600; text-align: right; }

.jobs-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 15px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--navy);
  background: white; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .15s;
  text-decoration: none;
}
.btn-load-more:hover { border-color: var(--navy); background: var(--gray-50); }
.jobs-count { font-size: 12.5px; color: var(--gray-400); font-weight: 600; }
.job-card.hidden { display: none; }
.job-card.page-hidden { display: none; }
.jobs-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}


/* ═══════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.how-section { background: white; }
.how-bg, .how-orb-1, .how-orb-2 { display: none; }
.how-inner {}
.how-header { max-width: 560px; margin-bottom: 60px; }

.how-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: flex-start;
}
.how-step { text-align: center; padding: 0 16px; }
.how-step-num {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; transition: all .3s;
}
.how-step:hover .how-step-num { background: var(--navy); }
.how-step:hover .how-step-num svg { stroke: white; }
.how-step-num svg { stroke: var(--navy); transition: stroke .3s; }
.how-badge {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: white;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.how-step:hover .how-badge { background: var(--gold); color: var(--navy); }
.how-step h3 { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.how-step p { font-size: 12.5px; color: var(--gray-500); line-height: 1.65; }
.how-header .how-detail-link { margin-top: 16px; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS INNER PAGE
════════════════════════════════════════════════════ */
.how-page-body { min-height: 100vh; display: flex; flex-direction: column; background: var(--gray-50); }
.how-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1A56DB 100%);
  padding: 64px 24px 72px;
  color: white;
}
.how-page-hero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.how-page-hero__tag {
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: #FCD34D; margin-bottom: 12px;
}
.how-page-hero__title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.15;
  letter-spacing: -.8px; margin-bottom: 16px;
}
.how-page-hero__title em { font-style: normal; color: #FCD34D; }
.how-page-hero__lead {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 56ch; margin: 0 auto;
}
.how-page-steps { background: white; padding: 56px 0; }
.how-page-steps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.how-page-step {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 28px 22px; text-align: center;
}
.how-page-step__num {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--navy); color: white; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.how-page-step__title { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.how-page-step__text { font-size: 13px; line-height: 1.65; color: var(--gray-600); }

@media (max-width: 900px) {
  .how-page-steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-page-steps__grid { grid-template-columns: 1fr; }
}


.how-connector { display: flex; align-items: center; justify-content: center; padding-top: 20px; }
.how-connector-line { width: 48px; height: 1.5px; background: linear-gradient(90deg, var(--gray-200), var(--gray-300)); }
.how-connector-dot { display: none; }


/* ═══════════════════════════════════════════════════
   MAGAZINE
════════════════════════════════════════════════════ */
.magazine-section { background: var(--gray-50); }
.magazine-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 36px;
}
.magazine-grid { display: grid; grid-template-columns: 360px 1fr; gap: 24px; }

.mag-cover {
  background: var(--navy); border-radius: 18px; overflow: hidden;
  min-height: 440px; position: relative; padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mag-cover-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 20%, rgba(26,86,219,.5) 0%, transparent 60%);
}
.mag-cover-content { position: relative; z-index: 1; }
.mag-issue { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #FCD34D; margin-bottom: 14px; }
.mag-cover-title { font-size: 28px; font-weight: 900; color: white; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 14px; }
.mag-cover-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 24px; }
.mag-read-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: white; color: var(--navy);
  padding: 11px 20px; border-radius: 10px; font-size: 13px; font-weight: 800;
  text-decoration: none; transition: all .2s; width: fit-content;
}
.mag-read-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.mag-pages { position: relative; z-index: 1; display: flex; gap: 5px; align-items: flex-end; justify-content: flex-end; margin-top: 16px; }
.mag-page { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 3px; }
.mag-page-1 { width: 40px; height: 54px; }
.mag-page-2 { width: 32px; height: 44px; }
.mag-page-3 { width: 24px; height: 34px; }

.mag-articles { display: flex; flex-direction: column; gap: 12px; }
.mag-article {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: 14px; padding: 18px;
  border: 1px solid var(--gray-200); text-decoration: none; transition: all .2s;
}
.mag-article:hover { border-color: rgba(10,36,99,.2); box-shadow: var(--shadow); transform: translateX(4px); }
.mag-article-img {
  width: 68px; height: 68px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mag-article-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.mag-article-tag--gold { color: #D97706; }
.mag-article-tag--green { color: var(--green); }
.mag-article-tag--purple { color: var(--purple); }
.mag-article-title { font-size: 13.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; line-height: 1.4; }
.mag-article-meta { font-size: 11px; color: var(--gray-400); font-weight: 500; }


/* ═══════════════════════════════════════════════════
   EMPLOYER SECTION
════════════════════════════════════════════════════ */
.employer-section {
  background: linear-gradient(160deg, #EEF4FF 0%, #F0F7FF 50%, #EFF6FF 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.employer-bg {
  position: absolute; top: -80px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.06) 0%, transparent 70%);
  pointer-events: none;
}
.employer-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}
.employer-section .section-tag::before { background: var(--gold); }
.employer-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.employer-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); font-weight: 500; }
.ef-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); border: 1px solid rgba(5,150,105,.15);
  display: flex; align-items: center; justify-content: center;
}
.employer-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-cta-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-size: 13.5px; font-weight: 800;
  background: var(--navy); color: white; text-decoration: none; transition: all .2s;
}
.btn-cta-gold:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,36,99,.2); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: white; color: var(--navy);
  text-decoration: none; border: 1.5px solid var(--gray-200); transition: all .2s;
}
.btn-cta-outline:hover { border-color: var(--navy); background: var(--gray-50); }
.employer-note { font-size: 12px; color: var(--gray-400); font-weight: 600; }

/* Employer visual */
.employer-visual { position: relative; }
.ev-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; box-shadow: var(--shadow-lg);
}
.ev-card--main { margin-bottom: 14px; }
.ev-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ev-card-icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: var(--blue-light); display: flex; align-items: center; justify-content: center; }
.ev-card-title { font-size: 13.5px; font-weight: 800; color: var(--gray-900); margin-bottom: 1px; }
.ev-card-sub { font-size: 11px; color: var(--gray-400); }
.ev-status { margin-left: auto; padding: 3px 10px; border-radius: 20px; background: var(--green-light); color: var(--green); font-size: 10.5px; font-weight: 800; }
.ev-stats-row { display: flex; gap: 0; margin-bottom: 18px; }
.ev-stat { flex: 1; text-align: center; padding: 10px 0; border-right: 1px solid var(--gray-100); }
.ev-stat:last-child { border-right: none; }
.ev-stat-val { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 2px; }
.ev-stat-label { font-size: 10px; color: var(--gray-400); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.ev-progress-bar { height: 4px; background: var(--gray-100); border-radius: 2px; margin-bottom: 5px; }
.ev-progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--blue)); border-radius: 2px; transition: width .8s ease; }
.ev-progress-label { font-size: 11px; color: var(--gray-400); font-weight: 600; }

.ev-card--candidate { display: flex; align-items: center; gap: 12px; }
.ev-cand-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.ev-cand-name { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.ev-cand-detail { font-size: 11px; color: var(--gray-400); }
.ev-match-score { margin-left: auto; text-align: right; }
.ev-match-pct { font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1; }
.ev-match-label { font-size: 10px; color: var(--gray-400); font-weight: 700; }

.ev-floating-badge {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: white; border: 1px solid var(--border); border-radius: 30px;
  padding: 7px 12px; font-size: 11.5px; font-weight: 700; color: var(--gray-700);
  white-space: nowrap; animation: evFloat 3.5s ease-in-out infinite;
  box-shadow: var(--shadow);
}
.ev-floating-badge--1 { bottom: -14px; left: -20px; animation-delay: 0s; }
.ev-floating-badge--2 { top: -14px; right: -10px; animation-delay: -1.5s; }
@keyframes evFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }


/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer { background: var(--gray-900); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-top .footer-inner {
  display: grid; grid-template-columns: 260px repeat(3, 1fr);
  gap: 48px; padding-top: 52px; padding-bottom: 52px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: all .15s; border: 1px solid rgba(255,255,255,.08);
}
.footer-social:hover { background: rgba(255,255,255,.14); color: white; }
.footer-col-title { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-link:hover { color: white; }
.footer-bottom { padding: 18px 32px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.6); }


/* ─── Jobs result bar ────────────────────────────── */
.jobs-result-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200);
}
.jobs-result-count { font-size: 13.5px; color: var(--gray-600); font-weight: 600; }
.jobs-result-count strong { color: var(--gray-900); font-weight: 800; }
.jobs-sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--gray-500); }
.jobs-sort select { border: 1px solid var(--gray-200); border-radius: 7px; padding: 5px 10px; font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--gray-700); background: white; outline: none; cursor: pointer; }
.jobs-right {}
.tab-count { background: var(--gray-200); color: var(--gray-600); font-size: 10px; padding: 1px 6px; border-radius: 10px; margin-left: 3px; }
.filter-tab.active .tab-count { background: rgba(255,255,255,.25); color: white; }
.stat-sep { width: 1px; height: 32px; background: var(--gray-200); }

.work-contact-body { min-height: 100vh; display: flex; flex-direction: column; background: var(--gray-50); }
.work-contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1A56DB 100%);
  padding: 56px 24px 64px; color: white; text-align: center;
}
.work-contact-hero__tag { font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: #FCD34D; margin-bottom: 10px; }
.work-contact-hero__title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
.work-contact-hero__lead { max-width: 56ch; margin: 0 auto; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.8); }
.work-contact-wrap { max-width: 1080px; margin: -32px auto 48px; padding: 0 20px; width: 100%; }
.work-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.work-contact-form-card, .work-contact-aside { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px; box-shadow: 0 8px 32px rgba(10,36,99,.06); }
.work-contact-form-card__title { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.work-contact-form-card__sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.work-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.work-contact-field { margin-bottom: 14px; }
.work-contact-field label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.work-contact-input {
  width: 100%; border: 1px solid var(--gray-200); border-radius: 10px; padding: 11px 14px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--gray-900); background: var(--gray-50);
}
.work-contact-input:focus { outline: none; border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.work-contact-textarea { min-height: 120px; resize: vertical; }
.work-contact-consent { margin: 8px 0 18px; }
.work-contact-consent__label { display: flex; gap: 10px; font-size: 12px; line-height: 1.55; color: var(--gray-600); cursor: pointer; }
.work-contact-consent__check { margin-top: 3px; flex-shrink: 0; }
.work-contact-consent__link { color: var(--blue); font-weight: 700; text-decoration: none; }
.work-contact-submit {
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.work-contact-submit.work-page-cta {
  border-radius: 8px;
}
.work-contact-submit:not(.work-page-cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  background: var(--navy);
  color: white;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.work-contact-submit:not(.work-page-cta):hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, .2);
}
.work-contact-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .25);
}
.work-contact-field-error, .work-contact-validation { color: #DC2626; font-size: 12px; display: block; margin-top: 4px; }
.work-contact-alert { padding: 14px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.work-contact-alert--success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.work-contact-alert--error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.work-contact-channel { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.work-contact-channel:last-child { border-bottom: none; }
.work-contact-channel__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.work-contact-channel__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-500); margin-bottom: 4px; }
.work-contact-channel__value { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; }
.work-contact-channel__value:hover { color: var(--blue); }

.work-contact-info__title {
  font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px;
  padding-bottom: 0; border-bottom: none; display: block;
}
.work-contact-info__intro { font-size: 14px; line-height: 1.65; color: var(--gray-600); margin-bottom: 20px; }
.work-contact-info__company { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 18px; }
.work-contact-info__block { margin-bottom: 18px; }
.work-contact-info__block--legal { padding-top: 4px; }
.work-contact-info__label { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.work-contact-info__text { font-size: 14px; line-height: 1.65; color: var(--gray-700); margin: 0 0 6px; }
.work-contact-info__email {
  display: inline-block; font-size: 14px; font-weight: 700; color: var(--navy);
  text-decoration: none; margin-top: 4px;
}
.work-contact-info__email:hover { color: var(--blue); }
.work-contact-info__employer {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--gray-200);
}
.work-contact-info__employer-text { font-size: 13.5px; line-height: 1.65; color: var(--gray-600); margin-bottom: 10px; }
.work-contact-info__employer-email { font-size: 14px; color: var(--gray-800); margin: 0; }
.work-contact-info__employer-email a { color: var(--navy); font-weight: 700; text-decoration: none; }
.work-contact-info__employer-email a:hover { color: var(--blue); }

.work-contact-channel__hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

@media (max-width: 860px) {
  .work-contact-grid { grid-template-columns: 1fr; }
  .work-contact-form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .jobs-layout { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .magazine-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-connector { display: none; }
  .jobs-toolbar-mobile { display: flex; margin-bottom: 16px; }
  .jobs-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    z-index: 1190;
    transform: translateX(-105%);
    transition: transform .25s ease;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    max-height: 100vh;
  }
  .jobs-sidebar.is-open { transform: translateX(0); }
  .jobs-sidebar__close { display: inline-flex; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 48px 0 56px; }
  .employer-inner { grid-template-columns: 1fr; }
  .employer-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
}

@media (max-width: 680px) {
  .hero-search { flex-direction: column; border-radius: 12px; overflow: visible; }
  .search-divider { display: none; }
  .search-group { width: 100%; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .search-group--keyword { border-radius: 0; }
  .search-group:last-of-type { border-bottom: none; }
  .search-combobox-list { left: -16px; right: auto; min-width: min(280px, calc(100vw - 48px)); max-width: calc(100vw - 48px); }
  .hero-search-btn { width: calc(100% - 12px); justify-content: center; margin: 6px; border-radius: 10px; }
  .jobs-grid .job-card { grid-template-columns: 1fr; }
  .job-logo { display: none; }
  .job-card-actions { flex-direction: row; justify-content: space-between; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  nav .nav-inner { padding: 0 20px; }
  .topbar-inner { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════
   DERGİ DOWNLOAD PAGE
════════════════════════════════════════════════════ */
.dergi-page-body { min-height: 100vh; display: flex; flex-direction: column; background: var(--gray-50); }
.dergi-page-header { flex-shrink: 0; }
.dergi-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--gray-600); text-decoration: none;
  padding: 8px 12px; border-radius: 8px; transition: all .15s;
}
.dergi-back-link:hover { color: var(--navy); background: var(--gray-100); }
.dergi-download {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.dergi-download__inner {
  width: 100%; max-width: 920px;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
  background: white; border: 1px solid var(--gray-200); border-radius: 24px;
  padding: 40px; box-shadow: var(--shadow-lg);
}
.dergi-download__cover { min-height: 380px; margin: 0; }
.dergi-download__eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.dergi-download__title {
  font-size: 34px; font-weight: 900; color: var(--navy); letter-spacing: -.8px;
  line-height: 1.15; margin-bottom: 14px;
}
.dergi-download__lead {
  font-size: 15px; line-height: 1.65; color: var(--gray-600); margin-bottom: 28px; max-width: 42ch;
}
.dergi-download__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 12px; font-size: 14px; font-weight: 800;
  transition: all .2s; box-shadow: 0 8px 24px rgba(10,36,99,.22);
}
.dergi-download__cta:hover { background: var(--blue); transform: translateY(-2px); }
.dergi-download__meta {
  margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--gray-400);
}
.dergi-download__home {
  display: inline-block; margin-top: 28px; font-size: 13px; font-weight: 700;
  color: var(--gray-500); text-decoration: none;
}
.dergi-download__home:hover { color: var(--navy); }
.dergi-page-footer {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  padding: 20px; font-size: 12px; font-weight: 600; color: var(--gray-400);
}
.dergi-page-footer a { color: var(--gray-500); text-decoration: none; }
.dergi-page-footer a:hover { color: var(--navy); }

@media (max-width: 800px) {
  .dergi-download__inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
  .dergi-download__cover { min-height: 280px; }
  .dergi-download__title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════
   WORK INNER PAGES — flat white layout (not Bluecard bilgi)
════════════════════════════════════════════════════ */
.work-inner-page-body,
.work-inner-page-body--banner {
  min-height: 100vh;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}
.work-inner-page-main {
  flex: 1;
  padding: 0 0 64px;
  background: #fff;
}

/* Page header */
.work-page-head {
  position: relative;
  background: #fff;
  border-bottom: none;
  padding: 0;
}
.work-page-head__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 72%);
}
.work-page-head__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 40px 14px 36px;
  box-sizing: border-box;
}
.work-page-head__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.work-page-head__eyebrow::before {
  content: "";
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.work-page-head__title {
  margin: 0 0 6px !important;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy) !important;
}
.work-page-head__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-600);
}

.work-bilgi-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}
.work-bilgi-shell--below-banner {
  padding-top: 18px;
}
.work-bilgi-shell--cta {
  padding-top: 0;
  padding-bottom: 8px;
}
.work-bilgi-shell--job-detail {
  max-width: 1180px;
}

/* Work page CTAs — distinct from Bluecard bilgi/onbasvuru */
.work-page-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  box-sizing: border-box;
}
.work-page-cta:hover {
  background: var(--gray-50);
  color: var(--navy);
  transform: translateY(-1px);
}
.work-page-cta--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.work-page-cta--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.work-page-cta--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.work-page-cta--gold:hover {
  background: #EAB308;
  border-color: #EAB308;
  color: var(--navy);
}
.work-page-cta--block {
  width: 100%;
}
.work-page-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border: 1.5px solid var(--navy);
  border-left: 4px solid var(--gold);
  background: var(--gray-50);
  box-sizing: border-box;
}
.work-page-cta-band__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
}
.work-page-cta-band__title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.work-page-cta-band__text {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}
.work-page-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.work-inner-card {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: var(--text);
  line-height: 1.75;
  border: none;
}
.work-inner-card__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.work-inner-card__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 62ch;
}
.work-inner-card--contact { padding: 36px 40px; }
.work-contact-grid--inner { margin: 0; max-width: none; }
.work-inner-card .work-contact-form-card,
.work-inner-card .work-contact-aside {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.work-inner-card .work-contact-aside {
  border-left: 1px solid var(--gray-100);
  padding-left: 28px;
}
.how-page-steps__grid--inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.how-page-steps__grid--inner .how-page-step {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 22px 18px;
}
.work-edergi { margin-top: 0; }
.work-edergi__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.work-edergi__card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 32px 0;
  box-shadow: none;
}
.work-edergi__card + .work-edergi__card {
  border-left: 1px solid var(--gray-200);
  padding-left: 32px;
}
.work-edergi__cover { min-height: 280px; margin: 0; border-radius: 12px; overflow: hidden; }
.work-edergi__cover--bluecard {
  background: linear-gradient(145deg, var(--navy) 0%, #142d6e 100%);
}
.work-edergi__cover--bluecard .mag-cover-bg {
  background:
    radial-gradient(ellipse 80% 70% at 85% 15%, rgba(245, 158, 11, .22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(26, 86, 219, .2) 0%, transparent 50%);
}
.work-edergi__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.work-edergi__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.work-edergi__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 20px;
  max-width: 42ch;
}
.work-edergi__cta {
  /* uses .work-page-cta */
  box-shadow: none;
}
.work-edergi__meta {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
}
.work-inner-page-body .work-features {
  margin-top: 0;
  border-top: none;
}

@media (max-width: 1100px) {
  .how-page-steps__grid--inner { grid-template-columns: repeat(2, 1fr); }
  .how-steps--inner-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps--inner-flow .how-connector { display: none; }
}
@media (max-width: 960px) {
  .work-edergi__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .work-page-head__inner,
  .work-bilgi-shell { padding-left: 24px; padding-right: 24px; }
  .work-page-head__inner { padding-left: 32px; }
  .work-edergi__card { grid-template-columns: 1fr; gap: 24px; }
  .work-edergi__card + .work-edergi__card {
    border-left: none;
    padding-left: 0;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
  }
  .work-contact-page .work-contact-aside {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding-top: 32px;
  }
  .work-page-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .work-page-head__inner,
  .work-bilgi-shell { padding-left: 16px; padding-right: 16px; }
  .work-page-head__inner { padding-top: 14px; padding-bottom: 12px; padding-left: 22px; }
  .how-page-steps__grid--inner { grid-template-columns: 1fr; }
  .how-steps--inner-flow { grid-template-columns: 1fr; gap: 28px; }
  .how-section--inner-flow { padding-bottom: 28px; }
  .work-edergi__cover { min-height: 240px; }
  .work-page-cta-band { padding: 22px 20px; }
  .work-page-cta-band__actions { width: 100%; }
  .work-page-cta-band__actions .work-page-cta { flex: 1; min-width: 140px; }
}

.work-jobs-page {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
}
.work-contact-page {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
}
.work-contact-grid--page {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 48px;
  align-items: start;
  margin: 0;
  max-width: none;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}
.work-contact-page .work-contact-form-card,
.work-contact-page .work-contact-aside {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.work-contact-page .work-contact-aside {
  padding-left: 48px;
  border-left: 1px solid var(--gray-200);
}
.work-contact-form-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: none;
}
.work-contact-info__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: none;
}
.work-contact-submit {
  /* uses .work-page-cta */
  margin-top: 4px;
}
.work-how-page {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
}
.work-how-flow {
  width: 100%;
  padding: 0 0 24px;
  box-sizing: border-box;
}
.how-section--inner-flow {
  background: transparent;
  border-radius: 0;
  padding: 0 0 40px;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  box-sizing: border-box;
  margin-bottom: 0;
}
.how-steps--inner-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  gap: 0;
}
.work-how-flow .how-section--inner-flow .how-step {
  padding: 8px 12px;
}
.work-how-flow .work-features {
  background: transparent;
  border: none;
}
.work-how-flow .work-features__inner {
  padding: 0;
}
.work-how-flow .work-feature {
  padding: 40px 0;
}
.work-how-flow .work-feature + .work-feature {
  border-top: 1px solid var(--gray-200);
}
.work-how-flow .work-feature__media {
  padding: 20px;
  border-radius: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  box-sizing: border-box;
}
.work-inner-page-body .work-features .work-feature__title::before {
  background: var(--gold);
  width: 28px;
  height: 3px;
  border-radius: 0;
}
.work-inner-page-body .work-features .work-feature__title {
  padding-top: 0;
}
.work-inner-page-body .work-features .work-feature__title::before {
  top: -14px;
  left: 0;
}
.work-how-page__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.work-how-page__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 62ch;
}
.jobs-section--inner { padding: 0; background: transparent; }
.jobs-section--inner .section-inner { padding: 0; max-width: none; }
.jobs-section--inner .jobs-layout {
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.jobs-section--inner .jobs-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--gray-50);
  border-color: var(--gray-100);
  box-shadow: none;
}
.jobs-header--tabs-only {
  display: flex;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: none;
}
.jobs-header--tabs-only .jobs-header-actions {
  width: 100%;
  align-items: flex-start;
}
.jobs-header--tabs-only .jobs-filter-tabs { flex-wrap: wrap; }

.jobs-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 12px 0 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.jobs-active-filters[hidden] { display: none !important; }
.jobs-active-filters__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  flex-shrink: 0;
}
.jobs-active-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.jobs-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 12px;
  background: white;
  border: 1px solid rgba(10, 36, 99, 0.12);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  max-width: 100%;
}
.jobs-filter-chip__type {
  font-weight: 600;
  color: var(--gray-500);
  font-size: 11px;
  flex-shrink: 0;
}
.jobs-filter-chip__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.jobs-filter-chip__remove:hover { background: var(--red-light); color: var(--red); }
.jobs-active-filters__clear {
  border: none;
  background: transparent;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  font-family: inherit;
  padding: 4px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.jobs-active-filters__clear:hover { color: var(--navy); text-decoration: underline; }
.filter-option.is-selected {
  background: rgba(10, 36, 99, 0.05);
  margin: 0 -8px;
  padding: 7px 8px;
  border-radius: 8px;
}
@media (max-width: 900px) {
  .work-jobs-page { padding: 24px 20px 28px; }
  .work-contact-page { padding: 28px 20px; }
  .work-how-page { padding: 28px 20px; }
  .how-section--inner-flow { padding: 32px 24px 36px; border-radius: 14px; }
  .work-how-flow { padding-bottom: 48px; }
  .work-how-flow .work-feature { padding: 40px 0; }
  .work-how-flow .work-feature__media { padding: 20px; }
  .work-contact-grid--page { grid-template-columns: 1fr; gap: 28px; }
  .work-contact-page .work-contact-aside {
    border-left: none;
    border-top: 1px solid var(--gray-100);
    padding-left: 0;
    padding-top: 24px;
  }
  .work-bilgi-shell--below-banner { margin-top: 24px; }
  .jobs-section--inner .jobs-layout { grid-template-columns: 1fr; gap: 20px; }
  .jobs-active-filters { flex-direction: column; align-items: stretch; }
  .jobs-active-filters__clear { align-self: flex-start; }
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV + PAGE RESPONSIVE (all Work pages)
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner {
    position: relative;
    flex-wrap: wrap;
    gap: 0;
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo { margin-right: auto; }
  .nav-panel {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--work-header-height, 98px);
    bottom: 0;
    z-index: 1090;
    background: white;
    overflow-y: auto;
    padding: 16px 20px 28px;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  }
  header.nav-open .nav-panel { display: flex; flex-direction: column; gap: 20px; }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }
  .nav-item {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
  }
  .nav-item .drop-menu,
  .nav-item .work-mega-mobile {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    display: none;
    margin-top: 4px;
    padding-left: 8px;
  }
  .nav-item.is-expanded .drop-menu,
  .nav-item.is-expanded .work-mega-mobile { display: block; }
  .work-mega-mobile {
    padding: 4px 0 8px 4px;
  }
  .work-mega-mobile .drop-item {
    padding: 10px 12px;
  }
  .work-mega-stage { display: none !important; }
  .nav-item .drop-menu::before { display: none; }
  .nav-cta {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .nav-cta .btn-nav-login,
  .nav-cta .btn-primary--employer {
    width: 100%;
    justify-content: center;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--work-header-height, 98px);
    background: rgba(15, 23, 42, 0.35);
    z-index: 1085;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  header.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .categories-header,
  .magazine-header,
  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .jobs-header-actions {
    align-items: flex-start;
    width: 100%;
  }
  .jobs-filter-tabs {
    flex-wrap: wrap;
    width: 100%;
  }
  .jobs-result-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .work-features__inner { padding: 0 20px; }
  .work-feature { gap: 32px; padding: 40px 0; }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .stat-sep { display: none; }
  .hero-title { letter-spacing: -1px; }
  .hero-search-tags { gap: 6px; }
  .footer-top .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .work-page-head__lead { font-size: 15px; }
  .work-edergi__title { font-size: 22px; }
  .mag-cover { min-height: 300px; padding: 28px 24px; }
  .mag-cover-title { font-size: 24px; }
  .how-header { margin-bottom: 40px; }
  .employer-inner { gap: 40px; }
}

@media (max-width: 560px) {
  .topbar { height: auto; min-height: 34px; }
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .topbar-ticker { width: 100%; min-width: 0; }
  .topbar-right { width: 100%; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; }
  .how-steps,
  .how-steps--inner-flow { grid-template-columns: 1fr; gap: 28px; }
  .footer-top .footer-inner { grid-template-columns: 1fr; }
  .footer-inner { padding-left: 20px; padding-right: 20px; }
  .mag-article { flex-direction: column; align-items: flex-start; }
  .mag-article-img { width: 100%; height: auto; min-height: 72px; }
  .job-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .job-card-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .job-apply-btn { margin-top: 0; }
  .work-contact-grid--page { grid-template-columns: 1fr; }
  .dergi-page-footer { flex-direction: column; text-align: center; }
  .work-how-flow { padding-bottom: 40px; }
  .work-how-flow .work-feature { padding: 32px 0; }
  .work-how-flow .work-feature__media { padding: 16px; }
  .work-how-flow .work-feature__title { font-size: 22px; }
}

/* ── Job detail (Başvuru detay) ── */
.work-bilgi-shell--job-detail {
  max-width: 1180px;
}

.job-detail-page {
  width: 100%;
  box-sizing: border-box;
}

.job-detail-back {
  margin-bottom: 20px;
}

.job-detail-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s ease;
}

.job-detail-back__link:hover {
  color: var(--blue-700);
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.job-detail-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-detail-hero-card,
.job-detail-section,
.job-detail-apply-card,
.job-detail-facts,
.job-detail-trust {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: none;
  box-sizing: border-box;
}

.job-detail-hero-card {
  padding: 0 0 28px;
}

.job-detail-section {
  padding: 28px 0;
}

.job-detail-apply-card {
  padding: 0 0 20px;
  border-bottom: none;
}

.job-detail-facts {
  padding: 20px 0;
}

.job-detail-trust {
  padding: 18px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--gray-200);
}

.job-detail-hero-card__top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.job-detail-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-detail-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.job-detail-logo__letter {
  font-size: 22px;
  font-weight: 800;
}

.job-detail-hero-card__identity {
  flex: 1;
  min-width: 0;
}

.job-detail-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.job-detail-company {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-700);
}

.job-detail-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 14px;
  color: var(--gray-600);
}

.job-detail-featured {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 12px;
  font-weight: 700;
}

.job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.job-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}

.job-detail-meta-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--gray-50);
}

.job-detail-meta-item--salary {
  background: #EFF6FF;
}

.job-detail-meta-item--urgent {
  background: #FEF2F2;
}

.job-detail-meta-item__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.job-detail-meta-item strong {
  font-size: 15px;
  color: var(--navy);
}

.job-detail-section {
  padding: 28px 32px;
}

.job-detail-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--navy);
}

.job-detail-prose {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  white-space: pre-line;
}

.job-detail-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-detail-skill {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
}

.job-detail-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-detail-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.job-detail-contact a {
  color: var(--blue-700);
  text-decoration: none;
  word-break: break-word;
}

.job-detail-contact a:hover {
  text-decoration: underline;
}

.job-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--work-header-height, 98px) + 20px);
}

.job-detail-apply-card {
  padding: 0 0 20px;
}

.job-detail-apply-card__head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy);
}

.job-detail-apply-card__head p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.job-detail-apply-btn,
.job-detail-apply-btn.work-page-cta {
  box-shadow: none;
}

.job-detail-trust {
  display: flex;
  gap: 12px;
  padding: 18px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--gray-200);
  border-color: var(--gray-200);
}

.job-detail-apply-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

.job-detail-external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  text-decoration: none;
}

.job-detail-external-link:hover {
  text-decoration: underline;
}

.job-detail-facts {
  padding: 20px 0;
}

.job-detail-facts h3 {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--navy);
}

.job-detail-facts dl {
  margin: 0;
}

.job-detail-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.job-detail-fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-detail-fact dt {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}

.job-detail-fact dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.job-detail-trust__icon {
  flex-shrink: 0;
}

.job-detail-trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .job-detail-hero-card {
    padding-bottom: 22px;
  }

  .job-detail-section {
    padding: 22px 0;
  }

  .job-detail-hero-card__top {
    flex-wrap: wrap;
  }

  .job-detail-featured {
    margin-left: 82px;
  }

  .job-detail-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .job-detail-meta-grid,
  .job-detail-fact {
    grid-template-columns: 1fr;
  }

  .job-detail-fact dd {
    text-align: left;
  }
}
