/* ═══════════════════════════════════════════════════════════════
   Dealls Theme — Main CSS  (Pixel-Perfect dealls.com)
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:        #5b21b6;
  --purple-dark:   #4c1d95;
  --purple-mid:    #7c3aed;
  --purple-light:  #ede9fe;
  --purple-pale:   #f5f3ff;
  --orange:        #f59e0b;
  --orange-dark:   #d97706;
  --orange-light:  #fef3c7;
  --green:         #16a34a;
  --green-light:   #dcfce7;
  --red:           #dc2626;
  --red-light:     #fee2e2;
  --blue:          #2563eb;
  --blue-light:    #dbeafe;
  --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-800:      #1f2937;
  --gray-900:      #111827;
  --white:         #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --t: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; line-height: 1.4;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  white-space: nowrap; cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn-purple { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-purple:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: var(--white); }

.btn-outline-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple-light); color: var(--purple); }

.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.btn-white { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); }

.btn-disabled { background: var(--gray-200); color: var(--gray-500); cursor: not-allowed; pointer-events: none; }

.btn-lg { padding: 12px 26px; font-size: 15px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

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

.header-inner {
  display: flex; align-items: center; gap: 8px;justify-content: space-between;
  height: 60px;
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 32px; width: auto; }

.logo-text {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--gray-900);
}
.logo-exclaim { color: var(--orange); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 2px; flex: 1; padding-left: 16px; }

.nav-link {
  padding: 6px 12px; font-size: 13px; font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: color var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--purple); }
.nav-link.active { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

.header-auth-links { display: flex; align-items: center; gap: 4px; }
.header-auth-link {
  padding: 7px 14px; font-size: 13px; font-weight: 600;
  color: var(--gray-700); border-radius: var(--r-full);
  transition: background var(--t), color var(--t);
}
.header-auth-link:hover { color: var(--purple); }
.header-auth-link--masuk {
  background: var(--purple); color: var(--white);
}
.header-auth-link--masuk:hover { background: var(--purple-dark); color: var(--white); }
.header-auth-link--daftar {
  border: 1.5px solid var(--gray-300); color: var(--gray-700);
  padding: 5.5px 14px;
}
.header-auth-link--daftar:hover { border-color: var(--purple); color: var(--purple); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: 8px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display: none; border-top: 1px solid var(--gray-200); background: var(--white); padding: 16px 0; }
.mobile-nav.open { display: block; }
.mobile-nav-link { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-nav-link:hover { color: var(--purple); }
.mobile-search { display: flex; gap: 8px; margin-top: 16px; }
.mobile-search input { flex: 1; padding: 10px 14px; border: 1px solid var(--gray-300); border-radius: var(--r-full); font-size: 14px; outline: none; }
.mobile-search input:focus { border-color: var(--purple); }

/* ── Site Body ────────────────────────────────────────────────── */
.site-body { min-height: calc(100vh - 60px); }

/* ── Hero (compact — hanya judul + quick cards) ───────────────── */
.hero {
  background: var(--purple-dark);
  color: var(--white);
  padding: 48px 0 80px;   /* padding bawah ekstra agar search card melayang */
  position: relative;
  text-align: center;
}

.hero--compact { padding-bottom: 80px; }

.hero-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700; line-height: 1.25;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-highlight { color: var(--orange); }

/* Quick Filter Cards (horizontal, setengah transparan) */
.hero-quick-filters {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}

.qf-card {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-md);
  color: var(--white); font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
  min-width: 130px;
}
.qf-card:hover, .qf-card--active {
  background: rgba(255,255,255,.26);
  color: var(--white);
}
.qf-card-icon { font-size: 18px; flex-shrink: 0; }
.qf-card-label { flex: 1; text-align: left; }
.qf-card-chevron { color: rgba(255,255,255,.6); font-size: 16px; flex-shrink: 0; }

