/* Job listing page */
.v2-listing-hero {
    background: var(--v2-bg);
    padding: 32px 0;
    border-bottom: 1px solid var(--v2-border);
}
.v2-listing-search {
    background: #fff;
    border-radius: var(--v2-radius);
    padding: 12px;
    box-shadow: var(--v2-shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.v2-listing-search input,
.v2-listing-search select,
.v2-ls-keyword,
.v2-ls-filters select {
    flex: 1 1 160px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    min-width: 0;
    line-height: 1.4;
}
.v2-listing-search select,
.v2-ls-filters select {
    height: auto;
    min-height: 44px;
    padding-right: 2rem;
}
.v2-ls-submit { flex: 0 0 auto; white-space: nowrap; }
.v2-ls-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--v2-navy);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.v2-listing-search.is-filters-open .v2-ls-toggle {
    border-color: var(--v2-blue);
    background: #eff6ff;
    color: var(--v2-blue);
}
@media (max-width: 991.98px) {
    .v2-listing-hero {
        padding: 20px 0;
    }
    .v2-listing-hero .v2-section-title {
        font-size: clamp(20px, 5vw, 24px) !important;
        margin-bottom: 6px !important;
    }
    .v2-listing-hero .v2-section-sub {
        font-size: 14px;
        margin-bottom: 16px !important;
    }
    .v2-listing-search {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "keyword keyword"
            "toggle submit"
            "filters filters";
        gap: 8px;
        padding: 10px;
    }
    .v2-ls-keyword {
        grid-area: keyword;
        width: 100%;
        flex: none;
    }
    .v2-ls-toggle {
        grid-area: toggle;
        min-width: 0;
    }
    .v2-ls-submit {
        grid-area: submit;
        padding: 11px 16px;
    }
    .v2-ls-filters {
        grid-area: filters;
        display: none;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .v2-ls-filters select {
        width: 100%;
        flex: none;
    }
    .v2-listing-search.is-filters-open .v2-ls-filters {
        display: flex;
    }
    .v2-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 16px;
        padding-bottom: 4px;
    }
    .v2-tabs::-webkit-scrollbar { display: none; }
    .v2-tab {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    .v2-results-header {
        flex-direction: column;
        align-items: stretch;
    }
    .v2-results-header h2 {
        font-size: 18px;
    }
    .v2-sort-form {
        width: 100%;
        justify-content: space-between;
    }
    .v2-sort-select {
        flex: 1;
        min-width: 0;
        max-width: none;
    }
    .v2-filter-badges {
        gap: 6px;
    }
    .v2-filter-badge {
        font-size: 12px;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .v2-listing-layout {
        padding: 20px 0 40px;
        gap: 16px;
    }
    .v2-section.v2-section-alt {
        padding: 32px 0;
        overflow-x: clip;
    }
    .v2-ai-section {
        margin-bottom: 24px;
        overflow: hidden;
    }
    .v2-ai-carousel {
        margin: 0 -4px;
        padding: 0 4px;
    }
    .v2-ai-card {
        flex: 0 0 min(260px, 78vw);
    }
    .v2-job-card-top {
        padding-right: 36px;
    }
    .v2-job-logo {
        width: 44px;
        height: 44px;
    }
    .v2-job-title {
        font-size: 15px;
    }
}
@media (min-width: 992px) {
    .v2-ls-filters {
        display: contents;
    }
    .v2-ls-keyword {
        flex: 1 1 200px;
    }
}
.v2-listing-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 56px;
    overflow: visible;
}
.v2-sidebar {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 20px;
    height: fit-content;
    overflow: visible;
}
.v2-sidebar h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--v2-navy);
}
.v2-sidebar .filter-group { margin-bottom: 24px; }
/* Radio/checkbox filters only — do not style .form-label selects */
.v2-sidebar .filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 6px 0;
    cursor: pointer;
    margin: 0;
}
.v2-sidebar .form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--v2-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    cursor: default;
}
.v2-sidebar .form-group {
    margin-bottom: 14px;
    overflow: visible;
}
.v2-sidebar .form-group:last-of-type {
    margin-bottom: 16px;
}
.v2-sidebar select.form-control,
.v2-sidebar .form-control[type="text"] {
    width: 100%;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}
