/* ============================================================
   METALDEISVAR - MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700&family=Barlow:wght@300;400;500&family=JetBrains+Mono:wght@300;400&display=swap');

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: #f7f8fa;
  color: #111827;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }
ul { list-style: none; }

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --orange:        #D97706;
  --orange-dark:   #b45309;
  --orange-glow:   rgba(217,119,6,0.12);
  --orange-dim:    rgba(217,119,6,0.06);
  --bg:            #f7f8fa;
  --bg2:           #eef0f5;
  --bg3:           #e4e7ed;
  --surface:       #ffffff;
  --surface2:      #f4f6fb;
  --border:        rgba(0,0,0,0.08);
  --border-hover:  rgba(217,119,6,0.3);
  --text:          #111827;
  --text-muted:    #6b7280;
  --text-dim:      #9ca3af;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
  --shadow-orange: 0 4px 20px rgba(217,119,6,0.18);
  --container: 1050px;
  --header-h:      64px;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: #c4ccd8; border-radius: 2px; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.site-wrapper { padding-top: var(--header-h); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.label-sm {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}
.animate-in { animation: fadeInUp .4s ease forwards; }
.delay-1 { animation-delay: .06s; opacity:0; }
.delay-2 { animation-delay: .12s; opacity:0; }
.delay-3 { animation-delay: .18s; opacity:0; }
.delay-4 { animation-delay: .24s; opacity:0; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(247,248,250,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 0;
}

/* Logo */
.site-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.logo-icon::after {
  content: '';
  position: absolute;
  width: 14px; height: 3px;
  background: #fff;
  box-shadow: 0 5px 0 #fff, 0 -5px 0 #fff;
  border-radius: 2px;
}
.logo-text-wrap {}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--text); letter-spacing: 0.3px;
  display: block; line-height: 1.1;
}
.logo-text em { color: var(--orange); font-style: normal; }
.logo-sub {
  font-size: 11px; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.8px;
  text-transform: uppercase; display: block; line-height: 1;
  margin-top: 2px;
}

/* Custom logo image */
.custom-logo-link img { max-height: 44px; width: auto; }

/* Main Nav */
#main-navigation {
  display: flex; align-items: center;
  margin-left: 36px; flex: 1;
}
#main-navigation ul {
  display: flex; gap: 2px; list-style: none; margin: 0; padding: 0;
}
#main-navigation ul li a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
  transition: color .15s, background .15s;
}
#main-navigation ul li a:hover,
#main-navigation ul li.current-menu-item > a,
#main-navigation ul li.current_page_item > a {
  color: var(--orange);
  background: rgba(0,0,0,0.04);
}
#main-navigation ul li.menu-item-has-children { position: relative; }
#main-navigation ul li.menu-item-has-children > ul {
  position: absolute; top: 100%; left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow);
  display: none; flex-direction: column;
  padding: 6px;
}
#main-navigation ul li.menu-item-has-children:hover > ul { display: flex; }
#main-navigation ul li.menu-item-has-children > ul li a {
  font-size: 13px; text-transform: none; letter-spacing: 0;
  padding: 8px 12px; border-radius: 5px;
}

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.btn-ghost {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  text-decoration: none; display: inline-flex;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.2); }
.btn-orange {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: #fff;
  padding: 9px 20px;
  background: var(--orange);
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  border: none;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
  color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 10px; cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; margin: 4px 0;
  transition: all .2s;
}

/* ============================================================
   HERO (front-page / home)
   ============================================================ */
.hero-section {
  position: relative; overflow: hidden;
  padding: 48px 24px 40px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(217,119,6,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(230,235,244,0.9) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,119,6,0.07);
  border: 1px solid rgba(217,119,6,0.18);
  border-radius: 20px; padding: 6px 14px;
  margin-bottom: 18px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 108px);
  font-weight: 600; line-height: 0.92;
  letter-spacing: -2px; color: var(--text);
  margin-bottom: 16px;
}
.hero-title .line-accent { color: var(--orange); display: block; }
.hero-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 520px; line-height: 1.6;
  margin-bottom: 28px; text-align: center;
}
.hero-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 15px 32px; border-radius: 8px;
  transition: background .15s, transform .1s, box-shadow .2s;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--orange-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(217,119,6,0.28);
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 400;
  letter-spacing: 0.3px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px;
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.btn-hero-secondary:hover { color: var(--text); border-color: rgba(0,0,0,0.2); }

