@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body.v2-body {
  font-family: var(--v2-font);
  color: var(--v2-text);
  background: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}
.v2-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Header */
.v2-header {
  background: #fff;
  border-bottom: 1px solid var(--v2-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  overflow: visible;
}
.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
  min-width: 0;
}
.v2-logo {
  min-width: 0;
  flex-shrink: 1;
}
.v2-logo img { height: 48px; width: auto; max-width: 180px; object-fit: contain; }
.v2-cat-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 44px 14px 14px;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  margin-bottom: 10px;
  min-height: 76px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
}
.v2-cat-option:hover {
  border-color: var(--v2-blue);
  background: #f8fafc;
}
.v2-cat-option:has(input:checked) {
  border-color: var(--v2-blue);
  background: #eff6ff;
  box-shadow: 0 0 0 1px rgba(30, 64, 175, 0.15);
}
.v2-job-category-field .single-check.v2-cat-option {
  padding-left: 14px;
  margin-bottom: 0;
}
.v2-job-category-field .v2-cat-option .checkmark {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  margin: 0;
}
.v2-job-category-field .v2-cat-option input:checked ~ .checkmark {
  background-color: var(--v2-blue);
  border-color: var(--v2-blue);
}
.v2-cat-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.v2-cat-option:has(input:checked) .v2-cat-option-icon {
  box-shadow: 0 4px 12px rgba(12, 30, 77, 0.18);
  transform: scale(1.04);
}
.v2-cat-option-body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.v2-cat-option-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--v2-navy);
  line-height: 1.35;
  padding-right: 4px;
}
.v2-cat-option-desc {
  display: block;
  font-size: 12px;
  color: var(--v2-muted);
  line-height: 1.45;
  margin-top: 3px;
  padding-right: 4px;
}
.note-editor.note-frame {
  border-radius: 8px;
  border-color: var(--v2-border, #e2e8f0);
}
.note-editor .note-toolbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--v2-border, #e2e8f0);
}

