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

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

:root {
  --purple:        rgb(1, 126, 183);
  --purple-dark:   rgb(3, 147, 213);
  --purple-mid:    rgb(33, 130, 176);
  --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 10px; } }

/* ── 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);
}
.home .site-header {
  background: var(--purple-dark);
  border-bottom: 0px solid rgba(255,255,255,.18);
}

.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,
.site-logo-img { height: 32px; width: auto; display: block; }

.logo-text {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--gray-900);
}
.home .logo-text { color: var(--white); }
.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; }
.home .nav-link { color: rgba(255,255,255,.92); }
.home .nav-link:hover,
.home .nav-link.active {
  color: var(--white);
  text-decoration-color: var(--white);
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 680px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(2, 6, 23, .12);
  backdrop-filter: blur(6px);
  padding: 10px;
  display: none;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 8px;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}
.nav-dropdown-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-height: 60px;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  color: var(--gray-700);
  white-space: normal;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.nav-dropdown-link:hover {
  background: linear-gradient(180deg, #f8faff, #f1f5ff);
  color: var(--purple);
  border-color: #dbe4ff;
  transform: translateY(-1px);
}
.nav-dropdown-title {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}
.nav-dropdown-desc {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--gray-500);
}
.home .nav-dropdown-menu {
  background: var(--white);
}

/* 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); }
.home .header-auth-link { color: var(--white); }
.home .header-auth-link:hover { color: var(--white); }
.home .header-auth-link--masuk {
  background: var(--white);
  color: var(--purple);
}
.home .header-auth-link--masuk:hover {
  background: var(--gray-100);
  color: var(--purple);
}
.home .header-auth-link--daftar {
  border-color: rgba(255,255,255,.72);
  color: var(--white);
}
.home .header-auth-link--daftar:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.12);
}


/* 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); }
.home .hamburger span { background: var(--white); }
.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-header-icons { display: none; align-items: center; gap: 6px; margin-left: auto; }

/* Mobile Nav */
.mobile-nav { display: none; border-top: 1px solid var(--gray-200); background: var(--gray-100); padding: 0 0 16px 0; }
.mobile-nav.open { position:absolute;width:100%;display: block; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; font-size: 15px; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid rgba(0,0,0,.08);
  text-decoration: none; width: 100%;
}
.mobile-nav-link:hover { color: var(--purple); }
.mobile-nav-link--btn {
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit;
  color: var(--gray-700); border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;
}
.mobile-nav-link--btn:hover { color: var(--purple); }
.mobile-nav-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px;
  background: var(--purple); color: var(--white);
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  padding: 0 5px;
}
.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-color: var(--purple-dark);
  background-image: url('../img/bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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;
  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: 10px 10px 10px 10px;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.search-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;border:1px solid var(--gray-200);border-radius: var(--r-md);
}
.search-input-wrap svg { width: 22px;height: 22px;color: var(--purple); flex-shrink: 0;margin-right: 10px;}
.search-input-wrap input {
  flex: 1; padding: 12px;
  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;
  justify-content: space-between;
}

.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-200);
  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; }

/* Samakan lebar tiap filter di bar homepage */
#hero-filter-bar {
  overflow-x: visible;
  justify-content: stretch;
}
#hero-filter-bar .filter-pill {
  flex: 1 1 0;
  min-width: 0;
  justify-content: space-between;
}
#hero-filter-bar .filter-pill select {
  width: 100%;
}

/* ── Category Tabs (di luar hero, background putih/abu) ───────── */
.category-tabs-outer {
  background: var(--white);
  padding-top: 12px;
}

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

.cat-tab {
  display: inline-flex;
  text-align: center;
  padding: 14px;
  min-height: 52px;
  width:120px ;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  border: none;
  background-image: linear-gradient(to right, #32373c 0%, #4b5563 51%, #515478 100%);
  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;
    flex-wrap: nowrap;
    overflow: auto;
    white-space: normal;
  }
  .job-detail-card, .content-card{
    border:none !important;
    padding:5px !important;
    border-radius:0px;
    padding-bottom: 15px !important;
  }
  .cat-tab{
    background-image: linear-gradient(to right, #32373c 0%, #4b5563 51%, #515478 100%);
  }
  .content-card-title{
    padding-top:16px
  }
  .filter-row{
    display: block;
  }
  .filter-row, .filter-pill{
    border-bottom: 1px solid var(--gray-100);
  }
  .skills-card{
    padding:16px 5px !important;
    border-left: 0px !important;
    border-right: 0px !important;
  }
  .header-inner{
    height:50px
  }
  .category-tabs-outer{
    margin-top:10px
  }
}

.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: 16px;margin-top:10px; }
.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: 10px 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; } }