/* Stats bar */
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; max-width: 640px; width: 100%;
  background: var(--surface);
}
.hero-stat {
  flex: 1; padding: 12px 18px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  color: var(--text); line-height: 1; display: block;
}
.hero-stat-num .accent { color: var(--orange); }
.hero-stat-label {
  font-size: 13px; color: var(--text-muted);
  margin-top: 4px; display: block; font-weight: 400;
}

/* ============================================================
   SEARCH BLOCK
   ============================================================ */
.search-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 170px;
  display: flex; align-items: center;
  padding: 0 24px;
}
.search-wrap {
  max-width: 1050px; width: 100%; margin: 0 auto;
  padding: 28px 0;
}
.search-section-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 14px;
}
.search-row {
  display: flex; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  transition: border-color .2s;
  width: 100%;
  height: 60px;
}
.search-row:focus-within { border-color: var(--orange); }
.search-row select {
  padding: 0 16px; background: var(--bg2);
  border: none; border-right: 1px solid var(--border);
  color: var(--text); font-size: 15px; font-weight: 400;
  min-width: 210px; cursor: pointer; height: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  font-family: var(--font-body);
}
.search-row input[type="text"],
.search-row input[type="search"] {
  flex: 1; padding: 0 20px;
  background: transparent; border: none;
  color: var(--text); font-size: 16px;
  font-family: var(--font-body); height: 100%;
}
.search-row input::placeholder { color: var(--text-dim); }
.search-row button[type="submit"],
.search-submit {
  padding: 0 36px; background: var(--orange);
  color: #fff; border: none;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0; height: 100%;
  transition: background .15s;
}
.search-row button[type="submit"]:hover { background: var(--orange-dark); }

.cat-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 16px;
}
.cat-chip {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-muted); background: transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
}
.cat-chip:hover {
  color: var(--orange);
  border-color: rgba(217,119,6,0.3);
  background: var(--orange-dim);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.section-eyebrow { margin-bottom: 8px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 600;
  color: var(--text); letter-spacing: -1px; line-height: 1;
}
.section-title .accent { color: var(--orange); }
.see-all-link {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.see-all-link:hover { color: var(--orange); }
.see-all-link svg { transition: transform .15s; }
.see-all-link:hover svg { transform: translateX(3px); }

/* ============================================================
   OSB GRID
   ============================================================ */
.osb-section { padding: 64px 24px; }
.osb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media(min-width: 900px) { .osb-grid { grid-template-columns: repeat(6, 1fr); } }
.osb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .2s, transform .15s;
  text-decoration: none; display: block;
}
.osb-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.osb-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.osb-card:hover::before { transform: scaleX(1); }
.osb-city {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--text);
}
.osb-name { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.osb-count {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600; color: var(--orange);
  margin-top: 10px; display: block;
}
.osb-sub { font-size: 11px; color: var(--text-dim); }

/* ============================================================
   JOB CARDS (homepage featured)
   ============================================================ */
.jobs-featured-section { padding: 0 24px 64px; }
.jobs-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 24px; align-items: start;
}
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px; display: flex; gap: 16px;
  align-items: flex-start; cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative; margin-bottom: 10px;
  text-decoration: none; color: inherit;
}
.job-card:hover { border-color: var(--border-hover); background: var(--surface2); }
.job-card.featured { border-left: 2px solid var(--orange); }
.job-card-logo {
  width: 48px; height: 48px; border-radius: 10px;
  background: #1a2332;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: #fff; flex-shrink: 0; letter-spacing: 0.5px;
  overflow: hidden;
}
.job-card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.job-card-body { flex: 1; min-width: 0; }
.job-card-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500; color: var(--text);
  margin-bottom: 4px; letter-spacing: 0.1px;
}
.job-card-company { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.job-card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.job-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.tag-machine { background: rgba(59,130,246,0.07); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.18); }
.tag-loc     { background: rgba(22,163,74,0.07);  color: #15803d; border: 1px solid rgba(22,163,74,0.18); }
.tag-type    { background: rgba(99,102,241,0.07); color: #4338ca; border: 1px solid rgba(99,102,241,0.18); }
.tag-new     { background: rgba(217,119,6,0.08);  color: var(--orange); border: 1px solid rgba(217,119,6,0.22); }
.job-card-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.job-salary {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--text);
}
.job-time {
  font-size: 11px; color: var(--text-dim);
  font-family: var(--font-mono);
}
.btn-apply {
  background: var(--orange); color: #fff;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 5px;
  border: none; cursor: pointer;
  transition: background .12s; text-decoration: none;
  display: inline-block;
}
.btn-apply:hover { background: var(--orange-dark); color: #fff; }

/* ============================================================
   JOB LISTINGS PAGE (archive-job_listing)
   ============================================================ */
.page-hero-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 36px;
  position: relative; overflow: hidden;
}
.page-hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 80% 50%, rgba(217,119,6,0.04), transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 600;
  color: var(--text); letter-spacing: -1px; line-height: 1;
  margin-top: 12px;
}
.page-hero-title .accent { color: var(--orange); }