.v2-sidebar select.form-control {
    height: auto;
    min-height: 44px;
    padding: 10px 2rem 10px 12px;
    background-color: #fff;
}
.v2-sidebar select.form-control:focus {
    position: relative;
    z-index: 20;
    border-color: var(--v2-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.v2-results-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.v2-results-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: var(--v2-navy);
}
.v2-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.v2-sort-label {
    font-size: 13px;
    color: var(--v2-muted);
    margin: 0;
    font-weight: 600;
}
.v2-sort-select {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 150px;
    background: #fff;
}
.v2-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 8px;
}
.v2-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
}
.v2-benefit-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--v2-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.v2-benefit-item__text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    font-weight: 600;
}
.v2-detail-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}
.v2-detail-list li + li { margin-top: 8px; }
@media (min-width: 768px) {
    .v2-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.v2-sort select {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
}
.v2-filter-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.v2-filter-badge {
    background: #eff6ff;
    color: var(--v2-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.v2-pagination { margin-top: 32px; }
.v2-pagination .pagination {
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}
.v2-pagination .page-item .page-link {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--v2-border);
  color: var(--v2-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.v2-pagination .page-item .page-link:hover {
  background: #eff6ff;
  border-color: var(--v2-blue);
  color: var(--v2-blue);
}
.v2-pagination .page-item.active .page-link {
  background: var(--v2-blue);
  border-color: var(--v2-blue);
  color: #fff;
  z-index: 1;
}
.v2-pagination .page-item.disabled .page-link {
  background: #f8fafc;
  border-color: var(--v2-border);
  color: #94a3b8;
  pointer-events: none;
}
.v2-pagination svg {
  width: 1rem;
  height: 1rem;
}

/* Job details page */
.v2-detail-breadcrumb {
    background: #f1f5f9;
    border-bottom: 1px solid var(--v2-border);
    padding: 14px 0;
}
.v2-breadcrumb--light {
    margin: 0;
    opacity: 1;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.v2-breadcrumb--light a { color: var(--v2-muted); text-decoration: none; }
.v2-breadcrumb--light a:hover { color: var(--v2-blue); }
.v2-breadcrumb-sep { color: #cbd5e1; }
.v2-breadcrumb-current { color: var(--v2-navy); font-weight: 600; }
.v2-breadcrumb-current--title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}
/* Job-detail breadcrumb sits on a light strip — override hero white-link styles */
.v2-detail-breadcrumb .v2-breadcrumb,
.v2-detail-breadcrumb .v2-breadcrumb--light {
    color: #334155;
    opacity: 1;
}
.v2-detail-breadcrumb .v2-breadcrumb a,
.v2-detail-breadcrumb .v2-breadcrumb--light a {
    color: #475569;
}
.v2-detail-breadcrumb .v2-breadcrumb a:hover,
.v2-detail-breadcrumb .v2-breadcrumb--light a:hover {
    color: var(--v2-blue);
    text-decoration: none;
}
.v2-detail-breadcrumb .v2-breadcrumb-sep {
    color: #94a3b8;
}
.v2-detail-breadcrumb .v2-breadcrumb-current {
    color: #0f172a;
}
.v2-job-detail-container {
    position: relative;
    z-index: 2;
}
.v2-job-detail-body {
    padding-top: 0;
    margin-top: -20px;
}
.v2-job-hero {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    color: #fff;
    padding: 40px 0 48px;
}
.v2-job-hero--detail { padding: 36px 0 44px; }
.v2-job-hero--detail .v2-job-hero-inner { align-items: stretch; }
.v2-breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.85;
}
.v2-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.v2-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.v2-job-hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
}
.v2-job-hero-main {
    display: flex;
    gap: 24px;
    flex: 1;
    min-width: min(100%, 320px);
}
.v2-job-hero-logo-wrap {
    flex-shrink: 0;
    width: 112px;
    height: 112px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.v2-job-hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
.v2-job-hero-copy { flex: 1; min-width: 0; }
.v2-job-hero-title,
.v2-job-hero h1 {
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.v2-job-hero--detail .v2-job-hero-title,
.v2-job-hero--detail h1 {
    text-transform: none;
}
.v2-job-hero-company-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 8px;
}
.v2-job-hero--detail .v2-job-hero-profile-link {
    display: inline-flex;
    margin-bottom: 14px;
}
.v2-job-hero-company {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.v2-job-hero-company:hover { color: #fff; text-decoration: underline; }
.v2-verified-badge { color: #60a5fa; font-size: 20px; line-height: 1; }
.v2-verified-badge--sm { font-size: 16px; }
.v2-job-hero-profile-link,
.v2-employer-profile-link {
    font-size: 14px;
    font-weight: 600;
    color: #bfdbfe;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.v2-job-hero-profile-link:hover,
.v2-employer-profile-link:hover { color: #fff; text-decoration: none; }
.v2-job-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.v2-hero-pill,
.v2-job-hero-pills .v2-job-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.v2-hero-pill--blue,
.v2-job-hero-pills .v2-job-tag.blue { border-color: #93c5fd; color: #dbeafe; background: rgba(59, 130, 246, 0.2); }
.v2-hero-pill--green,
.v2-job-hero-pills .v2-job-tag.green { border-color: #86efac; color: #dcfce7; background: rgba(34, 197, 94, 0.2); }
.v2-hero-pill--orange,
.v2-job-hero-pills .v2-job-tag.orange,
.v2-job-hero-pills .v2-job-tag.v2-job-tag--urgent,
.v2-hero-pill.v2-hero-pill--orange {
  border-color: #fdba74;
  color: #fff;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9));
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.35);
}
.v2-hero-pill--orange i,
.v2-hero-pill.v2-hero-pill--orange i { margin-right: 4px; }
.v2-hero-pill--purple { border-color: #c4b5fd; color: #ede9fe; background: rgba(139, 92, 246, 0.22); }
.v2-job-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}
.v2-job-hero-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}
.v2-job-hero-meta-item i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 2px;
    opacity: 0.9;
}
.v2-job-hero-meta-item span { min-width: 0; }
.v2-job-hero-meta-item--salary span { font-weight: 600; color: #fef3c7; }
@media (min-width: 992px) {
    .v2-job-hero-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 24px;
    }
    .v2-job-hero-meta-item {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    .v2-job-hero-meta-item--salary span { color: rgba(255, 255, 255, 0.95); }
}
.v2-job-hero-posted--inline {
    margin: 12px 0 0;
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 992px) {
    .v2-job-hero-posted--inline { display: none; }
}
.v2-job-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    max-width: 260px;
}
.v2-job-hero-actions .v2-btn { width: 100%; justify-content: center; gap: 8px; }
.v2-btn-apply-lg { padding: 14px 20px; font-size: 16px; font-weight: 700; }
.v2-btn-bookmark-lg {
    background: #fff;
    color: var(--v2-navy);
    border: none;
    font-weight: 600;
}
.v2-btn-bookmark-lg:hover,
.v2-btn-bookmark-lg.is-bookmarked {
    background: #eff6ff;
    color: var(--v2-blue);
}
.v2-job-hero-posted {
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-align: right;
}
.v2-job-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 0 56px;
}
.v2-job-detail-aside .v2-sidebar-card--summary {
    border-radius: 20px 20px var(--v2-radius) var(--v2-radius);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: none;
}
.v2-job-content {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 24px 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.v2-detail-section-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-navy);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.v2-detail-section-title:first-child { margin-top: 0; }
.v2-detail-prose,
.v2-job-content .job-html {
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
}
.v2-detail-prose ul,
.v2-job-content .job-html ul { padding-left: 1.2rem; }
.v2-detail-prose .job-description__item--content-list,
.v2-job-content .job-html .job-description__item--content-list {
    margin-bottom: 8px;
    padding-left: 1rem;
    position: relative;
}
.v2-detail-prose .job-description__item--content-list::before,
.v2-job-content .job-html .job-description__item--content-list::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--v2-blue);
    font-weight: 700;
}
.v2-job-why-join {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 22px 24px;
    border-radius: var(--v2-radius);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}
.v2-job-why-join__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--v2-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.v2-job-why-join h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0 0 8px;
}
.v2-job-why-join p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}
.v2-job-detail-aside { display: flex; flex-direction: column; gap: 20px; }
.v2-sidebar-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 24px;
    margin-bottom: 0;
}
.v2-sidebar-card h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--v2-navy);
}
.v2-summary-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-border);
    font-size: 14px;
    align-items: flex-start;
}
.v2-summary-row:last-child { border-bottom: none; }
.v2-summary-row i { color: var(--v2-blue); font-size: 18px; width: 24px; flex-shrink: 0; margin-top: 1px; }
.v2-summary-row .label { color: var(--v2-muted); min-width: 108px; flex-shrink: 0; }
.v2-summary-row .value { font-weight: 600; color: var(--v2-text); line-height: 1.5; }
.v2-employer-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.v2-employer-mini img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid var(--v2-border);
    padding: 4px;
}
.v2-employer-mini strong { font-size: 15px; color: var(--v2-navy); }
.v2-employer-mini-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 12px;
}
.v2-employer-mini-meta {
    font-size: 13px;
    color: var(--v2-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v2-employer-mini-meta i { color: var(--v2-blue); }
.v2-related { background: var(--v2-bg); padding: 56px 0; }
.v2-related--careers { background: #fff; border-top: 1px solid var(--v2-border); }
.v2-related-head { text-align: center; margin-bottom: 32px; }
.v2-related-head h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.v2-related-head p { margin: 0; color: var(--v2-muted); font-size: 15px; }
.v2-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.v2-related-more { text-align: center; margin-top: 28px; }
.v2-related-job-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.v2-related-job-card.is-urgent {
  border: 2px solid #fb923c;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 40%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
}
.v2-related-job-card.is-urgent:hover {
  border-color: #f97316;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.2);
}
.v2-related-job-card__main {
    display: flex;
    gap: 14px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    flex: 1;
}
.v2-related-job-card__main:hover { text-decoration: none; color: inherit; }
.v2-related-job-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--v2-border);
    flex-shrink: 0;
}
.v2-related-job-card__body { flex: 1; min-width: 0; }
.v2-related-job-card__top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-start;
}
.v2-related-job-card__top h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--v2-navy);
    line-height: 1.35;
}
.v2-related-job-card__time {
    font-size: 11px;
    color: var(--v2-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.v2-related-job-card__company {
    font-size: 13px;
    color: var(--v2-muted);
    margin: 4px 0 8px;
}
.v2-related-job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px 16px;
    border-top: 1px solid #f1f5f9;
}
.v2-btn-sm { padding: 8px 16px; font-size: 13px; }
.v2-related-bookmark-btn {
    width: 38px;
    height: 38px;
    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;
}
.v2-related-bookmark-btn:hover,
.v2-related-bookmark-btn.is-bookmarked {
    border-color: var(--v2-blue);
    color: var(--v2-blue);
    background: #eff6ff;
}
@media (max-width: 991px) {
    .v2-job-hero-actions {
        display: none;
    }
    .v2-job-hero-posted { text-align: left; }
    .v2-job-detail-body {
        padding-bottom: 88px;
        margin-top: -28px;
    }
    .v2-job-detail-layout {
        padding: 0 0 32px;
        gap: 16px;
    }
    .v2-job-detail-aside {
        order: -1;
    }
    .v2-sidebar-card--summary {
        padding: 20px 16px;
    }
    .v2-sidebar-card--summary h4 {
        margin-bottom: 12px;
        font-size: 12px;
    }
    .v2-summary-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid var(--v2-border);
    }
    .v2-summary-row .label {
        min-width: 92px;
        font-size: 13px;
    }
    .v2-summary-row .value {
        font-size: 13px;
    }
    .v2-job-content {
        padding: 20px 16px;
    }
    .v2-detail-section-title {
        margin-top: 24px;
        font-size: 12px;
    }
    .v2-job-hero--detail {
        padding: 20px 0 36px;
    }
    .v2-job-hero-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .v2-job-hero-logo-wrap {
        width: 80px;
        height: 80px;
        padding: 10px;
        border-radius: 14px;
    }
    .v2-job-hero-title,
    .v2-job-hero--detail h1 {
        font-size: 1.125rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }
    .v2-job-hero-company-row {
        justify-content: center;
        margin-bottom: 6px;
    }
    .v2-job-hero--detail .v2-job-hero-profile-link {
        justify-content: center;
        margin-bottom: 12px;
        font-size: 13px;
    }
    .v2-job-hero-pills {
        justify-content: center;
        gap: 6px;
        margin-bottom: 12px;
    }
    .v2-hero-pill,
    .v2-job-hero-pills .v2-job-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    .v2-job-hero-meta {
        width: 100%;
        gap: 8px;
    }
    .v2-job-hero-meta-item {
        justify-content: center;
        text-align: left;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        font-size: 13px;
    }
    .v2-detail-breadcrumb {
        padding: 10px 0;
    }
    .v2-breadcrumb--light {
        font-size: 12px;
    }
    .v2-breadcrumb-sep--title,
    .v2-breadcrumb-current--title {
        display: none;
    }
}
.v2-job-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--v2-border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    gap: 10px;
    align-items: center;
}
.v2-job-mobile-bar .v2-btn-primary { flex: 1; justify-content: center; }
.v2-job-mobile-bar__bookmark {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .v2-job-mobile-bar { display: flex; }
}
.v2-saved-jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.v2-saved-job-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v2-saved-job-item .v2-job-card { height: 100%; }
.v2-saved-job-remove {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    background: #fff;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.v2-saved-job-remove:hover {
    background: #fef2f2;
    border-color: #f87171;
}
@media (min-width: 768px) {
    .v2-saved-jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.v2-apply-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.v2-apply-modal.open { display: flex; }
.v2-apply-modal-box {
    background: #fff;
    border-radius: var(--v2-radius);
    padding: 28px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
}
.v2-apply-modal .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
}
.v2-apply-modal-box h2 {
    padding-right: 28px;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.v2-apply-modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--v2-border);
}
.v2-apply-modal-actions .v2-btn {
    min-width: 96px;
    justify-content: center;
}
.v2-apply-resume-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid #fdba74;
    border-radius: 10px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.v2-apply-resume-link:hover {
    background: #ffedd5;
    border-color: #fb923c;
}
.v2-apply-resume-link > span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
}
.v2-apply-resume-link i:first-child {
    font-size: 18px;
    flex-shrink: 0;
}
.v2-apply-resume-link__chevron {
    margin-left: 2px;
    flex-shrink: 0;
    transition: transform 0.15s;
}
.v2-apply-resume-link.is-open .v2-apply-resume-link__chevron {
    transform: rotate(180deg);
}
.v2-cv-snapshot {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--v2-border);
    border-radius: 12px;
    background: #f8fafc;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.v2-cv-snapshot__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    min-width: 0;
}
.v2-cv-snapshot__head > div {
    min-width: 0;
    flex: 1;
}
.v2-cv-snapshot__head strong {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.v2-cv-snapshot__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.v2-cv-snapshot__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--v2-muted);
}
.v2-cv-snapshot__meta span {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.v2-cv-snapshot__section {
    margin-bottom: 10px;
    min-width: 0;
}
.v2-cv-snapshot__section h4 {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--v2-navy);
}
.v2-cv-snapshot__section p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #475569;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}
.v2-cv-snapshot__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--v2-border);
}