/* Sidebar: selalu 1 kolom, card lebih compact */
.jobs-grid--sidebar {
  grid-template-columns: 1fr !important;
}
.jobs-grid--sidebar .job-card {
  padding: 12px;
}
.jobs-grid--sidebar .job-card-logo-wrap img,
.jobs-grid--sidebar .logo-ph--40 {
  width: 34px; height: 34px;
}

/* ── Job Card ─────────────────────────────────────────────────── */
.job-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 15px;
  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; flex: 1;margin-top: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; }

/* Category pills on card */
.job-card-categories {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 4px;
}
.job-category-pill {
  display: inline-block;
  padding: 3px 9px;
  background: var(--purple-pale);
  color: var(--purple);
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 600;
  transition: background var(--t), color var(--t);
  text-decoration: none;
}
.job-category-pill:hover {
  background: var(--purple-light);
  color: var(--purple-dark);
}

/* Card footer — selalu di bawah card */
.job-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; 
  justify-content: space-between;
  flex-direction:row-reverse
}
.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(4, 1fr);
  gap: 14px;
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.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); }
@media (max-width: 768px) {
  body.single-lowongan .breadcrumb ol,
  body.single-post .breadcrumb ol,
  body.blog .breadcrumb ol {
    flex-wrap: nowrap;
    overflow: hidden;
  }
  body.single-lowongan .breadcrumb-item,
  body.single-post .breadcrumb-item,
  body.blog .breadcrumb-item {
    white-space: nowrap;
  }
  body.single-lowongan .breadcrumb-item:last-child,
  body.single-post .breadcrumb-item:last-child,
  body.blog .breadcrumb-item:last-child {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.single-lowongan .breadcrumb-item:last-child a,
  body.single-post .breadcrumb-item:last-child a,
  body.blog .breadcrumb-item:last-child a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ── Page Header ──────────────────────────────────────────────── */
.page-header { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 28px 0 20px; }
.page-header-blog { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 10px 0 }
.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: 16px 0 64px; background: var(--gray-50); }

.single-lowongan-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 16px;
  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: 10px 10px 0px 0px;
  padding: 20px;
}