/* Sticky filters */
.filters-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  position: sticky; top: var(--header-h); z-index: 50;
}
.filters-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.filter-select {
  padding: 10px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px; cursor: pointer;
  transition: border-color .15s; font-family: var(--font-body);
}
.filter-select:focus { border-color: var(--orange); }
.filter-count {
  font-family: var(--font-display); font-size: 13px; font-weight: 400;
  color: var(--text-muted); margin-left: auto;
}
.filter-count span { color: var(--text); font-weight: 600; }

/* 2-col layout: facets + list */
.jobs-page-layout {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 24px; padding: 28px 24px;
}

/* Facet Sidebar */
.facet-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px;
}
.facet-panel-title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
.facet-panel-body { padding: 12px 16px; }
.facet-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; cursor: pointer; border-radius: 5px;
  transition: color .15s;
}
.facet-item:hover .facet-label { color: var(--orange); }
.facet-check {
  width: 17px; height: 17px;
  border: 1.5px solid var(--border); border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: background .12s, border-color .12s;
}
.facet-item.active .facet-check {
  background: var(--orange); border-color: var(--orange);
}
.facet-item.active .facet-check::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px); display: block;
}
.facet-label { font-size: 14px; color: var(--text-muted); flex: 1; }
.facet-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }

/* Job list header */
.job-list-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.job-list-count {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}
.job-list-count span { color: var(--text); font-weight: 600; }
.sort-select {
  padding: 7px 12px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-muted); font-size: 12px;
  font-family: var(--font-display); font-weight: 500;
  cursor: pointer; appearance: none;
}

/* Full job card (archive) */
.job-card-full {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  margin-bottom: 12px;
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 16px; align-items: start; cursor: pointer;
  transition: border-color .2s, background .2s;
  text-decoration: none; color: inherit;
}
.job-card-full:hover { border-color: var(--border-hover); background: var(--surface2); }
.job-card-full.featured { border-left: 2px solid var(--orange); }
.jcf-logo {
  width: 56px; height: 56px; border-radius: 10px;
  background: #1a2332;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff;
  overflow: hidden;
}
.jcf-logo img { width: 100%; height: 100%; object-fit: cover; }
.jcf-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; color: var(--text); letter-spacing: 0.1px;
  margin-bottom: 4px;
}
.jcf-meta {
  font-size: 13px; color: var(--text-muted); margin-bottom: 12px;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.jcf-meta-sep { color: var(--text-dim); }
.jcf-right { text-align: right; }
.jcf-salary {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.jcf-time {
  font-size: 11px; color: var(--text-dim);
  font-family: var(--font-mono); margin-bottom: 10px;
}
.score-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff8f0; border: 1px solid rgba(217,119,6,0.2);
  border-radius: 5px; padding: 5px 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 400;
  color: var(--orange); margin-bottom: 8px;
}

/* ============================================================
   SINGLE JOB PAGE
   ============================================================ */
.single-job-layout {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; padding: 36px 24px;
}
.single-job-main {}
.job-detail-header {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.job-detail-logo {
  width: 72px; height: 72px; border-radius: 12px;
  background: #1a2332; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff;
  overflow: hidden;
}
.job-detail-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-detail-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.job-detail-company { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.job-detail-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.job-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-muted);
  background: var(--bg2); padding: 6px 12px;
  border-radius: 6px; border: 1px solid var(--border);
}
.job-detail-content { line-height: 1.75; font-size: 15px; color: var(--text-muted); }
.job-detail-content h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--text); margin: 24px 0 12px;
}
.job-detail-content ul { margin: 12px 0 12px 20px; list-style: disc; }
.job-detail-content li { margin-bottom: 6px; }