/* Candidate / user dashboard */
.v2-dash-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 56px;
}
.v2-dash-sidebar {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 24px;
    height: fit-content;
}
.v2-dash-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 16px;
}
.v2-dash-avatar {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-dash-avatar img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--v2-border);
    margin-bottom: 10px;
}
.v2-dash-avatar h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--v2-navy);
}
.v2-dash-nav { list-style: none; padding: 0; margin: 0; }
.v2-dash-nav li { margin: 0; }
.v2-dash-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--v2-text);
    text-decoration: none;
    transition: background 0.15s;
}
.v2-dash-nav a:hover,
.v2-dash-nav a.active {
    background: #eff6ff;
    color: var(--v2-blue);
    text-decoration: none;
}
.v2-dash-main { min-width: 0; }
.v2-dash-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 24px;
    margin-bottom: 20px;
}
.v2-dash-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 16px;
}
.v2-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.v2-stat-card {
    background: var(--v2-bg);
    border-radius: var(--v2-radius);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
    display: block;
}
.v2-stat-card:hover {
    box-shadow: var(--v2-shadow);
    text-decoration: none;
    color: inherit;
}
.v2-stat-card .num {
    font-size: 32px;
    font-weight: 800;
    color: var(--v2-blue);
    line-height: 1;
    margin-bottom: 6px;
}
.v2-stat-card .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-muted);
}
.v2-activity-list { list-style: none; padding: 0; margin: 0; }
.v2-activity-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-border);
    font-size: 14px;
}
.v2-activity-list li:last-child { border-bottom: none; }
.v2-activity-list .time { color: var(--v2-muted); font-size: 12px; white-space: nowrap; }
.v2-form-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 28px;
}
.v2-form-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-form-card .form-group { margin-bottom: 16px; }
.v2-form-card label {
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-text);
    margin-bottom: 6px;
    display: block;
}
.v2-form-card .form-control,
.v2-form-card select {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    line-height: 1.4;
}
.v2-form-card select.form-control {
    height: auto;
    min-height: 44px;
    padding-right: 2rem;
}

/* Candidate public profile */
.v2-candidate-hero {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    color: #fff;
    padding: 40px 0 48px;
}
.v2-candidate-hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.v2-candidate-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.v2-candidate-hero h1 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.v2-candidate-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    opacity: 0.9;
}
.v2-candidate-hero-meta i { margin-right: 4px; }
.v2-candidate-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.v2-candidate-hero-badges .v2-ai-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.v2-summary-row--stack { align-items: flex-start; }
.v2-summary-row--stack .value { text-align: left; }
.v2-candidate-mobile-bar,
.v2-company-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--v2-border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}
.v2-candidate-mobile-bar .v2-btn,
.v2-company-mobile-bar .v2-btn { width: 100%; justify-content: center; }
.v2-company-detail-hero {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    color: #fff;
    padding: 32px 0 40px;
    background-size: cover;
    background-position: center;
}
.v2-company-detail-hero__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
}
.v2-company-detail-hero__logo {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.25);
    background: #fff;
}
.v2-company-detail-hero h1 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.v2-company-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    opacity: 0.92;
}
.v2-company-detail-hero__meta i { margin-right: 4px; }
.v2-company-detail-hero .v2-breadcrumb--light a,
.v2-company-detail-hero .v2-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.72);
}
.v2-company-detail-hero .v2-breadcrumb--light a:hover {
    color: #fff;
}
.v2-company-detail-hero .v2-breadcrumb-current {
    color: #fff;
    opacity: 0.95;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.v2-company-detail-layout { padding-bottom: 56px; }
.v2-company-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.v2-company-detail-aside .v2-sidebar-card {
    overflow: hidden;
}
.v2-company-detail-aside .v2-summary-row {
    align-items: flex-start;
}
.v2-company-detail-aside .v2-summary-row .value {
    min-width: 0;
    flex: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
}
@media (max-width: 991px) {
    .v2-candidate-detail-layout,
    .v2-company-detail-layout {
        padding-bottom: 108px;
    }
    .v2-candidate-detail-aside,
    .v2-company-detail-aside {
        order: -1;
        width: 100%;
        min-width: 0;
    }
    .v2-company-detail-aside .v2-sidebar-card {
        display: block;
        padding: 18px 16px;
    }
    .v2-company-detail-aside .v2-summary-row {
        flex-wrap: wrap;
        gap: 6px 10px;
    }
    .v2-company-detail-aside .v2-summary-row .label {
        min-width: 0;
        flex: 0 0 auto;
    }
    .v2-company-detail-aside .v2-summary-row .value {
        flex: 1 1 140px;
        text-align: left;
    }
    .v2-company-detail-hero {
        padding: 24px 0 28px;
    }
    .v2-company-detail-hero__inner {
        gap: 16px;
        align-items: flex-start;
    }
    .v2-company-detail-hero__logo {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }
    .v2-company-detail-hero__meta {
        gap: 8px 12px;
        font-size: 13px;
    }
    .v2-company-detail-hero__meta span {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .v2-candidate-mobile-bar,
    .v2-company-mobile-bar { display: block; }
    .v2-candidate-hero-inner { flex-direction: column; align-items: flex-start; }
}
.v2-candidate-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 28px 0 12px;
}
.v2-candidate-content h3:first-child { margin-top: 0; }
.v2-candidate-content .rich-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

@media (min-width: 992px) {
    .v2-listing-layout {
        grid-template-columns: 280px 1fr;
        grid-template-areas: "sidebar main";
    }
    .v2-listing-layout > aside { overflow: visible; min-width: 0; grid-area: sidebar; }
    .v2-listing-main { grid-area: main; min-width: 0; }
    .v2-sidebar {
        position: sticky;
        top: 80px;
        z-index: 5;
    }
    .v2-job-detail-layout { grid-template-columns: minmax(0, 1fr) 360px; }
    .v2-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-listing-search { flex-wrap: nowrap; }
    .v2-dash-layout { grid-template-columns: 260px 1fr; }
    .v2-candidate-layout { grid-template-columns: 1fr 320px; }
}
.v2-candidate-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 56px;
}

/* Employer job management list */
.v2-employer-jobs-list { display: flex; flex-direction: column; gap: 16px; }
.v2-employer-job-item {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
}
.v2-employer-job-item.urgent { border-color: #fed7aa; background: #fffbeb; }
.v2-employer-job-body { flex: 1; min-width: 200px; }
.v2-employer-job-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.v2-employer-job-body h3 a { color: var(--v2-navy); text-decoration: none; }
.v2-employer-job-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}
.v2-employer-job-actions .v2-btn { text-align: center; font-size: 13px; padding: 8px 14px; }
.v2-listing-hero .v2-breadcrumb a { color: rgba(255,255,255,0.9); }
.v2-listing-hero .v2-breadcrumb { color: rgba(255,255,255,0.85); margin-bottom: 12px; }

/* Post job form polish inside v2 */
.job-information-area .form-control,
.job-information-area select { border-radius: 8px; border-color: var(--v2-border); }
.job-information-area h3 { color: var(--v2-navy); font-weight: 700; }
.job-information-area .job-information {
    max-width: none;
    width: 100%;
}

/* Employer candidate management */
.v2-candidate-search {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.v2-candidate-search input {
    flex: 1;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}
.v2-candidate-alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 16px;
}
.v2-candidate-info-tip {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: var(--v2-blue);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 20px;
}
.v2-candidate-card {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
    margin-bottom: 16px;
    position: relative;
}
.v2-candidate-card .v2-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}
.v2-candidate-card.locked { background: #fafafa; }
.v2-candidate-card img.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--v2-border);
    flex-shrink: 0;
}
.v2-candidate-card img.mosaic-image {
    filter: blur(4px);
    opacity: 0.85;
}
.v2-candidate-card-main { flex: 1; min-width: 220px; }
.v2-candidate-card-main h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.v2-candidate-card-main h3 a { color: var(--v2-navy); text-decoration: none; }
.v2-candidate-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--v2-muted);
    margin-bottom: 10px;
}
.v2-candidate-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--v2-text);
}
.v2-candidate-meta li { margin-bottom: 4px; }
.v2-candidate-meta span { color: var(--v2-muted); }
.v2-apply-status {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v2-apply-status label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}
.v2-apply-status input { margin: 0; }
.v2-paywall-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--v2-radius);
    padding: 28px;
    margin-top: 24px;
}
.v2-paywall-card img { max-width: 160px; height: auto; }
.v2-paywall-card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0 0 12px;
    line-height: 1.3;
}
.v2-preview-content { position: relative; margin-bottom: 20px; }
.v2-resume-lock {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    margin-bottom: 8px;
}
.v2-resume-teaser {
    padding: 16px 18px 12px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--v2-text);
}
.v2-resume-teaser p {
    margin: 0;
    white-space: pre-line;
}
.v2-resume-empty {
    margin: 0;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--v2-muted);
}
.v2-resume-locked {
    position: relative;
    min-height: 130px;
    padding: 0 18px 22px;
}
.v2-resume-locked-fade {
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 85%);
    z-index: 2;
    pointer-events: none;
}
.v2-resume-placeholder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
    filter: blur(5px);
    opacity: 0.45;
    user-select: none;
    pointer-events: none;
}
.v2-resume-placeholder span {
    display: block;
    height: 11px;
    border-radius: 6px;
    background: linear-gradient(90deg, #dbeafe 0%, #e2e8f0 100%);
}
.v2-resume-placeholder span:nth-child(1) { width: 96%; }
.v2-resume-placeholder span:nth-child(2) { width: 88%; }
.v2-resume-placeholder span:nth-child(3) { width: 74%; }
.v2-resume-placeholder span:nth-child(4) { width: 58%; }
.v2-resume-lock-badge {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
}
.v2-resume-lock-badge i {
    font-size: 24px;
    color: var(--v2-blue);
    background: #eff6ff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.v2-resume-lock-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-muted);
    max-width: 220px;
    line-height: 1.4;
}

/* Resume collection filters */
.v2-collection-filters {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 20px;
    margin-bottom: 20px;
    overflow: visible;
}
.v2-collection-filters .form-group {
    margin-bottom: 14px;
    overflow: visible;
}
.v2-collection-filters .form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--v2-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    cursor: default;
}
.v2-collection-filters .form-control,
.v2-collection-filters select {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    line-height: 1.4;
}
.v2-collection-filters select.form-control {
    height: auto;
    min-height: 44px;
    padding: 10px 2rem 10px 12px;
    background-color: #fff;
}
.v2-collection-filters select.form-control:focus {
    position: relative;
    z-index: 20;
    border-color: var(--v2-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.v2-filter-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.v2-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--v2-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.v2-filter-tag a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    opacity: 0.7;
}
.v2-filter-tag a:hover { opacity: 1; }
.v2-count-badge {
    background: var(--v2-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}
.v2-empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--v2-muted);
}
.v2-empty-state i { font-size: 48px; opacity: 0.35; display: block; margin-bottom: 12px; }