/* ── Search + Filter Card (melayang di luar hero) ─────────────── */
.search-filter-wrapper {
  margin-top: -52px;   /* tarik naik ke atas hero */
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.search-filter-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Baris search */
.search-row {
  display: flex; align-items: center;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.search-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;
}
.search-input-wrap svg { color: var(--purple); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; padding: 12px 0;
  border: none; outline: none; font-size: 14px;
  color: var(--gray-800); background: transparent;
}
.search-input-wrap input::placeholder { color: var(--gray-400); }

.search-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.search-action-btn { border-radius: var(--r-sm) !important; }

/* Baris filter pills */
.filter-row {
  display: flex; align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }

.filter-pill {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
  padding: 0 4px 0 14px;
  border-right: 1px solid var(--gray-100);
  position: relative;
}
.filter-pill:last-child { border-right: none; }

.filter-pill select {
  appearance: none; -webkit-appearance: none;
  border: none; outline: none;
  padding: 12px 4px 12px 0;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  background: transparent; cursor: pointer;
  white-space: nowrap;
}
.filter-pill select:focus { color: var(--purple); }
.filter-pill select:disabled { opacity: .5; cursor: default; }

.filter-pill-chevron { color: var(--gray-400); flex-shrink: 0; pointer-events: none; }

.filter-divider { width: 1px; height: 24px; background: var(--gray-100); flex-shrink: 0; display: none; }

/* Urut Berdasarkan: label teks + select */
.filter-pill--urut { gap: 4px; padding-left: 14px; }
.filter-urut-label {
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  white-space: nowrap; flex-shrink: 0;
}
.filter-pill--urut select { font-weight: 600; }

/* ── Category Tabs (di luar hero, background putih/abu) ───────── */
.category-tabs-outer {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.category-tabs-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 10px;
  min-height: 52px;
  width:90px ;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  border: none;
  background: #374151;
  flex-shrink: 0;
  white-space: normal;
  word-break: break-word;
  text-align:left
}
@media (max-width: 768px){
  .category-tabs-wrap{
    display: flex;
    justify-content:space-between;
  }
  .cat-tab{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-tab:hover { background: #4b5563; color: var(--white); }
.cat-tab.active { background: var(--purple); color: var(--white); font-weight: 700; }
.cat-tab--hidden { display: none; }
.cat-tab--hidden.cat-tab--revealed { display: inline-flex; }

/* See More — oranye */
.cat-tab--see-more {
  background: #f59e0b;
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: auto;
  min-height: 52px;
  padding: 9px 16px;
  white-space: nowrap;
}
.cat-tab--see-more:hover { background: #d97706; color: var(--white); }
.cat-tab--see-more svg { transition: transform var(--t); flex-shrink: 0; }
.cat-tab--see-more[aria-expanded="true"] svg { transform: rotate(180deg); }
.cat-tab--see-more[aria-expanded="true"] { background: #d97706; }

@media (max-width: 768px) {
  .hero--compact { padding-bottom: 60px; }
  .search-filter-wrapper { margin-top: -40px; }
  .hero-quick-filters { gap: 8px; }
  .qf-card { min-width: 110px; padding: 10px 12px; }
  .search-row { flex-wrap: wrap; gap: 6px; padding: 8px; }
  .search-actions { width: 100%; }
  .search-action-btn { flex: 1; justify-content: center; }
}

/* ── Section Commons ──────────────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 20px; font-weight: 700; color: var(--gray-900); letter-spacing: -.3px; }
.section-link { font-size: 13px; font-weight: 600; color: var(--purple); }
.section-link:hover { text-decoration: underline; }

/* ── Jobs Section ─────────────────────────────────────────────── */
.jobs-section { padding: 28px 0; background: var(--white); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .jobs-grid { grid-template-columns: 1fr; } }

/* ── Job Card ─────────────────────────────────────────────────── */
.job-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--t), border-color var(--t);
  cursor: pointer;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--purple); }
.job-card--expired { opacity: .55; }

/* Urgent badge */
.job-card-urgent-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff7ed; border: 1px solid #fed7aa;
  color: #c2410c; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: var(--r-sm);
  margin-bottom: 2px;
  width: fit-content;
}

/* Bookmark */
.job-card-bookmark {
  position: absolute; top: 14px; right: 14px;
  color: var(--gray-400); cursor: pointer; padding: 2px;
}
.job-card-bookmark:hover { color: var(--purple); }

/* Top row: logo + title */
.job-card-top { display: flex; align-items: flex-start; gap: 12px; }

.job-card-logo-wrap { flex-shrink: 0; }
.job-card-logo-wrap img {
  width: 40px; height: 40px; object-fit: contain;
  border-radius: var(--r-sm); border: 1px solid var(--gray-200);
}

.job-card-title-wrap { flex: 1; min-width: 0; }
.job-card-title {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  line-height: 1.3; margin-bottom: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.job-card:hover .job-card-title { color: var(--purple); }

.job-card-company {
  font-size: 12px; color: var(--gray-600); display: flex; align-items: center; gap: 4px;
}
.job-card-company a { color: var(--gray-600); }
.job-card-company a:hover { color: var(--purple); }
.verified-icon { color: #2563eb; font-size: 12px; flex-shrink: 0; }

/* Info rows */
.job-card-info { display: flex; flex-direction: column; gap: 5px; }

.job-info-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-600);
}
.job-info-row svg { color: var(--gray-400); flex-shrink: 0; }

.jenis-badge-inline {
  font-size: 12px; font-weight: 600; color: var(--purple);
}

.salary-text { font-size: 12px; color: var(--gray-700); font-weight: 500; }

/* Card footer */
.job-card-footer {
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.job-rekruter-time { font-size: 11px; color: var(--gray-400); }

/* ── Logo Placeholder ─────────────────────────────────────────── */
.logo-ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: var(--white); font-weight: 700; text-transform: uppercase;
  border-radius: var(--r-sm);
}
.logo-ph--40 { width: 40px; height: 40px; font-size: 16px; }
.logo-ph--48 { width: 48px; height: 48px; font-size: 18px; }
.logo-ph--64 { width: 64px; height: 64px; font-size: 24px; border-radius: var(--r-md); }
.logo-ph--80 { width: 80px; height: 80px; font-size: 32px; border-radius: var(--r-md); }
.logo-ph--100 { width: 100px; height: 100px; font-size: 40px; border-radius: var(--r-lg); }

/* ── Lebih Banyak button ──────────────────────────────────────── */
.lebih-banyak-wrap { text-align: center; padding: 24px 0 0; }
.lebih-banyak-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 28px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--t), color var(--t);
  cursor: pointer;
}
.lebih-banyak-btn:hover { border-color: var(--purple); color: var(--purple); }