/* Apply sidebar */
.apply-sidebar {}
.apply-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.apply-salary {
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.apply-salary-note { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.btn-apply-big {
  width: 100%; padding: 15px;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background .15s; margin-bottom: 12px;
  text-align: center; display: block; text-decoration: none;
}
.btn-apply-big:hover { background: var(--orange-dark); color: #fff; }
.btn-wa-apply {
  width: 100%; padding: 13px;
  background: #f0fdf4; color: #15803d;
  border: 1px solid rgba(22,163,74,0.2);
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 8px; cursor: pointer;
  transition: background .12s; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none;
}
.btn-wa-apply:hover { background: #dcfce7; color: #15803d; }
.apply-details { border-top: 1px solid var(--border); padding-top: 18px; }
.apply-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.apply-detail-row:last-child { border-bottom: none; }
.apply-detail-label { color: var(--text-muted); }
.apply-detail-val { color: var(--text); font-weight: 500; }

/* ============================================================
   COMPANIES PAGE
   ============================================================ */
.companies-section { padding: 28px 24px; }
.companies-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.company-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .15s;
  text-decoration: none; display: block; color: inherit;
}
.company-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.company-card-header {
  height: 80px; background: var(--bg2);
  display: flex; align-items: center; gap: 14px; padding: 0 20px;
  border-bottom: 1px solid var(--border);
}
.company-logo {
  width: 50px; height: 50px; border-radius: 10px;
  background: #1a2332; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff;
  overflow: hidden;
}
.company-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--text);
}
.company-sector { font-size: 13px; color: var(--text-muted); }
.company-card-body { padding: 18px 20px; }
.company-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 14px;
}
.cs-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--orange);
}
.cs-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.company-machines {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.machine-tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  padding: 4px 10px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   USTA REHBERİ (resumes/candidates)
   ============================================================ */
.ustalar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.usta-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; cursor: pointer;
  transition: border-color .2s, transform .15s;
  text-decoration: none; color: inherit; display: block;
}
.usta-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.usta-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.usta-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg2); border: 2px solid rgba(217,119,6,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--orange); flex-shrink: 0; overflow: hidden;
}
.usta-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.usta-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  color: var(--text); margin-bottom: 3px;
}
.usta-bransh { font-size: 13px; color: var(--orange); font-weight: 500; }
.usta-loc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.usta-score {
  margin-left: auto;
  background: #fff8f0; border: 1px solid rgba(217,119,6,0.2);
  border-radius: 8px; padding: 8px 12px; text-align: center;
}
.score-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--orange); line-height: 1;
}
.score-label {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px;
}
.skill-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
.skill-name { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.skill-val { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.skill-track {
  height: 4px; background: rgba(0,0,0,0.08);
  border-radius: 2px; overflow: hidden;
}
.skill-fill {
  height: 100%; background: var(--orange);
  border-radius: 2px; opacity: 0.8;
  transition: width 1s ease;
}
.usta-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.exp-badge {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  padding: 4px 10px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-profil {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--orange); background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.22); padding: 6px 14px; border-radius: 5px;
  cursor: pointer; transition: background .12s; text-decoration: none;
}
.btn-profil:hover { background: rgba(217,119,6,0.15); color: var(--orange); }

/* ============================================================
   EĞİTİM & SERTİFİKA
   ============================================================ */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.edu-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.edu-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.edu-accent { height: 5px; background: var(--orange); }
.edu-card-body { padding: 22px; }
.edu-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff8f0; border: 1px solid rgba(217,119,6,0.18);
  border-radius: 5px; padding: 4px 10px;
  font-family: var(--font-display); font-size: 10px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.edu-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--text); line-height: 1.25; margin-bottom: 8px;
}
.edu-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.edu-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.edu-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--text-muted); font-weight: 400;
}
.edu-footer { display: flex; justify-content: space-between; align-items: center; }
.edu-price {
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--text);
}
.edu-price-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; display: block; }
.btn-edu {
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 10px 20px; border-radius: 6px; border: none; cursor: pointer;
  transition: background .12s; text-decoration: none;
}
.btn-edu:hover { background: var(--orange-dark); color: #fff; }

/* MYK Strip */
.myk-strip {
  background: #fffbf0; border: 1px solid rgba(217,119,6,0.15);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; gap: 20px; margin-bottom: 32px;
}
.myk-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(217,119,6,0.1); border: 1px solid rgba(217,119,6,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.myk-text h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.myk-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog-section { padding: 0 24px 64px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .15s; text-decoration: none; color: inherit;
}
.article-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.article-thumb {
  height: 160px; background: var(--bg2); position: relative; overflow: hidden;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-thumb-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange);
}
.article-body { padding: 18px; }
.article-cat {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.article-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  color: var(--text); line-height: 1.3; margin-bottom: 8px;
}
.article-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.article-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}
.article-date { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); }
.article-read { font-family: var(--font-display); font-size: 12px; font-weight: 500; color: var(--orange); }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px;
}
.widget-header {
  background: var(--bg2); padding: 13px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.widget-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.widget-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--text);
}
.widget-body { padding: 16px 18px; }
.widget-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