/* Auth pages */
.v2-auth-section { padding: 48px 0 72px; background: var(--v2-bg); }
.v2-auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 32px;
    box-shadow: var(--v2-shadow);
}
.v2-auth-card h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--v2-navy);
    margin: 0 0 8px;
    text-align: center;
}
.v2-auth-card .subtitle {
    text-align: center;
    color: var(--v2-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.v2-auth-card .form-group { margin-bottom: 16px; }
.v2-auth-card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.v2-auth-card .form-control {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 11px 14px;
    width: 100%;
}
.v2-auth-divider {
    text-align: center;
    color: var(--v2-muted);
    font-size: 13px;
    margin: 20px 0;
    position: relative;
}
.v2-auth-divider::before,
.v2-auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--v2-border);
}
.v2-auth-divider::before { left: 0; }
.v2-auth-divider::after { right: 0; }
.v2-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: 1px solid var(--v2-border);
    background: #fff;
    color: var(--v2-text);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: background 0.15s;
}
.v2-social-btn:hover { background: #f8fafc; text-decoration: none; color: var(--v2-text); }
.v2-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--v2-muted);
}
.v2-auth-footer a { font-weight: 600; }

/* Company pages */
.v2-company-card {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}
.v2-company-card:hover { box-shadow: var(--v2-shadow); text-decoration: none; color: inherit; }
.v2-company-logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid var(--v2-border);
    background: #fff;
    flex-shrink: 0;
}
.v2-company-body { flex: 1; min-width: 200px; }
.v2-company-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--v2-navy);
}
.v2-company-type { font-size: 13px; color: var(--v2-muted); margin-bottom: 6px; }
.v2-company-jobs {
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-blue);
    white-space: nowrap;
}
.v2-company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.v2-company-card--grid {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}
.v2-company-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}
.v2-company-card__intro {
    font-size: 14px;
    color: var(--v2-muted);
    line-height: 1.6;
    margin: 0 0 12px;
    width: 100%;
}
.v2-company-jobs-pill {
    margin-left: auto;
    background: #eff6ff;
    color: #1e40af;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .v2-company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .v2-company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.v2-company-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.v2-company-photos img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--v2-radius);
    border: 1px solid var(--v2-border);
}

/* Pricing */
.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.v2-pricing-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.v2-pricing-card:hover { box-shadow: var(--v2-shadow); transform: translateY(-4px); }
.v2-pricing-card.featured { border-color: var(--v2-blue); box-shadow: 0 0 0 1px var(--v2-blue); }
.v2-pricing-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--v2-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
}
.v2-pricing-header {
    background: var(--v2-bg);
    padding: 32px 24px;
    text-align: center;
}
.v2-pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 12px;
}
.v2-pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--v2-blue);
    line-height: 1;
}
.v2-pricing-price sup { font-size: 20px; vertical-align: super; }
.v2-pricing-features {
    padding: 24px;
    flex: 1;
    list-style: none;
    margin: 0;
}
.v2-pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-border);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.v2-pricing-features li:last-child { border-bottom: none; }
.v2-pricing-features i { color: var(--v2-blue); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.v2-pricing-features strong { display: block; color: var(--v2-navy); }
.v2-pricing-features .desc { font-size: 12px; color: var(--v2-muted); display: block; margin-top: 2px; }
.v2-pricing-footer { padding: 0 24px 24px; }
.v2-pricing-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #fff 100%);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-pricing-hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.v2-pricing-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-navy);
}
.v2-pricing-trust i { color: var(--v2-blue); margin-right: 6px; }
.v2-pricing-compare-table-wrap { overflow-x: auto; margin-top: 20px; }
.v2-pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
}
.v2-pricing-compare-table th,
.v2-pricing-compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--v2-border);
    text-align: center;
    font-size: 14px;
}
.v2-pricing-compare-table th:first-child,
.v2-pricing-compare-table td:first-child { text-align: left; font-weight: 600; color: var(--v2-navy); }
.v2-pricing-compare-table thead th { background: var(--v2-bg); }
.v2-faq-list { max-width: 720px; margin: 20px auto 0; }
.v2-faq-item {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 0 16px;
    margin-bottom: 10px;
}
.v2-faq-item summary {
    padding: 16px 0;
    font-weight: 700;
    color: var(--v2-navy);
    cursor: pointer;
    list-style: none;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item p { padding: 0 0 16px; margin: 0; color: var(--v2-muted); font-size: 14px; line-height: 1.6; }
.v2-profile-progress-card h3 { margin: 0; font-size: 18px; }
.v2-profile-progress-pct { font-size: 28px; font-weight: 800; color: var(--v2-blue); }
.v2-profile-progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}
.v2-profile-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--v2-blue), #3b82f6);
    border-radius: 999px;
}
.v2-profile-progress-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.v2-profile-progress-step {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
    background: #f1f5f9;
    color: var(--v2-muted);
}
.v2-profile-progress-step.is-done { background: #dcfce7; color: #166534; }
.v2-recent-apps { display: flex; flex-direction: column; gap: 8px; }
.v2-recent-app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.v2-recent-app-row:hover { border-color: var(--v2-blue); background: #f8fafc; text-decoration: none; color: inherit; }
.v2-recent-app-row strong { color: var(--v2-navy); font-size: 14px; }
@media (max-width: 991px) {
    .v2-companies-layout { grid-template-columns: 1fr; }
    .v2-companies-layout .v2-sidebar--drawer { display: none; }
    .v2-companies-layout .v2-sidebar--drawer.is-open { display: block; }
}

/* Contact */
.v2-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.v2-contact-info {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    color: #fff;
    border-radius: var(--v2-radius);
    padding: 28px;
}
.v2-contact-info h3 { color: #fff; font-size: 18px; margin: 0 0 16px; }
.v2-contact-info p { opacity: 0.9; font-size: 14px; line-height: 1.7; }
.v2-contact-info ul { list-style: none; padding: 0; margin: 20px 0 0; }
.v2-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
}
.v2-contact-info li:last-child { border-bottom: none; }
.v2-contact-info i { font-size: 20px; opacity: 0.9; }
.v2-contact-info a { color: #fff; text-decoration: underline; }

/* Talent listing */
.v2-talent-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 32px;
    scroll-snap-type: x mandatory;
}
.v2-talent-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}
.v2-talent-card:hover { box-shadow: var(--v2-shadow); text-decoration: none; color: inherit; }
.v2-talent-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid var(--v2-border);
}
.v2-talent-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 12px; color: var(--v2-navy); }
.v2-candidate-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.v2-candidate-filters select,
.v2-candidate-filters .v2-btn { width: 100%; }
.v2-candidate-filters select {
    height: auto;
    min-height: 44px;
    line-height: 1.4;
    padding: 10px 2rem 10px 12px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    font-size: 14px;
}

@media (min-width: 992px) {
    .v2-contact-layout { grid-template-columns: 1.4fr 1fr; }
}

/* Blog */
.v2-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.v2-blog-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--v2-border);
    color: var(--v2-text);
    text-decoration: none;
    transition: all 0.15s;
}
.v2-blog-tag:hover,
.v2-blog-tag.active {
    background: var(--v2-blue);
    border-color: var(--v2-blue);
    color: #fff;
    text-decoration: none;
}
.v2-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.v2-blog-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.v2-blog-card:hover { box-shadow: var(--v2-shadow); }
.v2-blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.v2-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-blog-card-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}
.v2-blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.v2-blog-card-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--v2-blue);
    margin-bottom: 8px;
}
.v2-blog-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}
.v2-blog-card-body h3 a { color: var(--v2-navy); text-decoration: none; }
.v2-blog-card-body h3 a:hover { color: var(--v2-blue); }
.v2-blog-read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.v2-blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.v2-blog-article img.cover {
    width: 100%;
    border-radius: var(--v2-radius);
    margin-bottom: 24px;
}
.v2-blog-article .meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--v2-muted);
    margin-bottom: 16px;
}
.v2-blog-article .content { font-size: 15px; line-height: 1.8; }
.v2-blog-article .content img { max-width: 100%; height: auto; }
.v2-recent-posts { list-style: none; padding: 0; margin: 0; }
.v2-recent-posts li { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--v2-border); }
.v2-recent-posts li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.v2-recent-posts a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--v2-navy);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}
.v2-recent-posts a:hover { color: var(--v2-blue); }
.v2-recent-posts img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.v2-recent-posts .post-meta {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--v2-muted);
    margin-top: 4px;
}