/* ── Companies Section (homepage) ─────────────────────────────── */
.companies-section { padding: 36px 0; }

.companies-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb { margin-bottom: 12px; }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumb-item { font-size: 13px; color: var(--gray-500); }
.breadcrumb-item a { color: var(--purple); }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item:not(:last-child)::after { content: '>'; margin-left: 4px; color: var(--gray-300); }
.breadcrumb-item.active { color: var(--gray-800); }
.breadcrumb--white .breadcrumb-item,
.breadcrumb--white .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.breadcrumb--white .breadcrumb-item::after { color: rgba(255,255,255,.4); }
.breadcrumb--white .breadcrumb-item a { color: var(--white); }

/* ── Page Header ──────────────────────────────────────────────── */
.page-header { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 28px 0 20px; }
.page-title { font-size: 26px; font-weight: 800; color: var(--gray-900); letter-spacing: -.4px; margin: 8px 0 4px; }
.page-subtitle { font-size: 14px; color: var(--gray-500); }

/* ── Single Lowongan ──────────────────────────────────────────── */
.single-lowongan-wrap { padding: 24px 0 64px; background: var(--gray-50); }

.single-lowongan-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 860px) { .single-lowongan-layout { grid-template-columns: 1fr; } }

/* Job card header */
.job-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
}

.job-detail-head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 14px;
}

.job-detail-logo img {
  width: 48px; height: 48px; object-fit: contain;
  border-radius: var(--r-md); border: 1px solid var(--gray-200);
}

.job-detail-heading { flex: 1; }
.job-detail-title {
  font-size: 20px; font-weight: 700; color: var(--gray-900);
  line-height: 1.2; margin-bottom: 4px;
}
.job-detail-company-link {
  font-size: 14px; font-weight: 600; color: var(--purple);
  display: inline-block; margin-bottom: 12px;
}
.job-detail-company-link:hover { text-decoration: underline; }

.job-detail-rekruter {
  font-size: 12px; color: var(--gray-500);
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; flex-shrink: 0;
}

/* Info rows in single job */
.job-detail-info { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.job-detail-info-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-700);
}
.job-detail-info-row svg { color: var(--gray-400); flex-shrink: 0; }
.info-value-purple { color: var(--purple); font-weight: 600; }