/* Firma row in widget */
.firm-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; text-decoration: none; color: inherit;
}
.firm-row:last-child { border-bottom: none; padding-bottom: 0; }
.firm-logo-sm {
  width: 38px; height: 38px; border-radius: 7px; background: #1a2332;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 600; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.firm-logo-sm img { width: 100%; height: 100%; object-fit: cover; }
.firm-name-sm { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.2; }
.firm-sub { font-size: 12px; color: var(--text-muted); }
.firm-job-count {
  margin-left: auto; font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--orange);
}

/* WA button */
.btn-wa {
  width: 100%; display: flex; align-items: center; gap: 12px;
  background: #f0fdf4; border: 1px solid rgba(22,163,74,0.2);
  color: #15803d; font-family: var(--font-display);
  font-size: 13px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 13px 18px; border-radius: var(--radius);
  cursor: pointer; transition: background .12s, border-color .12s;
  text-decoration: none;
}
.btn-wa:hover { background: #dcfce7; border-color: rgba(22,163,74,0.3); color: #15803d; }
.wa-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(22,163,74,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ============================================================
   İLAN VER MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform .2s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.modal-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--text);
}
.modal-close {
  width: 32px; height: 32px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); font-size: 18px; line-height: 1;
  transition: border-color .15s, color .15s;
}
.modal-close:hover { border-color: var(--orange); color: var(--orange); }
.modal-body { padding: 24px 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted);
  display: block; margin-bottom: 8px;
}
.form-input, .form-select-input, .form-textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 15px;
  padding: 13px 15px; transition: border-color .15s; font-family: var(--font-body);
}
.form-input:focus, .form-select-input:focus, .form-textarea:focus {
  border-color: var(--orange); outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-footer {
  padding: 20px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 12px;
  position: sticky; bottom: 0; background: var(--surface);
}

/* ============================================================
   WP JOB MANAGER OVERRIDES
   ============================================================ */
.job_listings { margin: 0; }
.job_listings .job_listing {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  margin-bottom: 12px; display: grid;
  grid-template-columns: 60px 1fr auto; gap: 16px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, background .2s;
}
.job_listings .job_listing:hover { border-color: var(--border-hover); background: var(--surface2); }
.job_listings .job_listing .company_logo img {
  width: 52px; height: 52px; border-radius: 10px; object-fit: cover;
}
.job_listings .job_listing .position h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--text);
}
.job_listings .job_listing .company strong { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.job_listings .job_listing .location { font-size: 13px; color: var(--text-muted); }
.job_listings .job_listing .job-type {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
  background: rgba(99,102,241,0.07); color: #4338ca; border: 1px solid rgba(99,102,241,0.18);
}
.job_filters { margin-bottom: 20px; }
.job_filters .search_keywords,
.job_filters .search_location {
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 15px; width: 100%;
  background: var(--surface); color: var(--text); font-family: var(--font-body);
}
.job_filters .search_keywords:focus,
.job_filters .search_location:focus { border-color: var(--orange); outline: none; }
.job_filters button {
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 12px 24px; border-radius: var(--radius); border: none; cursor: pointer;
}
.job_filters button:hover { background: var(--orange-dark); }
.wpjm-job-preview { display: none; }

/* ── Single ilan sayfası: WPJM varsayılan şablon gizleme ── */
.single_job_listing .company,
.single_job_listing .company_logo,
.single_job_listing img.company_logo,
.single_job_listing .company_header,
.job-listing-meta.meta { display: none !important; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: 40px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--text); display: block; margin-bottom: 10px;
}
.footer-brand-logo em { color: var(--orange); font-style: normal; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .15s, background .15s; text-decoration: none;
  color: var(--text-muted);
}
.social-btn:hover { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color .15s; text-decoration: none; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-dim); transition: color .15s; text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .jobs-layout,
  .single-job-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .companies-grid,
  .ustalar-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header actions mobilde gizle — plugin alt çubuğu devreye girer */
  .header-actions { display: none !important; }

  /* Hero CTA butonları tam genişlik */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    padding: 0 16px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  #main-navigation { display: none; }
  #main-navigation.open { display: flex; flex-direction: column; }
  .menu-toggle { display: block; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
  .jobs-page-layout { grid-template-columns: 1fr; }
  .facet-sidebar { display: none; }
  .edu-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .companies-grid,
  .ustalar-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .job-card-full { grid-template-columns: 48px 1fr; }
  .job-card-full .jcf-right { grid-column: 1/-1; display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-actions .btn-ghost { display: none; }
  .osb-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MIV MODERN SAYFALAR — YENİ TASARIM SİSTEMİ
   ============================================================ */

/* ── Breadcrumb ── */
.miv-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.miv-breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.miv-breadcrumb-inner a {
  color: var(--text-muted);
  transition: color .15s;
}
.miv-breadcrumb-inner a:hover { color: var(--orange); }
.miv-breadcrumb-inner span { color: var(--text-dim); }

/* ── Page Layout ── */
.miv-job-page {
  max-width: var(--container);
  margin: 32px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ── Cards ── */
.miv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

/* ── Job Header Card ── */
.miv-job-header-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.miv-job-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
}
.miv-job-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.miv-job-header-info { flex: 1; }
.miv-job-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 6px;
}
.miv-job-company {
  font-size: 15px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.miv-company-link {
  font-size: 13px;
  color: var(--text-muted) !important;
  background: var(--bg2);
  padding: 2px 6px;
  border-radius: 4px;
}
.miv-job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.miv-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg2);
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.miv-meta-time { color: var(--text-dim); }

/* Score badge */
.miv-score-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.miv-score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.miv-score-label {
  display: block;
  font-size: 10px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Tag Row ── */
.miv-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.miv-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}
.miv-tag-orange {
  background: var(--orange-dim);
  color: var(--orange-dark);
  border: 1px solid var(--orange-glow);
}
.miv-tag-blue {
  background: rgba(59,130,246,0.07);
  color: #1d4ed8;
  border: 1px solid rgba(59,130,246,0.15);
}
.miv-tag-gray {
  background: var(--bg2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── Job Content ── */
.miv-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-dim);
}
.miv-job-description {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
  max-width: 680px;
}
.miv-job-description p { margin-bottom: 10px; }
.miv-job-description ul {
  padding-left: 20px;
  margin-bottom: 12px;
  list-style: disc;
}
.miv-job-description li { margin-bottom: 6px; }
/* Gizle: WPJM varsayılan firma bloğu */
.miv-job-description .company,
.miv-job-description img.company_logo,
.single_job_listing ul.job-listing-meta { display: none !important; }

/* Benefits */
.miv-benefits { margin-top: 28px; }
.miv-benefits h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.miv-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.miv-benefit-item {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* ── Related Jobs ── */
.miv-related { margin-top: 8px; }
.miv-related-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.miv-related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.miv-related-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.miv-related-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: var(--orange-dim);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.miv-related-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.miv-related-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── SIDEBAR ── */
.miv-job-sidebar { position: sticky; top: 80px; }

/* Salary card */
.miv-salary-card {
  text-align: center;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-color: var(--orange-glow);
}
.miv-salary-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1.1;
}
.miv-salary-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Apply buttons */
.miv-apply-card { padding: 20px; }
.miv-btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  margin-bottom: 10px;
}
.miv-btn-apply:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  color: #fff;
}
.miv-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: 8px;
}
.miv-btn-wa:hover { background: #dcfce7; color: #15803d; }
.miv-btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.miv-btn-phone:hover { background: #dbeafe; color: #1d4ed8; }

/* Details card */
.miv-details-card { padding: 20px; }
.miv-details-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.miv-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid #f8fafc;
  gap: 12px;
}
.miv-detail-row:last-child { border-bottom: none; }
.miv-detail-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  white-space: nowrap;
}
.miv-detail-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .miv-job-page {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin: 16px auto;
    gap: 0;
  }
  .miv-job-sidebar {
    position: static;
    order: -1;
  }
  .miv-job-header-card {
    flex-wrap: wrap;
    padding: 20px;
  }
  .miv-score-badge {
    position: static;
    margin-left: auto;
  }
  .miv-job-title { font-size: 20px; }
  .miv-card { padding: 20px; border-radius: 10px; }
}