.v2-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.v2-nav a {
  color: var(--v2-text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.v2-nav a:hover { color: var(--v2-blue); background: #f1f5f9; }
.v2-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.v2-lang-dropdown {
  position: relative;
  flex-shrink: 0;
  z-index: 1200;
}
.v2-lang-dropdown__label {
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--v2-navy);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  line-height: 1.2;
  transition: background 0.15s;
}
.v2-lang-dropdown__toggle:hover,
.v2-lang-dropdown.is-open .v2-lang-dropdown__toggle {
  background: #f1f5f9;
}
.v2-lang-dropdown__toggle .bx-globe {
  font-size: 18px;
  color: var(--v2-navy);
}
.v2-lang-dropdown__chevron {
  font-size: 16px;
  color: var(--v2-muted);
  transition: transform 0.2s;
}
.v2-lang-dropdown.is-open .v2-lang-dropdown__chevron {
  transform: rotate(180deg);
}
.v2-lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  box-shadow: var(--v2-shadow);
  z-index: 1200;
}
.v2-lang-dropdown.is-open .v2-lang-dropdown__menu {
  display: block;
}
.v2-lang-dropdown__option {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--v2-navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.v2-lang-dropdown__option:hover {
  background: #f1f5f9;
  color: var(--v2-navy);
  text-decoration: none;
}
.v2-lang-dropdown__option.is-active {
  background: #eff6ff;
  color: var(--v2-blue);
}
.v2-mobile-nav-lang .v2-lang-dropdown {
  width: 100%;
}
.v2-mobile-nav-lang .v2-lang-dropdown__toggle {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--v2-border);
  border-radius: 0;
}
.v2-mobile-nav-lang .v2-lang-dropdown__menu {
  position: static;
  display: none;
  box-shadow: none;
  border: none;
  padding: 0 0 8px;
  min-width: 0;
}
.v2-mobile-nav-lang .v2-lang-dropdown.is-open .v2-lang-dropdown__menu {
  display: block;
}
.v2-header-company,
.v2-header-saved-jobs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--v2-navy);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--v2-border);
  background: #fff;
  transition: all 0.15s;
  max-width: min(168px, 24vw);
  min-width: 0;
  flex-shrink: 1;
}
.v2-header-saved-jobs:hover {
  color: var(--v2-blue);
  border-color: #bfdbfe;
  background: #eff6ff;
  text-decoration: none;
}
.v2-header-saved-jobs {
  max-width: none;
  flex-shrink: 0;
}
.v2-header-saved-jobs i { font-size: 18px; }
.v2-header-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--v2-navy);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  max-width: 168px;
  border: none;
  background: transparent;
  transition: background 0.15s;
}
.v2-header-company:hover,
.v2-header-account:hover {
  background: #f1f5f9;
  text-decoration: none;
  color: var(--v2-navy);
}
.v2-header-company img,
.v2-header-account img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--v2-border);
  flex-shrink: 0;
  background: #fff;
}
.v2-header-company span,
.v2-header-account span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.v2-header-company--mobile {
  max-width: none;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--v2-radius);
  border: 1px solid var(--v2-border);
  background: #f8fafc;
}
.v2-header-company--mobile span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.3;
}
.v2-btn-outline {
  background: #fff;
  color: var(--v2-blue);
  border: 2px solid var(--v2-blue);
}
.v2-btn-outline:hover { background: #eff6ff; color: var(--v2-blue); text-decoration: none; }
.v2-btn-primary {
  background: var(--v2-orange);
  color: #fff;
}
.v2-btn-primary:hover { background: var(--v2-orange-hover); color: #fff; text-decoration: none; }
.v2-btn-accent {
  background: var(--v2-orange);
  color: #fff;
  border: none;
  font-weight: 700;
}
.v2-btn-accent:hover { background: var(--v2-orange-hover); color: #fff; text-decoration: none; }
.v2-btn-navy {
  background: var(--v2-navy);
  color: #fff;
}
.v2-btn-navy:hover { background: #0a1738; color: #fff; text-decoration: none; }
.v2-mobile-toggle {
  display: flex;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--v2-navy);
  padding: 4px;
}

/* Hero */
.v2-hero {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--v2-navy);
  background-image:
    linear-gradient(135deg, rgba(12, 30, 77, 0.42) 0%, rgba(30, 64, 175, 0.28) 45%, rgba(12, 30, 77, 0.45) 100%),
    var(--v2-hero-banner, url('../../images/banner.png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0 80px;
}
.v2-hero > .container {
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.v2-hero__search-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.v2-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.v2-hero .subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}
.v2-hero .v2-popular-tags span { color: rgba(255, 255, 255, 0.85); }
.v2-search-bar {
  background: #fff;
  border-radius: var(--v2-radius);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  box-shadow: var(--v2-shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
}
.v2-search-bar input,
.v2-search-bar select {
  width: 100%;
  border: 1px solid var(--v2-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 0;
  line-height: 1.4;
}
.v2-search-bar select {
  height: auto;
  min-height: 44px;
  padding-right: 2rem;
  max-width: 100%;
}
.v2-search-bar .v2-btn-primary {
  width: 100%;
  padding: 12px 28px;
  white-space: nowrap;
}

/* Tablet + mobile: prevent horizontal overflow */
@media (max-width: 991.98px) {
  body.v2-body .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: var(--v2-gutter);
    padding-right: var(--v2-gutter);
    box-sizing: border-box;
  }
  .v2-search-bar {
    grid-template-columns: 1fr;
  }
  .v2-search-bar input,
  .v2-search-bar select,
  .v2-search-bar .v2-btn-primary {
    width: 100%;
    max-width: 100%;
  }
  .v2-popular-tags {
    max-width: 100%;
  }
  .v2-tag-pill {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .v2-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .v2-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .v2-logo img {
    height: 40px;
    max-width: 128px;
  }
  .v2-lang-dropdown__toggle {
    padding: 8px 6px;
    gap: 4px;
  }
  .v2-lang-dropdown__label {
    max-width: 72px;
  }
  .v2-hero {
    min-height: 0;
    padding: 36px 0 48px;
  }
  .v2-hero h1 {
    font-size: clamp(22px, 6vw, 28px);
    overflow-wrap: anywhere;
  }
  .v2-hero .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .v2-search-bar {
    padding: 10px;
  }
  .v2-popular-tags {
    margin-top: 14px;
  }
  .v2-section {
    padding: 40px 0;
  }
  .v2-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }
  .v2-tabs::-webkit-scrollbar { display: none; }
  .v2-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }
  .v2-ai-section {
    overflow: hidden;
  }
  .v2-ai-carousel {
    overflow: hidden;
  }
  .v2-employers-carousel-wrap {
    padding-left: 36px;
    padding-right: 36px;
    overflow: hidden;
  }
  .v2-employers-carousel .v2-employer-slide {
    min-height: 100px;
    padding: 10px 8px;
  }
  .v2-employer-logo,
  .v2-employers-carousel.owl-carousel .owl-item img.v2-employer-logo {
    height: 76px;
    max-width: 100%;
    width: auto;
    opacity: 0.9;
  }
}
.v2-popular-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.v2-popular-tags span { font-size: 13px; color: var(--v2-muted); margin-right: 4px; }
.v2-tag-pill {
  background: #fff;
  color: var(--v2-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid var(--v2-border);
}
.v2-tag-pill:hover { background: var(--v2-blue); border-color: var(--v2-blue); color: #fff; text-decoration: none; }

/* Categories */
.v2-section {
  padding: 56px 0;
  box-sizing: border-box;
}
.v2-section-alt { background: var(--v2-bg); }
.v2-section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--v2-navy);
}
.v2-section-sub { text-align: center; color: var(--v2-muted); margin-bottom: 36px; }
.v2-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.v2-cat-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 20px;
  padding-right: 40px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  min-width: 0;
  box-sizing: border-box;
}
.v2-cat-card:hover {
  box-shadow: var(--v2-shadow);
  transform: translateY(-2px);
  border-color: var(--v2-blue);
  text-decoration: none;
  color: inherit;
}
.v2-cat-card__body { flex: 1; min-width: 0; }
.v2-cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.35;
  color: var(--v2-navy);
}
.v2-cat-card p {
  font-size: 12px;
  color: var(--v2-muted);
  margin: 0 0 8px;
  line-height: 1.45;
}
.v2-cat-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v2-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.v2-cat-card:hover .v2-cat-arrow { opacity: 1; transform: translateX(0); }
.v2-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0;
}
.v2-cat-count { font-size: 13px; font-weight: 600; color: var(--v2-blue); }

@media (max-width: 767.98px) {
  .v2-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .v2-cat-card {
    padding: 14px 12px;
    gap: 10px;
    align-items: center;
  }
  .v2-cat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }
  .v2-cat-card h3 {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .v2-cat-card p {
    font-size: 11px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .v2-cat-count {
    font-size: 11px;
  }
  .v2-cat-arrow {
    display: none;
  }
  .v2-section-sub {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .v2-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .v2-cat-card {
    padding: 16px;
    padding-right: 16px;
  }
  .v2-cat-arrow {
    display: none;
  }
}

/* Tabs */
.v2-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.v2-tab {
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--v2-border);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--v2-muted);
  transition: all 0.2s;
}
.v2-tab.active {
  border-color: var(--v2-blue);
  background: #eff6ff;
  color: var(--v2-blue);
}
.v2-tab i { margin-right: 6px; }

/* AI carousel */
.v2-ai-section { margin-bottom: 40px; max-width: 100%; overflow: hidden; }
.v2-ai-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.v2-ai-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.v2-ai-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v2-ai-scroll::-webkit-scrollbar {
  display: none;
}
.v2-ai-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 20px;
  position: relative;
}
.v2-ai-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--v2-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Job grid */
.v2-jobs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.v2-job-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.v2-job-card:hover { box-shadow: var(--v2-shadow); text-decoration: none; color: inherit; }
.v2-job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding-right: 40px;
}
.v2-job-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--v2-border);
  flex-shrink: 0;
}
.v2-job-card-details {
  width: 100%;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--v2-border);
}
.v2-job-card-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.v2-job-body { flex: 1; min-width: 0; }
.v2-job-card-head-main { flex: 1; min-width: 0; }
.v2-job-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--v2-navy);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.v2-job-company {
  font-size: 13px;
  color: var(--v2-muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.v2-job-meta {
  font-size: 13px;
  color: var(--v2-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.v2-job-meta span {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.4;
}
.v2-job-meta i { color: var(--v2-blue); margin-right: 2px; flex-shrink: 0; margin-top: 2px; }
.v2-job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.v2-job-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #eff6ff;
  color: var(--v2-blue);
}
.v2-job-tag.orange { background: #fff7ed; color: #c2410c; }
.v2-job-tag--urgent,
.v2-job-tag.v2-job-tag--urgent {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.35);
  border: 1px solid #ea580c;
}
.v2-job-tag--urgent i,
.v2-job-tag.v2-job-tag--urgent i {
  margin-right: 2px;
  font-size: 12px;
}
.v2-job-card-wrap.is-urgent .v2-job-card {
  border: 2px solid #fb923c;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 38%);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.14);
}
.v2-job-card-wrap.is-urgent .v2-job-card:hover {
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.22);
  border-color: #f97316;
}
.v2-job-card-wrap.is-urgent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--v2-radius) var(--v2-radius) 0 0;
  background: linear-gradient(90deg, #ea580c, #f97316, #fdba74);
  z-index: 1;
  pointer-events: none;
}
.v2-job-tag.green { background: #ecfdf5; color: #047857; }
.v2-job-tag.blue { background: #eff6ff; color: #1d4ed8; }
.v2-job-tag.purple { background: #f5f3ff; color: #6d28d9; }
.v2-job-card-wrap {
    position: relative;
}
.v2-job-card-wrap .v2-job-card {
    padding-right: 16px;
}
.v2-job-card-bookmark {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--v2-border);
    background: #fff;
    color: var(--v2-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    z-index: 2;
}
.v2-job-card-bookmark:hover,
.v2-job-card-bookmark.is-bookmarked {
    border-color: var(--v2-blue);
    color: var(--v2-blue);
    background: #eff6ff;
}
.v2-job-badge-new {
    font-size: 11px;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 999px;
}
.v2-job-time { font-size: 12px; color: var(--v2-muted); }
@media (min-width: 768px) {
  .v2-job-card { padding: 20px; }
  .v2-job-logo { width: 56px; height: 56px; border-radius: 12px; }
  .v2-job-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .v2-job-meta span { display: inline-flex; }
}

/* Employers carousel */
.v2-employers-carousel-wrap {
  position: relative;
  padding: 8px 48px 0;
  margin-top: 8px;
  max-width: 100%;
  overflow: hidden;
}
.v2-employers-carousel.owl-carousel {
  max-width: 100%;
  overflow: hidden;
}
.v2-employers-carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}
.v2-employers-carousel .v2-employer-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 12px 10px;
}
.v2-employers-carousel.owl-carousel .owl-item img.v2-employer-logo {
  width: auto;
  margin: 0 auto;
}
.v2-employers-carousel.owl-carousel .owl-nav {
  margin: 0;
}
.v2-employers-carousel.owl-carousel .owl-nav button.owl-prev,
.v2-employers-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid var(--v2-border) !important;
  box-shadow: var(--v2-shadow);
  color: var(--v2-navy) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.v2-employers-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.v2-employers-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.v2-employers-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.v2-employers-carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: #eff6ff !important;
  border-color: var(--v2-blue) !important;
  color: var(--v2-blue) !important;
}
.v2-employers-carousel.owl-carousel .owl-nav button span {
  display: none;
}
.v2-employer-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .v2-employers-carousel .v2-employer-slide {
    min-height: 104px;
    padding: 16px 12px;
  }
  .v2-employer-logo {
    height: 72px;
    max-width: 200px;
  }
}
.v2-employer-logo:hover { filter: none; opacity: 1; }