.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;margin-top: -2px;
}
.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: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 16px;
}
.job-detail-info-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.job-detail-info-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.job-detail-info-row svg { color: #4f6cf2; flex-shrink: 0; }
.job-detail-info-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.job-detail-info-value {
  font-size: 14px;
  color: var(--purple);
  line-height: 1.35;
}
.job-detail-info-value a {
  color: inherit;
  text-decoration: none;
}
.job-detail-info-value a:hover { text-decoration: underline; }
.job-detail-info-value--dark { color: var(--gray-900); }
.info-value-purple { color: var(--purple); font-weight: 600; }
@media (max-width: 900px) {
  .job-detail-info { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .job-detail-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 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: 10px 0; }
.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; }

/* Skills card (single lowongan) */
.skills-card {
  background: var(--gray-100);
  border-left:1px solid var(--gray-200);
  border-right:1px solid var(--gray-200);
  padding: 16px;
}
.skills-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.skills-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.skills-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills-chip {
  display: inline-flex;
  align-items: center;
  background: #e5e7eb;
  color: #3f3f46;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

/* Content card (deskripsi, kualifikasi) */
.content-card {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 0 0 10px 10px;
  padding: 20px;
  margin-bottom: 16px;
}
.content-card-title {
  font-size: 20px; 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: 1fr 1fr 2.5fr;
  gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  overflow: hidden;
}
@media (max-width:768px){
  .tentang-grid{
    grid-template-columns: 1fr;
  }
}
.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 {
  border-radius: var(--r-md); padding: 16px 5px;
}
.sidebar-card-title {
  font-size: 16px; 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; }
.related-empty-card {
  border: 1px dashed var(--gray-500);
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.related-empty-card-icon {
  width: 70px;
  height: 70px;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-empty-card-text {
  margin: 0;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.45;
}

/* ── 404 Page ──────────────────────────────────────────────────── */
.error-404-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.error-404-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
}
.error-404-title {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -.4px;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.error-404-text {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.error-404-visual {
  display: flex;
  justify-content: center;
}
.error-404-jobs { padding: 24px 0 24px; }
@media (max-width: 900px) {
  .error-404-card { grid-template-columns: 1fr; }
  .error-404-title { font-size: 32px; }
}
@media (max-width: 640px) {
  .error-404-hero { padding: 16px 0; }
  .error-404-card { padding: 16px; }
  .error-404-title { font-size: 26px; }
  .error-404-text { font-size: 14px; }
}

/* ── Share Dropdown ───────────────────────────────────────────── */
.share-wrap {
  position: relative;
  display: inline-flex;
}

.share-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  display: none;
}
.share-dropdown.open { display: block; }

.share-dropdown-title {
  padding: 12px 14px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--gray-100);
}

.share-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t);
  border-bottom: 1px solid var(--gray-100);
}
.share-option:last-child { border-bottom: none; }
.share-option:hover { background: var(--gray-50); color: var(--gray-900); }

.share-option-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  flex-shrink: 0;
}
.share-option-icon--wa { background: #dcfce7; color: #16a34a; }
.share-option-icon--tg { background: #dbeafe; color: #2563eb; }
.share-option-icon--li { background: #dbeafe; color: #0a66c2; }
.share-option-icon--tw { background: var(--gray-100); color: var(--gray-900); }

.share-copy-feedback {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

/* 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); }
.sticky-share-post {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--gray-200);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.sticky-share-post .mobile-share-sticky-btn { border-radius: 8px; }

/* ── Single Company ───────────────────────────────────────────── */
.company-hero {
  background: var(--purple);
  padding: 20px 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;
}
.company-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.company-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--white);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.company-hero-link:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
}
.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:1fr 1fr 2.5fr;
  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 ──────────────────────────────────────────── */

.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-search-btn {
  min-height: 44px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .company-search-bar {
    flex-wrap: wrap;
  }
  .company-search-input-wrap {
    flex: 0 0 100%;
    width: 100%;
  }
  .company-sort-select,
  .company-search-btn {
    flex: 1 1 0;
    min-width: 0;
    width: calc(50% - 6px);
  }
  .company-search-btn {
    justify-content: center;
  }
}

/* Company card (archive style — logo centered) */
.company-card-archive {
  display: flex; flex-direction: column; align-items: flex-start;
  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);
  height: 100%;
}
.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: block; align-items: center; justify-content: center; gap: 4px;display: flex;
}
.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-sm);
  font-size: 12px; font-weight: 600; color: var(--purple);
  width: 100%;
  margin-top: auto;
}

.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); }
  .companies-grid-home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .company-all-grid { grid-template-columns: 1fr; } 
  .companies-grid-home { grid-template-columns: 1fr; }
  
}

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

/* ── Taxonomy Index Lowongan ───────────────────────────────────── */
.tax-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 20px;
  padding-top:10px;
}
.tax-index-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  padding: 14px;
  transition: border-color var(--t), box-shadow var(--t);
}
.tax-index-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.tax-index-card h3 {
  margin: 0;
  font-size: 15px;
  color: var(--gray-900);
  line-height: 1.35;
}
.tax-index-card span {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 900px) { .tax-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .tax-index-grid { grid-template-columns: 1fr; } }

/* ── Blog (post bawaan WordPress) ─────────────────────────────── */
.blog-archive { padding: 28px 0 56px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.blog-card-thumb { display: block; aspect-ratio: 16 / 9; background: var(--gray-100); }
.blog-card-thumb img { width: 100%; height: auto; object-fit: cover;aspect-ratio: 16/9; }
.blog-card-thumb--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
}
.blog-card-thumb--fallback .blog-fallback-logo-img {
  width: auto;
  height: 100%;
  max-width: 200px;
  object-fit: contain;
}
.blog-card-content { padding: 14px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--gray-200);}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
}
.blog-card-title { font-size: 14px; line-height: 1.35; margin: 0; }
.blog-card-title a { color: var(--gray-900); }
.blog-card-title a:hover { color: var(--purple); }
.blog-card-excerpt { margin: 0; font-size: 14px; line-height: 1.65; color: var(--gray-600); }
.blog-read-more { color: var(--purple); font-weight: 600; font-size: 14px; }