@media (max-width: 480px) {
  .miv-breadcrumb { padding: 10px 16px; }
  .miv-job-logo { width: 52px; height: 52px; min-width: 52px; }
  .miv-job-title { font-size: 18px; }
  .miv-salary-amount { font-size: 24px; }
}

/* ============================================================
   MIV2 — İLAN DETAY SAYFASI YENİ TASARIM
   ============================================================ */

/* Breadcrumb */
.miv2-bc {
  background: #fff;
  border-bottom: 1px solid #E4E8EF;
  padding: 12px 24px;
}
.miv2-bc-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748B;
}
.miv2-bc-inner a { color: #64748B; }
.miv2-bc-inner a:hover { color: #E8813A; }
.miv2-bc-cur { color: #1A2332; font-weight: 500; }

/* Page layout */
.miv2-page {
  max-width: 1160px;
  margin: 28px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 20px;
  align-items: start;
}

/* Card base */
.miv2-card {
  background: #fff;
  border: 1px solid #E4E8EF;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 14px;
}

/* Header card */
.miv2-hcard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.miv2-logo {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E8813A, #C9611A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}
.miv2-logo img { width: 100%; height: 100%; object-fit: cover; }
.miv2-hinfo { flex: 1; min-width: 0; padding-right: 72px; }
.miv2-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A2332;
  line-height: 1.3;
  margin-bottom: 4px;
}
.miv2-company {
  font-size: 13px;
  font-weight: 600;
  color: #E8813A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.miv2-ext {
  font-size: 11px;
  color: #94A3B8;
  background: #F5F7FA;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #E4E8EF;
}
.miv2-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.miv2-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #64748B;
  background: #F5F7FA;
  border: 1px solid #E4E8EF;
  border-radius: 20px;
  padding: 4px 10px;
}
.miv2-chip-time { color: #94A3B8; }

/* Score badge */
.miv2-score {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #E8813A, #C9611A);
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.miv2-score-n { display: block; font-size: 22px; font-weight: 700; line-height: 1; }
.miv2-score-l { display: block; font-size: 10px; opacity: .85; text-transform: uppercase; letter-spacing: .5px; }

/* Tags */
.miv2-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.miv2-tag { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }
.miv2-tag-o { background: #FFF3E6; color: #C9611A; border: 1px solid #FBBF8A; }
.miv2-tag-b { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.miv2-tag-g { background: #F5F7FA; color: #64748B; border: 1px solid #E4E8EF; }

/* Section title */
.miv2-sec-title {
  font-size: 14px;
  font-weight: 700;
  color: #1A2332;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

/* Description */
.miv2-desc { font-size: 14px; line-height: 1.85; color: #374151; max-width: 680px; }
.miv2-desc p { margin-bottom: 10px; }
.miv2-desc ul { padding-left: 18px; margin-bottom: 10px; list-style: disc; }
.miv2-desc li { margin-bottom: 5px; }

/* Hide WPJM defaults */
.miv2-desc .company,
.miv2-desc img.company_logo,
.miv2-desc ul.job-listing-meta,
.single_job_listing .company,
.single_job_listing ul.job-listing-meta { display: none !important; }

/* Benefits */
.miv2-benefits { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.miv2-ben {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

/* Related */
.miv2-related { display: flex; flex-direction: column; gap: 8px; }
.miv2-rel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #FAFBFC;
  border: 1px solid #E4E8EF;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
  text-decoration: none;
}
.miv2-rel:hover { border-color: #E8813A; background: #FFFAF6; }
.miv2-rel-logo {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: #FFF3E6;
  color: #C9611A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.miv2-rel-title { font-size: 13px; font-weight: 600; color: #1A2332; }
.miv2-rel-sub { font-size: 11px; color: #64748B; margin-top: 2px; }

/* Sidebar */
.miv2-sidebar { position: sticky; top: 76px; }

/* Salary card */
.miv2-sal-card {
  background: linear-gradient(135deg, #FFF8F2, #fff);
  border-color: #FBBF8A;
  text-align: center;
  padding: 20px;
}
.miv2-sal-amt { font-size: 24px; font-weight: 700; color: #C9611A; letter-spacing: -.5px; }
.miv2-sal-note { font-size: 11px; color: #94A3B8; margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* Button card */
.miv2-btn-card { padding: 16px; }
.miv2-btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  background: #E8813A;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 8px;
}
.miv2-btn-apply:hover { background: #C9611A; color: #fff; }
.miv2-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: 8px;
}
.miv2-btn-wa:hover { background: #DCFCE7; color: #15803D; }
.miv2-btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.miv2-btn-tel:hover { background: #DBEAFE; color: #1D4ED8; }

/* Details card */
.miv2-det-card { padding: 18px; }
.miv2-det-title {
  font-size: 13px;
  font-weight: 700;
  color: #1A2332;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
}
.miv2-det-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #FAFBFC;
  gap: 10px;
}
.miv2-det-row:last-child { border-bottom: none; }
.miv2-det-l {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}
.miv2-det-v {
  font-size: 12px;
  font-weight: 600;
  color: #1A2332;
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .miv2-page {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin: 16px auto;
    gap: 0;
  }
  .miv2-sidebar { position: static; order: 2; }
  .miv2-hinfo { padding-right: 0; }
  .miv2-score { position: static; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; margin-top: 10px; }
  .miv2-score-n { font-size: 16px; }
  .miv2-title { font-size: 17px; }
  .miv2-card { padding: 16px; border-radius: 10px; }
}


/* ── FİRMALAR MOBİL FİX ── */
@media (max-width: 768px) {
  body.post-type-archive-miv_firma .site-wrapper > div > div {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  body.post-type-archive-miv_firma main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }
  body.post-type-archive-miv_firma main + div,
  body.post-type-archive-miv_firma main ~ div,
  body.post-type-archive-miv_firma aside {
    display: none !important;
  }
  body.post-type-archive-miv_firma .article-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 18px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    border: 1.5px solid #E4E8EF !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
  }
  body.post-type-archive-miv_firma .article-body a h2,
  body.post-type-archive-miv_firma .article-body h2,
  body.post-type-archive-miv_firma .article-body h3 {
    font-size: 17px !important;
    color: #E8813A !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }
  body.post-type-archive-miv_firma .article-body p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #4B5563 !important;
    word-break: break-word !important;
  }
}

/* ── MOBİL: Kompakt İlan Kartı (Benzer İlanlar stili) ───────────────────── */
@media (max-width: 640px) {
  .job-card {
    padding: 12px 14px;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
  }
  .job-card-logo {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .job-card-body {
    flex: 1;
    min-width: 0;
  }
  .job-card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 2px;
    white-space: normal;
  }
  .job-card-company {
    font-size: 12px;
    color: var(--text-muted, #888);
    margin-bottom: 0;
  }
  .job-card-tags {
    display: none;
  }
  .job-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
  }
  .job-card-right .job-time {
    font-size: 11px;
    color: var(--text-muted, #888);
    white-space: nowrap;
  }
  .job-card-right .btn-apply {
    display: none;
  }
}


/* MOBIL KOMPAKT ILAN KARTI */
@media (max-width: 640px) {
  .job-card {
    padding: 12px 14px;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
  }
  .job-card-logo {
    width: 40px;
    height: 40px;
    font-size: 12px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .job-card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 2px;
  }
  .job-card-company {
    font-size: 12px;
  }
  .job-card-tags { display: none; }
  .job-card-right .btn-apply { display: none; }
  .job-card-right .job-time {
    font-size: 11px;
    white-space: nowrap;
  }
}

/* ── MOBİL: Tek Kolon Düzeni & Benzer İlanlar ── */
@media (max-width: 768px) {

  .miv2-page {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    margin: 16px auto !important;
    gap: 16px !important;
  }

  .miv2-related {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .miv2-rel {
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: unset !important;
  }

  .miv2-rel-title {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .miv2-rel-sub {
    font-size: 11px !important;
  }

}

@media (max-width: 900px) {
  .job-card {
    display: grid !important;
    grid-template-columns: 38px 1fr auto !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 4px 10px !important;
    padding: 12px 14px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .job-card-logo {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    align-self: center !important;
  }
  .job-card-body {
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    min-width: 0 !important;
  }
  .job-card-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 2px !important;
    color: #1a2332 !important;
  }
  .job-card-company {
    font-size: 11px !important;
    color: #64748b !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
  }
  .job-card-tags {
    display: none !important;
  }
  .job-card-right {
    grid-column: 3 !important;
    grid-row: 1 / 3 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  .job-card-right .job-time {
    font-size: 11px !important;
    color: #94a3b8 !important;
    white-space: nowrap !important;
  }
  .job-card-right .btn-apply,
  .job-card-right .job-salary {
    display: none !important;
  }
  .jobs-main {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ── MOBİL: job-card kompakt (max-width: 900px) ── */
@media (max-width: 900px) {
  .job-card {
    padding: 12px 14px !important;
    gap: 10px !important;
    align-items: center !important;
    margin-bottom: 8px !important;
  }
  .job-card-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
  }
  .job-card-body {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .job-card-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 2px !important;
    white-space: normal !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }
  .job-card-company {
    font-size: 11px !important;
    color: #64748b !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }
  .job-card-tags {
    display: none !important;
  }
  .job-card-right {
    flex-shrink: 0 !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 !important;
    min-height: 0 !important;
  }
  .job-card-right .job-time {
    display: none !important;
  }
  .job-card-right .btn-apply {
    font-size: 11px !important;
    padding: 5px 10px !important;
    white-space: nowrap !important;
  }
  .job-card-right .job-salary {
    font-size: 11px !important;
    white-space: nowrap !important;
  }
}