/* Apply button row */
.job-apply-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.job-apply-secondary { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-300); border-radius: var(--r-full);
  color: var(--gray-600); transition: border-color var(--t), color var(--t);
  cursor: pointer; background: var(--white);
}
.icon-btn:hover { border-color: var(--purple); color: var(--purple); }
.job-no-signup { font-size: 12px; color: var(--purple); display: block; margin-top: 8px; }
.job-no-signup:hover { text-decoration: underline; }

/* Tips Menjaga Diri */
.tips-card {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--r-md); padding: 16px;
  margin-bottom: 16px;
}
.tips-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tips-card-head strong { font-size: 14px; color: var(--gray-900); }
.tips-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Content card (deskripsi, kualifikasi) */
.content-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 20px;
  margin-bottom: 16px;
}
.content-card-title {
  font-size: 16px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 14px;
}

/* Prose */
.prose { font-size: 14px; line-height: 1.75; color: var(--gray-700); }
.prose h1, .prose h2, .prose h3 { color: var(--gray-900); font-weight: 700; margin: 16px 0 10px; }
.prose h2 { font-size: 16px; }
.prose h3 { font-size: 15px; }
.prose p { margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 10px; }
.prose li { margin-bottom: 5px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { font-weight: 700; color: var(--gray-800); }
.prose a { color: var(--purple); text-decoration: underline; }

/* Tentang Perusahaan (bawah single job) */
.tentang-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 20px;
}
.tentang-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.tentang-card-head h3 { font-size: 15px; font-weight: 700; }
.tentang-link { font-size: 13px; color: var(--purple); font-weight: 600; }
.tentang-link:hover { text-decoration: underline; }
.tentang-since { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.tentang-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  overflow: hidden;
}
.tentang-grid-item {
  padding: 12px 14px;
  border-right: 1px solid var(--gray-200);
}
.tentang-grid-item:last-child { border-right: none; }
.tentang-label { font-size: 11px; color: var(--gray-500); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .4px; }
.tentang-value { font-size: 13px; font-weight: 700; color: var(--gray-900); }

/* Single job sidebar */
.single-job-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 16px;
}
.sidebar-card-title {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.benefit-list { display: flex; flex-direction: column; gap: 8px; }
.benefit-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.benefit-item svg { color: var(--green); flex-shrink: 0; }

/* Sticky apply bar (mobile) */
.sticky-apply-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 12px 20px; z-index: 50;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  display: none;
}
@media (max-width: 768px) { .sticky-apply-bar { display: block; } }
.sticky-apply-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 1200px; margin: 0 auto; }
.sticky-apply-info strong { font-size: 14px; font-weight: 700; display: block; }
.sticky-apply-info span   { font-size: 12px; color: var(--gray-500); }

/* ── Single Company ───────────────────────────────────────────── */
.company-hero {
  background: var(--purple);
  padding: 32px 0 24px;
  color: var(--white);
}

.company-hero-inner {
  display: flex; align-items: center; gap: 20px;
}

.company-hero-logo {
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 6px;
}
.company-hero-logo img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: var(--r-md);
  display: block;
}

.company-hero-name {
  font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.verified-badge { color: #60a5fa; font-size: 18px; }

.company-wrap { padding: 28px 0 64px; }

.company-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) { .company-layout { grid-template-columns: 1fr; } }

/* Detail Perusahaan grid */
.company-detail-section { margin-bottom: 24px; }
.company-section-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }

.company-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .company-detail-grid { grid-template-columns: 1fr; } }

.company-detail-item {
  padding: 16px;
  border-right: 1px solid var(--gray-200);
}
.company-detail-item:last-child { border-right: none; }
.company-detail-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .4px;
  margin-bottom: 6px;
}
.company-detail-value { font-size: 14px; font-weight: 700; color: var(--gray-900); }

/* Manfaat Perusahaan */
.manfaat-section { margin-bottom: 24px; }
.manfaat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.manfaat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-full);
  font-size: 13px; color: var(--gray-700);
  background: var(--white);
}

/* Deskripsi */
.company-desc-section { margin-bottom: 24px; }

/* Company sidebar */
.company-sidebar { display: flex; flex-direction: column; gap: 16px; }

.company-loker-count {
  font-size: 18px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 14px;
}