/* Data tables (points) */
.v2-data-table-wrap { overflow-x: auto; border-radius: var(--v2-radius); border: 1px solid var(--v2-border); }
.v2-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.v2-data-table th,
.v2-data-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--v2-border);
}
.v2-data-table th {
    background: var(--v2-bg);
    font-weight: 700;
    color: var(--v2-navy);
    white-space: nowrap;
}
.v2-data-table tbody tr:last-child td { border-bottom: none; }
.v2-data-table tbody tr:hover { background: #fafafa; }
.v2-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
}
.v2-badge-success { background: #dcfce7; color: #166534; }
.v2-badge-danger { background: #fee2e2; color: #991b1b; }
.v2-badge-info { background: #dbeafe; color: #1e40af; }
.v2-badge-warning { background: #fef3c7; color: #92400e; }
.v2-badge-muted { background: #f1f5f9; color: #64748b; }

/* Redeem code */
.v2-redeem-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.v2-redeem-inputs input {
    width: 64px;
    height: 52px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--v2-border);
    border-radius: 8px;
    letter-spacing: 2px;
}
.v2-redeem-inputs input:focus {
    border-color: var(--v2-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Checkout */
.v2-checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.v2-order-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    overflow: hidden;
}
.v2-order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--v2-bg);
    border-bottom: 1px solid var(--v2-border);
}
.v2-order-card-header h4 { margin: 0; font-size: 18px; color: var(--v2-navy); }
.v2-order-price { font-size: 28px; font-weight: 800; color: var(--v2-blue); }
.v2-order-card-body { padding: 24px; }
.v2-order-features { list-style: none; padding: 0; margin: 0 0 20px; }
.v2-order-features li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.v2-order-features i { color: var(--v2-blue); font-size: 18px; }
.v2-order-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--v2-border);
    font-size: 14px;
}
.v2-payment-box {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 24px;
    position: sticky;
    top: 88px;
}
.v2-payment-summary .row-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--v2-muted);
}
.v2-payment-summary .row-item.total {
    border-top: 1px solid var(--v2-border);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 800;
    color: var(--v2-navy);
}
.v2-payment-method {
    border: 2px solid var(--v2-blue);
    background: #eff6ff;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    font-size: 14px;
}
.v2-security-note {
    text-align: center;
    font-size: 13px;
    color: var(--v2-muted);
    margin-top: 16px;
}
.v2-security-note i { display: block; font-size: 20px; color: var(--v2-blue); margin-bottom: 4px; }

/* Payment result */
.v2-result-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--v2-shadow);
}
.v2-result-card .icon { font-size: 72px; margin-bottom: 20px; }
.v2-result-card .icon.success { color: #22c55e; }
.v2-result-card .icon.failed { color: #ef4444; }
.v2-result-card h2 { font-size: 24px; font-weight: 800; color: var(--v2-navy); margin: 0 0 12px; }
.v2-result-card > p { color: var(--v2-muted); margin-bottom: 28px; }
.v2-result-info {
    text-align: left;
    background: var(--v2-bg);
    border-radius: var(--v2-radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.v2-result-info h4 { font-size: 15px; margin: 0 0 12px; color: var(--v2-navy); }
.v2-result-info ul { list-style: none; padding: 0; margin: 0; }
.v2-result-info li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.v2-result-info li i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.v2-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 992px) {
    .v2-blog-detail-layout { grid-template-columns: 1fr 320px; }
    .v2-checkout-layout { grid-template-columns: 1.4fr 1fr; }
}

/* About page */
.about-hero {
    background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 55%, #eef3ff 100%);
}
.about-hero-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 10, 137, 0.12);
}
.about-hero-img img { width: 100%; height: auto; display: block; }
.about-eyebrow {
    display: inline-block;
    color: var(--v2-navy);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-hero h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    color: var(--v2-navy);
    margin-bottom: 20px;
}
.about-hero p { color: var(--v2-muted); font-size: 16px; line-height: 1.8; margin-bottom: 0; }
.about-deliver-card {
    background: #fff;
    border-radius: var(--v2-radius);
    padding: 36px 32px;
    height: 100%;
    box-shadow: var(--v2-shadow);
    border-top: 4px solid var(--v2-navy);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-deliver-card:hover { transform: translateY(-4px); }
.about-deliver-card.teachers { border-top-color: var(--v2-blue); }
.about-deliver-card .card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; margin-bottom: 20px;
    background: var(--v2-navy);
}
.about-deliver-card.teachers .card-icon { background: var(--v2-blue); }
.about-deliver-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--v2-navy); }
.about-deliver-card .card-lead { color: var(--v2-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.about-deliver-card ul { list-style: none; padding: 0; margin: 0; }
.about-deliver-card ul li {
    position: relative; padding-left: 28px; margin-bottom: 16px;
    color: var(--v2-text); line-height: 1.65; font-size: 15px;
}
.about-deliver-card ul li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 10px; height: 10px; border-radius: 50%; background: var(--v2-navy);
}
.about-deliver-card.teachers ul li::before { background: var(--v2-blue); }
.about-deliver-card ul li strong { color: var(--v2-navy); display: block; margin-bottom: 2px; }
.about-vision {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    border-radius: var(--v2-radius);
    padding: 48px 56px; color: #fff; position: relative; overflow: hidden;
}
.about-vision h3 { color: #fff; font-size: 28px; margin-bottom: 16px; }
.about-vision p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.85; margin: 0; max-width: 900px; }
.about-headhunt { background: var(--v2-bg); }
.about-headhunt-header { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.about-headhunt-header h2 { font-size: clamp(26px, 3.5vw, 36px); color: var(--v2-navy); margin-bottom: 12px; }
.about-headhunt-header .tagline { font-size: 20px; font-weight: 700; color: var(--v2-navy); margin-bottom: 16px; }
.about-headhunt-header p { color: var(--v2-muted); line-height: 1.8; font-size: 16px; }
.about-benefit {
    background: #fff; border-radius: var(--v2-radius); padding: 32px; height: 100%;
    box-shadow: var(--v2-shadow); border-left: 5px solid var(--v2-navy);
}
.about-benefit .benefit-num { font-size: 40px; font-weight: 800; color: #e8ecff; line-height: 1; margin-bottom: 8px; }
.about-benefit h4 { font-size: 18px; color: var(--v2-navy); margin-bottom: 12px; line-height: 1.4; }
.about-benefit p { color: var(--v2-muted); font-size: 15px; line-height: 1.75; margin: 0; }
.about-process-wrap {
    background: linear-gradient(180deg, #eef3ff 0%, #f8faff 100%);
    border-radius: var(--v2-radius); padding: 48px 32px; margin-top: 48px;
}
.about-process-wrap h3 { text-align: center; font-size: clamp(22px, 3vw, 30px); color: var(--v2-navy); margin-bottom: 8px; }
.about-process-wrap .process-sub { text-align: center; color: var(--v2-muted); margin-bottom: 40px; font-size: 15px; }
.about-process-steps { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; }
.about-step { flex: 1 1 0; min-width: 140px; max-width: 200px; text-align: center; padding: 0 8px; }
.about-step-icon {
    width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--v2-navy);
    background: #fff; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 30px; color: var(--v2-navy);
}
.about-step-num { font-size: 28px; font-weight: 800; color: var(--v2-navy); line-height: 1; margin-bottom: 8px; }
.about-step-title { font-size: 13px; font-weight: 700; color: var(--v2-navy); line-height: 1.45; margin: 0 0 6px; }
.about-step-desc { font-size: 12px; color: var(--v2-muted); line-height: 1.55; margin: 0; }
.about-step-arrow { flex: 0 0 24px; display: flex; align-items: center; justify-content: center; padding-top: 28px; color: var(--v2-navy); font-size: 22px; font-weight: 700; }
.about-cta {
    background: #fff; border-radius: var(--v2-radius); padding: 48px; text-align: center;
    box-shadow: var(--v2-shadow); border: 1px solid var(--v2-border);
}
.about-cta h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 12px; color: var(--v2-navy); }
.about-cta p { color: var(--v2-muted); font-size: 16px; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.v2-invite-box {
    background: linear-gradient(135deg, var(--v2-navy) 0%, #1e3a8a 100%);
    border-radius: var(--v2-radius);
    padding: 24px;
    color: #fff;
    margin-bottom: 24px;
}
.v2-invite-box .form-control { background: rgba(255,255,255,0.95); }
.v2-invite-box p { margin: 12px 0 0; font-size: 14px; opacity: 0.9; }
.v2-dev-section { padding: 48px 0 72px; }
.v2-dev-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 28px;
    margin-bottom: 24px;
}
.v2-dev-card h3, .v2-dev-card h4 { color: var(--v2-navy); }
.v2-dev-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 20px; }
.v2-dev-pre {
    background: var(--v2-bg);
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 16px;
    min-height: 200px;
    font-size: 13px;
    overflow: auto;
}
@media (min-width: 992px) {
    .about-process-steps { flex-wrap: nowrap; gap: 4px; }
    .about-step { min-width: 0; max-width: none; flex: 1 1 0; }
    .about-step-desc { display: none; }
    .about-step-title { font-size: 12px; }
    .about-step-arrow { flex: 0 0 18px; font-size: 18px; padding-top: 32px; }
}
@media (max-width: 991px) {
    .about-process-steps { flex-direction: column; align-items: center; gap: 24px; }
    .about-step { max-width: 360px; width: 100%; }
    .about-step-arrow { display: none; }
    .about-vision { padding: 32px 28px; }
    .about-cta { padding: 32px 24px; }
}
html[lang="vi"] .about-step-title { font-size: 12px; }
html[lang="vi"] .about-step { min-width: 120px; }

/* Manage admin (legacy layout + v2 tokens) */
.v2-manage-body { background: var(--v2-bg); }
.v2-manage-topbar { border-bottom: 1px solid var(--v2-border); }
.v2-manage-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--v2-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-left: 12px;
}
.v2-manage-layout { padding-top: 24px; padding-bottom: 48px; }
.v2-manage-sidebar .v2-dash-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.v2-manage-sidebar .v2-dash-nav i { font-size: 18px; width: 20px; }
.v2-admin-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 20px;
    margin-bottom: 20px;
}
.v2-admin-actions { display: flex; gap: 8px; align-items: center; }
.v2-admin-actions a {
    color: var(--v2-muted);
    font-size: 18px;
    text-decoration: none;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.v2-admin-actions a:hover { color: var(--v2-blue); background: #eff6ff; }
.v2-admin-filters {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 20px;
    margin-bottom: 20px;
    overflow: visible;
}
.v2-admin-filters .form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--v2-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.v2-admin-filters select.form-control,
.v2-admin-filters .form-control {
    height: auto;
    min-height: 44px;
    line-height: 1.4;
    padding: 10px 2rem 10px 12px;
}
.v2-admin-form-card {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 28px;
    margin-bottom: 20px;
}
.v2-admin-form-card h3, .v2-admin-form-card h5.list-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-company-admin-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.v2-company-admin-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--v2-border);
    flex-shrink: 0;
}
.v2-admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.v2-admin-quick-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    text-decoration: none;
    color: var(--v2-navy);
    transition: border-color .2s, box-shadow .2s;
}
.v2-admin-quick-card:hover {
    border-color: var(--v2-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .08);
    color: var(--v2-blue);
}
.v2-admin-quick-card i {
    font-size: 28px;
    color: var(--v2-blue);
}
.v2-admin-quick-card span {
    font-weight: 700;
    font-size: 14px;
}
.v2-admin-user-cell { display: flex; align-items: center; gap: 12px; }
.v2-admin-user-cell img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--v2-border);
}
.v2-admin-user-cell .name { font-weight: 700; color: var(--v2-navy); font-size: 14px; }
.v2-admin-user-cell .sub { font-size: 12px; color: var(--v2-muted); }
.ps-widget { border-radius: var(--v2-radius) !important; border: 1px solid var(--v2-border) !important; box-shadow: none !important; }
.dashboard_title_area h2 { color: var(--v2-navy); font-weight: 800; }