/* Owl carousel overflow containment */
.owl-carousel,
.owl-carousel .owl-stage-outer {
  max-width: 100%;
  overflow: hidden;
}

.v2-footer {
  background: var(--v2-navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.v2-footer a { color: rgba(255,255,255,0.8); text-decoration: none; display: block; margin-bottom: 8px; }
.v2-footer a:hover { color: #fff; }
.v2-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.v2-footer-brand p { margin: 12px 0 0; line-height: 1.6; max-width: 280px; }
.v2-footer-brand-logo {
  display: inline-block;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
  line-height: 0;
}
.v2-footer-brand-logo:hover { opacity: 0.92; }
.v2-footer-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.v2-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 13px;
}

/* Load more */
.v2-load-more { text-align: center; margin-top: 32px; }

@media (min-width: 768px) {
  .v2-jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .v2-search-bar {
    grid-template-columns: 1fr 1fr;
  }
  .v2-search-bar input {
    grid-column: 1 / -1;
  }
  .v2-search-bar .v2-btn-primary {
    grid-column: 1 / -1;
  }
}
@media (min-width: 992px) {
  .v2-nav { display: flex; }
  .v2-mobile-toggle { display: none; }
  .v2-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v2-search-bar {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 0.8fr) auto;
    align-items: stretch;
  }
  .v2-search-bar .v2-btn-primary { width: auto; min-width: 148px; }
  .v2-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
html[lang="vi"] .v2-nav a { font-size: 13px; padding: 8px 10px; }
html[lang="vi"] .v2-btn { font-size: 13px; padding: 9px 16px; }

/* Mobile nav drawer */
.v2-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}
.v2-mobile-nav.open { display: block; }
body.v2-nav-open { overflow: hidden; }
.v2-mobile-nav-panel {
  background: #fff;
  width: min(300px, 88vw);
  height: 100%;
  margin-left: auto;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.v2-mobile-nav.open .v2-mobile-nav-panel { transform: translateX(0); }
.v2-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--v2-border);
}
.v2-mobile-nav-logo { height: 36px; width: auto; }
.v2-mobile-nav-close {
  border: none;
  background: none;
  font-size: 28px;
  color: var(--v2-navy);
  line-height: 1;
  padding: 4px;
}
.v2-mobile-nav-links a,
.v2-mobile-nav-account a {
  display: block;
  padding: 14px 20px;
  font-weight: 600;
  color: var(--v2-text);
  border-bottom: 1px solid var(--v2-border);
  text-decoration: none;
}
.v2-mobile-nav-lang {
  padding: 16px 20px;
  border-bottom: 1px solid var(--v2-border);
}
.v2-mobile-nav-account { padding: 16px 20px 24px; }
.v2-mobile-nav-account .v2-header-company--mobile { border: none; padding: 12px 0; }

/* Back to top */
.v2-back-to-top {
  position: fixed;
  right: 20px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--v2-navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(12, 30, 77, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.15s;
}
.v2-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.v2-back-to-top:hover {
  background: var(--v2-blue);
  color: #fff;
}
.v2-back-to-top:focus-visible {
  outline: 2px solid var(--v2-blue);
  outline-offset: 2px;
}
@media (max-width: 767.98px) {
  .v2-back-to-top {
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