.company-job-search {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.company-job-search input {
  flex: 1; padding: 9px 14px;
  border: 1px solid var(--gray-300); border-radius: var(--r-sm);
  font-size: 13px; outline: none;
}
.company-job-search input:focus { border-color: var(--purple); }
.company-job-search .btn { border-radius: var(--r-sm); }

.company-job-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.company-job-filter-select {
  flex: 1; min-width: 80px;
  padding: 8px 10px; border: 1px solid var(--gray-300);
  border-radius: var(--r-sm); font-size: 12px;
  color: var(--gray-700); outline: none; background: var(--white);
  cursor: pointer;
}
.company-job-filter-select:focus { border-color: var(--purple); }

/* Company sidebar job list */
.company-sidebar-jobs { display: flex; flex-direction: column; gap: 10px; }

.company-sidebar-job-card {
  border: 1px solid var(--gray-200); border-radius: var(--r-md);
  padding: 14px; background: var(--white);
  transition: box-shadow var(--t), border-color var(--t);
  display: block;
}
.company-sidebar-job-card:hover { box-shadow: var(--shadow-md); border-color: var(--purple); }

.csj-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.csj-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: var(--r-sm); border: 1px solid var(--gray-200); }
.csj-title { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.csj-company { font-size: 12px; color: var(--gray-600); display: flex; align-items: center; gap: 4px; }
.csj-bookmark { margin-left: auto; color: var(--gray-400); }

.csj-info { display: flex; flex-direction: column; gap: 4px; }
.csj-info-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
.csj-info-row svg { color: var(--gray-400); }
.csj-jenis { color: var(--purple); font-weight: 600; font-size: 12px; }

.csj-footer { font-size: 11px; color: var(--gray-400); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--gray-100); }

/* ── Company Archive ──────────────────────────────────────────── */
.page-company-archive { padding: 36px 0 64px; }

.company-archive-hero { padding: 40px 0 36px; }
.company-archive-title { font-size: 28px; font-weight: 800; color: var(--gray-900); letter-spacing: -.4px; margin-bottom: 8px; }
.company-archive-subtitle { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; }

/* Featured grid */
.company-featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .company-featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .company-featured-grid { grid-template-columns: 1fr; } }

/* All companies */
.company-all-section { margin-top: 40px; }
.company-all-title { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }

.company-search-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.company-search-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--gray-300); border-radius: var(--r-sm);
  padding: 0 14px; background: var(--white);
  transition: border-color var(--t);
}
.company-search-input-wrap:focus-within { border-color: var(--purple); }
.company-search-input-wrap svg { color: var(--gray-400); flex-shrink: 0; }
.company-search-input-wrap input { flex: 1; padding: 11px 0; border: none; outline: none; font-size: 14px; background: transparent; color: var(--gray-800); }
.company-search-input-wrap input::placeholder { color: var(--gray-400); }

.company-sort-select {
  padding: 11px 16px; border: 1px solid var(--gray-300);
  border-radius: var(--r-sm); font-size: 14px; color: var(--gray-700);
  background: var(--white); outline: none; cursor: pointer;
  min-width: 160px;
}
.company-sort-select:focus { border-color: var(--purple); }

/* Company card (archive style — logo centered) */
.company-card-archive {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 20px 16px;
  transition: box-shadow var(--t), border-color var(--t);
}
.company-card-archive:hover { box-shadow: var(--shadow-md); border-color: var(--purple); }

.company-card-archive-logo { margin-bottom: 12px; }
.company-card-archive-logo img {
  width: 72px; height: 72px; object-fit: contain;
  border-radius: var(--r-md); margin: 0 auto;
}

.company-card-archive-name {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px; line-height: 1.3;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.company-card-archive:hover .company-card-archive-name { color: var(--purple); }

.company-card-archive-industry {
  font-size: 12px; color: var(--gray-500); margin-bottom: 14px;
  min-height: 18px;
}

.loker-tersedia-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid var(--purple);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; color: var(--purple);
}

.company-all-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .company-all-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .company-all-grid { grid-template-columns: 1fr; } }