/* SweetAlert2 — v2 pages include JS only unless @section('style') adds CSS */
.swal2-container { z-index: 10050 !important; }
.swal2-popup {
    border-radius: var(--v2-radius);
    font-family: var(--v2-font);
    padding: 1.5rem 1.25rem 1.25rem;
    width: min(100%, 420px);
}
.swal2-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--v2-navy);
    line-height: 1.3;
}
.swal2-html-container {
    font-size: 15px;
    line-height: 1.6;
    color: var(--v2-text);
    margin: 0.75rem 0 0;
}
.swal2-image {
    margin: 0.5rem auto 0.75rem;
}
.swal2-actions {
    gap: 10px;
    margin-top: 1.25rem !important;
    flex-wrap: wrap;
    justify-content: center;
}
.swal2-styled.swal2-confirm {
    background: var(--v2-blue) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    box-shadow: none !important;
}
.swal2-styled.swal2-cancel {
    background: #e2e8f0 !important;
    color: var(--v2-navy) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    box-shadow: none !important;
}

/* Form stepper (post job, edit job, candidate profile) */
.v2-form-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-form-stepper__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 140px;
    padding: 12px 14px;
    border: 2px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}
.v2-form-stepper__item.is-active {
    border-color: var(--v2-blue);
    background: #eff6ff;
}
.v2-form-stepper__item.is-done {
    border-color: #86efac;
    background: #f0fdf4;
}
.v2-form-stepper__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--v2-border);
    color: var(--v2-navy);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v2-form-stepper__item.is-active .v2-form-stepper__num {
    background: var(--v2-blue);
    color: #fff;
}
.v2-form-stepper__item.is-done .v2-form-stepper__num {
    background: #22c55e;
    color: #fff;
}
.v2-form-stepper__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-navy);
    line-height: 1.3;
}
.v2-form-step-title { font-size: 18px; font-weight: 800; color: var(--v2-navy); margin: 0 0 20px; }
[data-v2-stepper-visible-all] [data-step-panel] {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--v2-border);
}
[data-v2-stepper-visible-all] [data-step-panel="1"] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.v2-form-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--v2-border);
}
.v2-form-step-actions [data-step-action="submit"] { margin-left: auto; }
.v2-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.v2-perk-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 2px solid var(--v2-border);
    border-radius: var(--v2-radius);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s;
    margin: 0;
}
.v2-perk-option:has(input:checked) {
    border-color: var(--v2-blue);
    background: #eff6ff;
}
.v2-perk-option input { display: none; }
.v2-perk-option__icon { font-size: 24px; color: var(--v2-blue); }
.v2-perk-option__label { font-size: 13px; font-weight: 600; color: var(--v2-navy); }
.v2-toggle-cards { display: grid; gap: 12px; margin: 16px 0; }
.v2-toggle-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--v2-border);
    border-radius: var(--v2-radius);
    cursor: pointer;
    margin: 0;
    transition: border-color 0.2s;
}
.v2-toggle-card:has(input:checked) {
    border-color: var(--v2-blue);
    background: #eff6ff;
}
.v2-toggle-card input { flex-shrink: 0; }
.v2-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.v2-chip-option {
    margin: 0;
    cursor: pointer;
}
.v2-chip-option input { display: none; }
.v2-chip-option span {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--v2-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-navy);
    transition: all 0.15s;
}
.v2-chip-option:has(input:checked) span {
    background: var(--v2-blue);
    border-color: var(--v2-blue);
    color: #fff;
}
.v2-sidebar-post-job {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    gap: 8px;
}
.v2-sidebar-points {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--v2-navy);
    margin-bottom: 20px;
}
.v2-sidebar-coin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.v2-sidebar-coin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.v2-sidebar-coin:hover::before {
    left: 100%;
}
.v2-sidebar-coin:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #fff;
}
.v2-coin-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.v2-coin-label {
    letter-spacing: 0.3px;
}
.v2-tab-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.75;
    margin-top: 2px;
}
.v2-candidate-alert {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .v2-form-stepper__item { min-width: 100%; }
    .v2-form-step-actions [data-step-action="submit"] { margin-left: 0; width: 100%; }
}