.blog-single { padding: 0px 0 56px; }
.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 20px;
  align-items: start;
}
.blog-single-sidebar { display: flex; flex-direction: column; gap: 16px; }
.blog-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.blog-single-related-posts {
  margin-top: 14px;
}
.blog-share-desktop {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.blog-share-desktop .icon-btn {
  width: auto;
  height: auto;
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-share-desktop .icon-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-light);
}
.blog-single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.blog-single-card {
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  padding: 20px;
  padding-top:16px
}
.blog-single-thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
}
.blog-single-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.blog-single-thumb--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.blog-single-thumb--fallback .blog-fallback-logo-img {
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 70%;
  object-fit: contain;
}
.blog-single-head { margin-bottom: 14px; }
.blog-single-title { font-size: 30px; line-height: 1.2; letter-spacing: -.3px; margin-bottom: 10px; color: var(--gray-900); }
.blog-single-meta { display: flex; align-items: center; gap: 8px; color: var(--gray-500); font-size: 13px; }
.blog-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 12px;
}
.blog-tag:hover { border-color: var(--purple); color: var(--purple); }
.blog-single-nav {
  max-width: 100%;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.blog-single-nav a {
  display: block;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  color: var(--gray-700);
  font-size: 14px;
}
.blog-single-nav a:hover { border-color: var(--purple); color: var(--purple); }
@media (max-width: 1100px) {
  .blog-single-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .blog-single-title { font-size: 24px; }
  .blog-single-card { padding: 10px 0px;border:none }
  .blog-single-nav { grid-template-columns: 1fr; }
  .blog-single-related-grid { grid-template-columns: 1fr; }
  .blog-share-desktop { display: none; }
  .sticky-share-post { display: block; }
  body.single-post { padding-bottom: 72px; }
}

/* Pastikan footer card company selalu di bawah */
.company-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company-card-body {
  flex: 1;
}
.company-card-footer {
  margin-top: auto;
}

/* ── 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 */
.pagination{margin:16px 0}
.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); }
.infinite-load-more {
  margin-top: 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

/* ── 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: 2fr 1.5fr 1fr 1fr;
  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; } }
@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-top:10px;
  margin-bottom: 20px;
}

.footer-app-badges { display: flex; flex-direction: row; gap: 8px; }
.footer-app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  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(--purple-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: border-color var(--t), color var(--t);background: var(--purple);
}
.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;flex-direction: column;
}
.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; }
  .mobile-header-icons { display: flex; }
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .site-logo { margin-right: auto; }
  .hamburger { margin-left: 0px; margin-right: 0; }
}

/* ── 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;
}
.home .header-icon-btn { color: rgba(255,255,255,.9); }
.header-icon-btn:hover,
.header-icon-btn.active { background: var(--purple-light); color: var(--purple); }
.home .header-icon-btn:hover,
.home .header-icon-btn.active { background: rgba(255,255,255,.14); color: var(--white); }

.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: -70px;
  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; }
}

/* Panel dari icon mobile (dekat hamburger) jangan terdorong ke kiri */
@media (max-width: 900px) {
  .mobile-header-icons .header-panel {
    left: auto;
    width: min(360px, calc(100vw - 24px));
  }
  /* Panel bookmark (icon pertama) perlu offset agar sejajar dengan riwayat */
  #mobile-bookmark-panel {
    right: -70px;
  }
}

.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);
}

#page-taxonomy{
  padding:20px 0px
}
.company-desc-excerpt{
  padding:10px 0px
}
.text-normal{
  font-weight: 400;
}