.results-count { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.results-count strong { color: var(--gray-800); }

/* ── Page Lowongan (listing) ──────────────────────────────────── */
.page-lowongan-wrap { padding-bottom: 64px; }

.jobs-layout {
  display: grid; grid-template-columns: 264px 1fr;
  gap: 28px; padding-top: 28px; align-items: start;
}
@media (max-width: 900px) { .jobs-layout { grid-template-columns: 1fr; } }

/* Filter sidebar */
.filter-sidebar {
  position: sticky; top: 76px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 18px;
}
@media (max-width: 900px) {
  .filter-sidebar {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200; border-radius: 0; overflow-y: auto;
    max-width: 300px;
    transform: translateX(-110%); transition: transform .3s ease;
  }
  .filter-sidebar.open { transform: translateX(0); }
}

.filter-sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filter-sidebar-header h2 { font-size: 15px; font-weight: 700; }
.filter-reset { font-size: 13px; color: var(--red); font-weight: 500; }
.filter-reset:hover { text-decoration: underline; color: var(--red); }

.filter-group { padding: 14px 0; border-top: 1px solid var(--gray-100); }
.filter-label { display: block; font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }

.filter-input-wrap { position: relative; display: flex; align-items: center; }
.filter-input-icon { position: absolute; left: 10px; color: var(--gray-400); pointer-events: none; }
.filter-input {
  width: 100%; padding: 8px 10px 8px 32px;
  border: 1px solid var(--gray-300); border-radius: var(--r-sm);
  font-size: 13px; color: var(--gray-800); outline: none; background: var(--gray-50);
  transition: border-color var(--t);
}
.filter-input:focus { border-color: var(--purple); background: var(--white); }

.filter-select {
  width: 100%; padding: 8px 10px; border: 1px solid var(--gray-300);
  border-radius: var(--r-sm); font-size: 13px; color: var(--gray-800);
  outline: none; background: var(--gray-50); cursor: pointer;
}
.filter-select:focus { border-color: var(--purple); }
.filter-select-sm { width: auto; padding: 7px 10px; font-size: 12px; }

.filter-checkboxes { display: flex; flex-direction: column; gap: 6px; }
.filter-checkboxes-scroll { max-height: 180px; overflow-y: auto; }
.filter-checkbox-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 13px; color: var(--gray-700);
  padding: 3px 0; transition: color var(--t);
}
.filter-checkbox-label:hover { color: var(--purple); }
.filter-checkbox-label input { accent-color: var(--purple); width: 14px; height: 14px; }
.filter-checkbox-label span:first-of-type { flex: 1; }
.filter-checkbox-label--toggle { font-size: 13px; font-weight: 500; }
.filter-count { font-size: 11px; color: var(--gray-400); margin-left: auto; }

/* Jobs toolbar */
.jobs-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.jobs-toolbar-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jobs-toolbar-right { display: flex; align-items: center; gap: 8px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: var(--purple-light); color: var(--purple);
  border-radius: var(--r-full); font-size: 12px; font-weight: 600;
  transition: background var(--t);
}
.active-filter-tag:hover { background: #c4b5fd; color: var(--purple); }
.active-filter-tag span { opacity: .7; }

.filter-toggle-btn { display: none; position: relative; }
.filter-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--purple); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) { .filter-toggle-btn { display: flex; } }

/* Pagination */
.jobs-pagination { margin-top: 28px; }
.pagination ul { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap; list-style: none; }
.pagination li a, .pagination li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  transition: all var(--t);
}
.pagination li a:hover { background: var(--purple-light); border-color: var(--purple); color: var(--purple); }
.pagination li .current { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* ── Empty State ──────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 56px 24px; color: var(--gray-500); }
.empty-state-icon { margin-bottom: 16px; color: var(--gray-300); display: flex; justify-content: center; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
.empty-state p  { font-size: 14px; margin-bottom: 20px; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}

.footer-logo { display: inline-flex; align-items: center; gap: 2px; margin-bottom: 12px; }
.footer-logo .logo-text { font-size: 20px; }

.footer-desc {
  font-size: 13px; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 20px;
}

.footer-app-badges { display: flex; flex-direction: column; gap: 8px; }
.footer-app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--gray-300); border-radius: var(--r-sm);
  background: var(--white); color: var(--gray-800);
  font-size: 12px; font-weight: 600;
  transition: border-color var(--t), color var(--t);
  width: fit-content;
}
.footer-app-badge:hover { border-color: var(--purple); color: var(--purple); }
.footer-app-badge svg { color: var(--gray-500); }

.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--gray-900);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; color: var(--gray-600); transition: color var(--t); }
.footer-col li a:hover { color: var(--purple); }

.footer-address { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: border-color var(--t), color var(--t);
}
.footer-social-icon:hover { border-color: var(--purple); color: var(--purple); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-400); }
.footer-menu { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; }
.footer-menu a { font-size: 13px; color: var(--gray-400); transition: color var(--t); }
.footer-menu a:hover { color: var(--gray-700); }