/* UI mockup polish — candidate table, dropzone, visibility cards */
.v2-stat-grid--employer { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.v2-stat-card--trend .v2-stat-card__top { display: flex; align-items: baseline; gap: 8px; }
.v2-stat-trend { font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 12px; }
.v2-stat-trend.up { background: #dcfce7; color: #166534; }
.v2-stat-trend.down { background: #fee2e2; color: #991b1b; }
.v2-stat-card--ai { background: linear-gradient(135deg, #eff6ff, #fff); border-color: #bfdbfe; }
.v2-candidate-filters--extended { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.v2-filter-check { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--v2-navy); margin: 0; }
.v2-candidate-table__person { display: flex; align-items: center; gap: 12px; }
.v2-candidate-table__person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.v2-candidate-table__person .name { font-weight: 700; color: var(--v2-navy); text-decoration: none; display: block; }
.v2-candidate-table__job { font-weight: 600; color: var(--v2-navy); font-size: 14px; }
.v2-candidate-table__date { font-size: 12px; color: var(--v2-muted); }
.v2-badge-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.v2-skill-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 12px; }
.v2-skill-badge--skill { background: #eff6ff; color: #1e40af; }
.v2-skill-badge--lang { background: #f0fdf4; color: #166534; }
.v2-skill-badge--neutral { background: #f1f5f9; color: #475569; }
.v2-status-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 12px; display: inline-block; }
.v2-status-pill--muted { background: #f1f5f9; color: #64748b; }
.v2-status-pill--success { background: #dcfce7; color: #166534; }
.v2-status-pill--danger { background: #fee2e2; color: #991b1b; }
.v2-status-pill--info { background: #dbeafe; color: #1e40af; }
.v2-candidate-table__actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.v2-action-dropdown { position: relative; display: inline-flex; }
.v2-action-dropdown__toggle { border: 1px solid var(--v2-border); background: #fff; border-radius: 8px; width: 36px; height: 36px; cursor: pointer; }
.v2-action-dropdown__menu { display: none; position: absolute; right: 0; top: calc(100% + 4px); background: #fff; border: 1px solid var(--v2-border); border-radius: 8px; box-shadow: var(--v2-shadow); min-width: 140px; z-index: 20; overflow: hidden; }
.v2-action-dropdown.is-open .v2-action-dropdown__menu { display: block; }
.v2-action-dropdown__menu button { display: block; width: 100%; text-align: left; border: none; background: none; padding: 10px 14px; font-size: 13px; cursor: pointer; }
.v2-action-dropdown__menu button:hover { background: #f8fafc; }
.v2-action-dropdown__menu button.danger { color: #dc2626; }
.v2-candidate-table-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.v2-ai-badge--sm { font-size: 11px; padding: 2px 8px; }
.v2-file-dropzone { border: 2px dashed var(--v2-border); border-radius: var(--v2-radius); padding: 28px 20px; text-align: center; background: #fafbfc; transition: border-color 0.2s, background 0.2s; position: relative; }
.v2-file-dropzone.is-dragover { border-color: var(--v2-blue); background: #eff6ff; }
.v2-file-dropzone__input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.v2-file-dropzone__label { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 0; pointer-events: none; }
.v2-file-dropzone__label i { font-size: 36px; color: var(--v2-blue); }
.v2-file-dropzone__label strong { color: var(--v2-navy); font-size: 15px; }
.v2-file-dropzone__label span { color: var(--v2-muted); font-size: 13px; }
.v2-file-dropzone__preview img { max-height: 120px; border-radius: 12px; margin-top: 12px; }
.v2-cv-upload-zone .v2-file-dropzone {
    padding: 32px 24px;
}
.v2-cv-upload-zone .v2-file-dropzone__label {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}
.v2-cv-upload-zone .v2-file-dropzone__label i {
    font-size: 40px;
}
.v2-cv-upload-zone .v2-file-dropzone__label strong,
.v2-cv-upload-zone .v2-file-dropzone__label span {
    text-align: left;
}
.v2-form-section-title { font-size: 18px; font-weight: 800; color: var(--v2-navy); margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.v2-form-subsection-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--v2-navy);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v2-form-subsection-title i { color: var(--v2-blue); font-size: 18px; }
.v2-visibility-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.v2-visibility-card { display: flex; flex-direction: column; gap: 6px; padding: 18px; border: 2px solid var(--v2-border); border-radius: var(--v2-radius); cursor: pointer; margin: 0; transition: border-color 0.2s; }
.v2-visibility-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-visibility-card input { display: none; }
.v2-visibility-card i { font-size: 24px; color: var(--v2-blue); }
.v2-visibility-card strong { color: var(--v2-navy); font-size: 15px; }
.v2-visibility-card span { color: var(--v2-muted); font-size: 13px; line-height: 1.4; }
.v2-lang-flag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.v2-lang-flag-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px; border: 2px solid var(--v2-border); border-radius: var(--v2-radius); cursor: pointer; margin: 0; text-align: center; }
.v2-lang-flag-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-lang-flag-card input { display: none; }
.v2-lang-flag-card .flag { font-size: 24px; }
.v2-lang-flag-card .label { font-size: 12px; font-weight: 700; color: var(--v2-navy); }
.v2-profile-resume-cta { display: flex; align-items: center; gap: 16px; padding: 16px; background: #f8fafc; border: 1px solid var(--v2-border); border-radius: var(--v2-radius); flex-wrap: wrap; }
.v2-profile-resume-cta i { font-size: 32px; color: var(--v2-blue); }
.v2-radio-cards { display: grid; gap: 10px; }
.v2-radio-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid var(--v2-border); border-radius: var(--v2-radius); cursor: pointer; margin: 0; }
.v2-radio-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-nav-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; background: #dbeafe; color: #1e40af; margin-left: 6px; }
.v2-nav-badge--new { background: #ffedd5; color: #c2410c; }
.v2-sidebar-help { margin-top: 24px; padding: 16px; background: #f8fafc; border: 1px solid var(--v2-border); border-radius: var(--v2-radius); font-size: 13px; }
.v2-sidebar-help i { font-size: 22px; color: var(--v2-blue); margin-bottom: 8px; display: block; }
.v2-sidebar-help p { color: var(--v2-muted); margin: 8px 0; line-height: 1.5; }
.v2-sidebar-help a { font-weight: 700; color: var(--v2-blue); text-decoration: none; }

/* Post job & listing polish */
.v2-job-category-field { row-gap: 8px; }
@media (min-width: 768px) {
    .v2-job-category-field { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
    .v2-job-category-field > [class*="col-"] { width: 100%; max-width: 100%; padding: 0; }
}
.v2-audience-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.v2-audience-card { display: flex; flex-direction: column; gap: 6px; padding: 18px; border: 2px solid var(--v2-border); border-radius: var(--v2-radius); cursor: pointer; margin: 0; text-align: left; transition: border-color 0.2s, background 0.2s; }
.v2-audience-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-audience-card input { display: none; }
.v2-audience-card i { font-size: 28px; color: var(--v2-blue); }
.v2-audience-card strong { color: var(--v2-navy); font-size: 15px; }
.v2-audience-card span { color: var(--v2-muted); font-size: 13px; line-height: 1.4; }
.v2-salary-row { display: grid; grid-template-columns: 90px 1fr auto 1fr minmax(110px, 130px); gap: 10px; align-items: center; }
.v2-salary-sep { color: var(--v2-muted); font-weight: 700; }
.v2-salary-negotiable { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--v2-navy); margin: 0; }
.v2-lang-tag-input .v2-lang-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-lang-tag { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; color: #1e40af; font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 20px; }
.v2-lang-tag button { border: none; background: none; color: inherit; cursor: pointer; font-size: 16px; line-height: 1; padding: 0; }
.v2-cv-upload-status { margin-top: 12px; padding: 12px 14px; border-radius: 8px; font-size: 14px; }
.v2-cv-upload-status.is-loading { background: #eff6ff; color: #1e40af; }
.v2-cv-upload-status.is-success { background: #dcfce7; color: #166534; }
.v2-cv-upload-status.is-error { background: #fee2e2; color: #991b1b; }
@media (max-width: 767px) { .v2-salary-row { grid-template-columns: 1fr; } .v2-salary-sep { display: none; } }

/* AI carousel, candidate profile polish */
.v2-ai-carousel { position: relative; }
.v2-ai-carousel .v2-ai-scroll { scroll-behavior: smooth; }
.v2-ai-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--v2-border);
    background: #fff;
    color: var(--v2-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.v2-ai-carousel__nav--prev { left: 4px; }
.v2-ai-carousel__nav--next { right: 4px; }
.v2-popular-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-popular-skill {
    border: 1px solid var(--v2-border);
    background: #fff;
    color: var(--v2-navy);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
}
.v2-popular-skill:hover { border-color: var(--v2-blue); color: var(--v2-blue); }
.v2-education-records-list { display: flex; flex-direction: column; gap: 16px; }
.v2-education-record-card {
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 16px;
    background: #fafbfc;
}
.v2-education-record-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--v2-navy);
}
.v2-rewards-honors-display {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.v2-rewards-honors-display li {
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-border);
}
.v2-rewards-honors-display li:last-child { border-bottom: none; }
.v2-rewards-honors-display__meta,
.v2-rewards-honors-display__year { color: var(--v2-text-muted); font-size: 14px; }
.v2-rewards-honors-display__desc {
    margin-top: 4px;
    font-size: 14px;
    color: var(--v2-text-muted);
}
.v2-lang-proficiency-row {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) minmax(110px, 0.9fr) auto;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.v2-category-pick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.v2-category-pick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 2px solid var(--v2-border);
    border-radius: var(--v2-radius);
    text-align: center;
    cursor: pointer;
    margin: 0;
    transition: border-color 0.2s, background 0.2s;
}
.v2-category-pick-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-category-pick-card input { display: none; }
.v2-category-pick-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.v2-category-pick-card strong { font-size: 12px; color: var(--v2-navy); line-height: 1.3; }
.v2-salary-slider { width: 100%; accent-color: var(--v2-blue); margin: 8px 0; }
.v2-toggle-card {
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #f8fafc;
    cursor: pointer;
    margin: 0;
}
.v2-toggle-card input { width: 18px; height: 18px; }
.v2-toggle-card span { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--v2-navy); font-size: 14px; }
.v2-nature-pick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.v2-nature-pick-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border: 2px solid var(--v2-border);
    border-radius: var(--v2-radius);
    text-align: center;
    cursor: pointer;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-navy);
    transition: border-color 0.2s, background 0.2s;
}
.v2-nature-pick-card:has(input:checked) { border-color: var(--v2-blue); background: #eff6ff; }
.v2-nature-pick-card input { display: none; }
.v2-vi-content-panel {
    border: 1px dashed #bfdbfe;
    border-radius: var(--v2-radius);
    background: #f8fafc;
    padding: 18px 20px;
}
.v2-vi-content-panel__head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.v2-vi-content-panel__head i { font-size: 24px; color: var(--v2-blue); }
.v2-vi-content-panel__head p { margin: 4px 0 0; font-size: 13px; color: var(--v2-muted); }
@media (max-width: 767px) {
    .v2-ai-carousel__nav { display: none; }
    .v2-lang-proficiency-row { grid-template-columns: 1fr; }
    .v2-category-pick-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-dash-main .v2-form-step-actions { flex-direction: column; }
    .v2-dash-main .v2-form-step-actions .v2-btn { width: 100%; }
    .v2-candidate-table-wrap { overflow-x: auto; }
}
.v2-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    min-height: 160px;
    padding-top: 8px;
}
.v2-bar-chart__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.v2-bar-chart__bar {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, #3b82f6, #1e40af);
    border-radius: 6px 6px 2px 2px;
    min-height: 8px;
}
.v2-bar-chart__value { font-size: 12px; font-weight: 700; color: var(--v2-navy); }
.v2-bar-chart__label { font-size: 11px; color: var(--v2-muted); text-transform: uppercase; }
.v2-candidate-mobile-list { display: flex; flex-direction: column; gap: 12px; }
.v2-candidate-mobile-card {
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 16px;
    background: #fff;
}
.v2-candidate-mobile-card__head {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
}
.v2-candidate-mobile-card__head img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.v2-candidate-mobile-card__head .name {
    font-weight: 700;
    color: var(--v2-navy);
    text-decoration: none;
    display: block;
}
.v2-candidate-mobile-card__job { font-size: 13px; font-weight: 600; color: var(--v2-navy); margin-top: 4px; }
.v2-candidate-mobile-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.v2-filter-toggle {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
    gap: 8px;
}
.v2-filter-lang-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-filter-lang-pill input { display: none; }
.v2-filter-lang-pill span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--v2-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.v2-filter-lang-pill:has(input:checked) span {
    border-color: var(--v2-blue);
    background: #eff6ff;
    color: #1e40af;
}
@media (max-width: 991px) {
    .v2-sidebar--drawer {
        display: none;
        margin-bottom: 16px;
    }
    .v2-sidebar--drawer.is-open { display: block; }
    .v2-candidates-layout { grid-template-columns: 1fr; }
    .v2-listing-main { min-width: 0; }
}

/* Employer dashboard */
.v2-employer-dashboard__title { font-size: 24px; margin: 0; }
/* Daily rewards banner (employer dashboard) */
.v2-drb {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.v2-drb::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1e3a8a;
    z-index: 1;
}
.v2-drb__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 8px 28px;
    align-items: center;
    padding: 28px 32px 28px 36px;
}
.v2-drb__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #fff4eb;
    color: #ea580c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 14px;
}
.v2-drb__badge i {
    font-size: 14px;
}
.v2-drb__title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.15;
    font-weight: 800;
    color: #0f2b5b;
    letter-spacing: -0.02em;
}
.v2-drb__sparkle {
    flex-shrink: 0;
    margin-top: 6px;
    line-height: 0;
}
.v2-drb__desc {
    margin: 0 0 22px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}
.v2-drb__cv-flow {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.v2-drb__cv-steps {
    display: flex;
    align-items: flex-end;
    gap: 0;
}
.v2-drb__cv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.v2-drb__cv-doc {
    width: 38px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-drb__cv-doc svg {
    width: 100%;
    height: 100%;
    display: block;
}
.v2-drb__cv-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.v2-drb__cv-dots {
    width: 28px;
    height: 2px;
    margin: 0 4px 14px;
    background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: center;
}
.v2-drb__cv-equiv {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 18px;
    border-left: 1px solid #e2e8f0;
}
.v2-drb__cv-equiv-label {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.3;
}
.v2-drb__cv-equiv-value {
    font-size: 15px;
    font-weight: 800;
    color: #0f2b5b;
    line-height: 1.3;
}
.v2-drb__cv-equiv-sub {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.3;
}
.v2-drb__action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.v2-drb__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    margin: -12px 0 8px;
    padding: 6px 12px 0;
    background: radial-gradient(ellipse 78% 68% at 50% 68%, #fde68a 0%, #fef3c7 38%, #fff 78%);
}
.v2-drb__gift {
    width: 268px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(234, 88, 12, 0.18));
    pointer-events: none;
    user-select: none;
}
.v2-drb__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 55%, #dc4f0a 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v2-drb__cta.is-claimed,
.v2-drb__cta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.v2-drb__cta:hover {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.38);
}
.v2-drb__cooldown {
    display: none;
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}
.v2-drb__cooldown.is-visible {
    display: block;
}
.v2-drb__cooldown strong {
    color: #0f2b5b;
}
.v2-drb__cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.v2-drb__cta-main i {
    font-size: 20px;
}
.v2-drb__cta-arrow {
    font-size: 22px;
    flex-shrink: 0;
}
.v2-drb__or {
    position: relative;
    margin: 14px 0 12px;
    text-align: center;
}
.v2-drb__or::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e2e8f0;
}
.v2-drb__or span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #94a3b8;
}
.v2-drb__tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}
.v2-drb__tip i {
    color: #2563eb;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}
.v2-drb__tip p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #475569;
}
.v2-drb-modal .modal-dialog {
    max-width: 560px;
}
.v2-drb-modal__content {
    border: none;
    border-radius: 18px;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.24);
}
.v2-drb-modal__close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 32px;
    line-height: 1;
    color: #64748b;
    opacity: 1;
    text-shadow: none;
}
.v2-drb-modal__icon img {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.v2-drb-modal__content h3 {
    margin: 12px 0 8px;
    font-size: 40px;
    font-weight: 800;
    color: #0f2b5b;
}
.v2-drb-modal__reward {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: #f97316;
}
.v2-drb-modal__desc {
    margin: 0 auto 18px;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}
.v2-drb-modal__action {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #fb923c 0%, #f97316 45%, #ea580c 100%);
}
.v2-drb-modal__action:hover {
    filter: brightness(0.97);
}
@media (max-width: 991px) {
    .v2-drb__inner {
        grid-template-columns: 1fr;
        padding: 22px 20px 22px 24px;
        gap: 20px;
    }
    .v2-drb__visual {
        min-height: 130px;
        margin-top: 0;
    }
    .v2-drb__gift {
        width: min(100%, 220px);
    }
    .v2-drb-modal__content h3 {
        font-size: 30px;
    }
    .v2-drb-modal__reward {
        font-size: 18px;
    }
    .v2-drb-modal__desc {
        font-size: 14px;
    }
}
.v2-stat-card--employer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--v2-border);
    padding: 18px 20px;
}
.v2-stat-card--employer:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
}
.v2-stat-card--employer .v2-stat-card__icon {
    font-size: 26px;
    color: var(--v2-blue);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}
.v2-stat-card--employer.v2-stat-card--ai .v2-stat-card__icon { color: #1e40af; }
.v2-stat-card--employer .v2-stat-card__body { min-width: 0; flex: 1; }
.v2-stat-card--employer .num { font-size: 28px; margin-bottom: 0; }
.v2-stat-card--employer .label { text-align: left; margin-top: 4px; }
.v2-stat-card__sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--v2-muted);
    margin-top: 4px;
}
.v2-quick-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.v2-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 96px;
    padding: 16px 12px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
    text-decoration: none;
    color: var(--v2-navy);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.v2-quick-action i { font-size: 28px; color: var(--v2-blue); }
.v2-quick-action:hover {
    border-color: var(--v2-blue);
    background: #f8fafc;
    text-decoration: none;
    color: var(--v2-navy);
    transform: translateY(-1px);
}
.v2-quick-action--primary {
    background: linear-gradient(135deg, #fff7ed, #fff);
    border-color: #fdba74;
}
.v2-quick-action--primary i { color: var(--v2-orange); }
.v2-quick-action--primary:hover {
    border-color: var(--v2-orange);
    background: #fff7ed;
}
.v2-dash-chart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    text-align: center;
    color: var(--v2-muted);
    font-size: 14px;
    gap: 8px;
}
.v2-dash-chart-empty i { font-size: 40px; opacity: 0.35; }
.v2-bar-chart__bar.is-zero {
    background: #e2e8f0;
    min-height: 4px;
}
.v2-emp-app-list { display: flex; flex-direction: column; gap: 8px; }
.v2-emp-app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}
.v2-emp-app-row:hover { border-color: #bfdbfe; background: #f8fafc; }
.v2-emp-app-row.is-locked { background: #fafbfc; }
.v2-emp-app-row__person {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.v2-emp-app-row__person:hover { text-decoration: none; color: inherit; }
.v2-emp-app-row__person img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--v2-border);
    flex-shrink: 0;
}
.v2-emp-app-row__person img.mosaic-image {
    filter: blur(4px);
    opacity: 0.85;
}
.v2-emp-app-row__info { min-width: 0; }
.v2-emp-app-row__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--v2-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v2-emp-app-row__meta-line {
    display: block;
    font-size: 12px;
    color: var(--v2-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.v2-emp-app-row__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.v2-ai-badge--inline {
    position: static;
    background: #eff6ff;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .v2-employer-dashboard__title { font-size: 20px; }
    .v2-stat-grid--employer { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .v2-stat-card--employer { padding: 14px; gap: 10px; }
    .v2-stat-card--employer .v2-stat-card__icon { font-size: 22px; }
    .v2-stat-card--employer .num { font-size: 22px; }
    .v2-stat-card--employer .label { font-size: 12px; }
    .v2-quick-action-grid { grid-template-columns: 1fr 1fr; }
    .v2-quick-action { min-height: 84px; font-size: 12px; }
    .v2-quick-action i { font-size: 24px; }
    .v2-emp-app-row {
        flex-direction: column;
        align-items: stretch;
    }
    .v2-emp-app-row__actions {
        justify-content: flex-start;
        padding-top: 4px;
        border-top: 1px solid var(--v2-border);
    }
}

/* Candidate management filters */
.v2-candidate-filters-form { display: flex; flex-direction: column; gap: 12px; }
.v2-candidate-filters--primary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.v2-candidate-filters--primary .v2-candidate-filters__search,
.v2-candidate-filters--primary select,
.v2-candidate-filters--primary .v2-btn {
    width: 100%;
    min-height: 44px;
}
.v2-candidate-filters--primary .v2-candidate-filters__search {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--v2-text);
    background: #fff;
}
.v2-candidate-filters--primary .v2-candidate-filters__search:focus {
    outline: none;
    border-color: var(--v2-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.v2-candidate-filters--primary select {
    height: auto;
    line-height: 1.4;
    padding: 10px 2rem 10px 12px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}
.v2-candidate-filter-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v2-filter-chip {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}
.v2-filter-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.v2-filter-chip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--v2-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-navy);
    background: #fff;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    user-select: none;
}
.v2-filter-chip input:checked + span {
    border-color: var(--v2-blue);
    background: #eff6ff;
    color: #1e40af;
}
.v2-filter-chip:hover span { border-color: #93c5fd; }
@media (min-width: 768px) {
    .v2-candidate-filters--primary {
        grid-template-columns: minmax(180px, 1.4fr) minmax(160px, 1fr) minmax(140px, 0.8fr) auto;
        align-items: center;
    }
    .v2-candidate-filters--primary .v2-btn { width: auto; white-space: nowrap; }
}