/* External landing page */
.external-landing-body{
  background:#f8f8fb;
}
.external-landing-wrap{
  padding:26px 16px 36px;
}
.external-landing-shell{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  align-items:start;
  border:1px solid #ececf2;
  background:#fff;
}
.external-landing-preview{
  min-height:420px;
  border-right:1px solid #ececf2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 28px;
}
.external-preview-ad-wrap{
  width:100%;
  max-width:420px;
}
.external-preview-adsense{
  min-height:300px;
}
.external-preview-ad-placeholder{
  width:100%;
  border-radius:10px;
  background:linear-gradient(145deg,#f1882f,#e36d1e);
  color:#fff;
  padding:26px;
  box-shadow:0 14px 34px rgba(227,109,30,.28);
}
.external-preview-logo{
  display:inline-flex;
  border-radius:6px;
  border:1px solid rgba(255,255,255,.45);
  padding:4px 10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.03em;
  margin-bottom:14px;
}
.external-preview-title{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.1;
  color:#fff;
}
.external-preview-text{
  margin:0 0 14px;
  color:rgba(255,255,255,.92);
  max-width:34ch;
}
.external-preview-text code{
  color:#fff;
  background:rgba(0,0,0,.12);
  border-radius:4px;
  padding:0 4px;
}
.external-preview-mini-card{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:8px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.35);
  font-size:12px;
  padding:6px 10px;
}
.external-preview-mini-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#6effb0;
}
.external-landing-detail{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px 18px 10px;
}
.external-landing-overline{
  margin:0 0 2px;
  text-align:right;
  font-size:15px;
  color:#6f6f78;
}
.external-landing-card{
  background:#fafbfe;
  border:1px solid #e6eaf4;
  border-radius:8px;
  padding:18px 20px;
}
.external-landing-destination-label{
  margin:0;
  font-weight:700;
  color:#253055;
  font-size:14px;
}
.external-landing-destination-value{
  margin:4px 0 12px;
  color:#1d3f7a;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:2px;
  word-break:break-word;
}
.external-landing-check-title{
  margin:0 0 10px;
  font-size:16px;
  font-weight:700;
  color:#253055;
}
.external-landing-checks{
  margin:0;
  padding-left:18px;
  color:#2e3855;
  font-size:14px;
}
.external-landing-checks li{
  margin:0 0 7px;
}
.external-landing-title{
  margin:0 0 10px;
  color:#2f284f;
  font-size:28px;
  line-height:1.2;
}
.external-landing-text{
  margin:0 0 10px;
  color:#5e5a75;
}
.external-landing-destination{
  margin:0 0 18px;
  color:#3b3660;
}
.external-landing-actions{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
}
.external-landing-actions .btn-secondary{
  width:100%;
  text-align:center;
  border-color:#cfd5e6;
  color:#374261;
  background:#fff;
}
.external-landing-actions--stack{
  flex-direction:column;
  margin-top:2px;
}
.external-landing-cta{
  width:100%;
  text-align:center;
  background:#0f2751;
  border-color:#0f2751;
  border-radius:8px;
  font-size:17px;
  padding:14px 18px;
  color: var(--white)
}
.external-landing-countdown{
  margin:4px 0 0;
  text-align:center;
  color:#71768c;
  font-size:14px;
}
.external-landing-detail--single{
  max-width:560px;
  margin:0 auto;
}
.external-landing-support{
  background:#071f45;
  border-top:1px solid #dfdfeb;
  padding:56px 16px 60px;
}
.external-landing-support-inner{
  text-align:center;
  max-width:900px;
}
.external-landing-support-title{
  color:#ffac3d;
  font-size:44px;
  line-height:1.08;
  margin:0 0 12px;
}
.external-landing-support-text{
  color:rgba(255,255,255,.92);
  margin:0 auto 18px;
  max-width:64ch;
}
.external-landing-support-badge{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.34);
  color:#fff;
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
}

@media (max-width: 900px){
  .external-landing-shell{
    grid-template-columns:1fr;
    border-radius:12px;
    overflow:hidden;
    display:block !important
  }
  .external-landing-preview{
    border-right:none;
    border-bottom:1px solid #ececf2;
    min-height:320px;
    padding:24px 16px;
  }
  .external-preview-title{
    font-size:28px;
  }
  .external-landing-detail{
    padding:16px;
  }
  .external-landing-overline{
    text-align:left;
  }
  .external-landing-support-title{
    font-size:30px;
  }
}
.adsense-ads{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px auto;
  text-align: center;
}
.text-bold{
  font-weight: 600;
}