/* ── Responsive Header ────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
}

/* ── Misc Utilities ───────────────────────────────────────────── */
.text-purple { color: var(--purple); }
.text-gray   { color: var(--gray-500); }
.font-bold   { font-weight: 700; }
.mt-4  { margin-top: 16px; }
.mb-4  { margin-bottom: 16px; }

/* ── Homepage Filter AJAX ─────────────────────────────────────── */

/* Quick filter card active state */
.qf-card--active {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* Filter dropdown: urut dengan label teks di kiri */
.filter-dropdown--label {
  display: flex; align-items: center;
  padding-left: 14px;
  gap: 0;
}
.filter-urut-label {
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  white-space: nowrap; pointer-events: none;
  margin-right: -4px;
}
.filter-dropdown--label select {
  padding-left: 6px; font-weight: 600; color: var(--gray-800);
}

/* Loading spinner */
.jobs-loading {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 32px;
  font-size: 14px; color: var(--gray-500);
}
.jobs-loading-spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--gray-200);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Active filter tags (homepage) */
.home-active-filters {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; margin-bottom: 16px;
}
.home-filter-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: var(--purple-light); color: var(--purple);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600;
}
.home-filter-tag button {
  background: none; border: none; cursor: pointer;
  color: var(--purple); font-size: 15px; line-height: 1;
  padding: 0 0 0 2px; opacity: .7;
}
.home-filter-tag button:hover { opacity: 1; }

.home-filter-reset {
  font-size: 12px; color: var(--red); font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 4px 8px;
}
.home-filter-reset:hover { text-decoration: underline; }

/* ── Header Icon Button (bookmark / history) ──────────────────── */
.header-icon-btn {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--gray-600);
  border: none; cursor: pointer;
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.header-icon-btn:hover,
.header-icon-btn.active { background: var(--purple-light); color: var(--purple); }

.header-icon-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  background: var(--purple); color: var(--white);
  border-radius: var(--r-full);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 1.5px solid var(--white);
  pointer-events: none;
}

/* ── Header Panel Dropdown ────────────────────────────────────── */
.header-panel-wrap {
  position: relative;
}

.header-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  overflow: hidden;
  display: none;
}
.header-panel.open { display: flex; flex-direction: column; }

@media (max-width: 480px) {
  .header-panel { width: calc(100vw - 32px); right: -12px; }
}

.header-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.header-panel-head strong { font-size: 14px; font-weight: 700; color: var(--gray-900); }

.header-panel-clear {
  font-size: 12px; color: var(--red); font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 0;
}
.header-panel-clear:hover { text-decoration: underline; }

.header-panel-list {
  overflow-y: auto;
  max-height: 380px;
  display: flex; flex-direction: column;
}

.header-panel-empty {
  padding: 28px 16px;
  text-align: center;
  font-size: 13px; color: var(--gray-400);
}

/* ── Panel Item ───────────────────────────────────────────────── */
.header-panel-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t);
  text-decoration: none; color: inherit;
  position: relative;
}
.header-panel-item:last-child { border-bottom: none; }
.header-panel-item:hover { background: var(--gray-50); }

.panel-item-logo-wrap { flex-shrink: 0; }

.panel-item-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  display: block;
}

.panel-item-logo-ph {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
  text-transform: uppercase;
}

.panel-item-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}

.panel-item-title {
  font-size: 13px; font-weight: 600; color: var(--gray-900);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.header-panel-item:hover .panel-item-title { color: var(--purple); }

.panel-item-company {
  font-size: 11px; color: var(--gray-500);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.panel-item-time {
  font-size: 11px; color: var(--gray-400);
}

.panel-item-remove {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  color: var(--gray-400);
  transition: background var(--t), color var(--t);
}
.panel-item-remove:hover { background: var(--red-light); color: var(--red); }

/* ── Bookmark button states ───────────────────────────────────── */
.job-card-bookmark.bookmarked svg,
[data-bookmark-btn].bookmarked svg {
  fill: var(--purple);
  stroke: var(--purple);
}
.job-card-bookmark.bookmarked,
[data-bookmark-btn].bookmarked {
  color: var(--purple);
}

/* icon-btn bookmarked state (single job) */
.icon-btn[data-bookmark-btn].bookmarked {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-light);
}
