/* ========================================
   WORKER PAGES STYLES
   ======================================== */

/* ----------------------------------------
   WORKER DETAIL HERO SECTION
   ---------------------------------------- */
.worker-detail-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #667eea 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.worker-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.worker-detail-hero .breadcrumb {
    margin-bottom: 24px;
}

.worker-detail-hero .breadcrumb__link {
    color: rgba(255, 255, 255, 0.8);
}

.worker-detail-hero .breadcrumb__link:hover {
    color: white;
}

.worker-detail-hero .breadcrumb__sep {
    color: rgba(255, 255, 255, 0.5);
}

.worker-detail-hero .breadcrumb__current {
    color: white;
}

.worker-detail-hero__content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

.worker-detail-hero__avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.worker-detail-hero__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.worker-detail-hero__avatar--placeholder {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 42px;
    backdrop-filter: blur(10px);
}

.worker-detail-hero__verified-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: #52c41a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid white;
}

.worker-detail-hero__info {
    flex: 1;
}

.worker-detail-hero__name {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0 0 12px;
}

.worker-detail-hero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.worker-detail-hero__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

/* Worker Badge */
.worker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.worker-badge--male {
    background: rgba(22, 119, 255, 0.3);
}

.worker-badge--female {
    background: rgba(235, 47, 150, 0.3);
}

.worker-badge--verified {
    background: rgba(82, 196, 26, 0.3);
}

/* ----------------------------------------
   WORKER DETAIL CARDS
   ---------------------------------------- */
.worker-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.worker-detail-card:last-child {
    margin-bottom: 0;
}

.worker-detail-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--color-border-light);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-text);
}

.worker-detail-card__header svg {
    color: var(--color-primary);
}

.worker-detail-card__body {
    padding: 24px;
}

.worker-detail-card__body--flush {
    padding: 0;
}

.worker-intro {
    line-height: 1.8;
    white-space: pre-line;
    color: var(--color-text-secondary);
}

/* Skill Tags */
.skill-section {
    margin-bottom: 20px;
}

.skill-section:last-child {
    margin-bottom: 0;
}

.skill-section__label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0 0 10px;
}

.skill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.skill-tag--blue {
    background: #e6f4ff;
    color: var(--color-primary);
}

.skill-tag--green {
    background: #f6ffed;
    color: #52c41a;
}

/* Application Item */
.application-item {
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.2s;
}

.application-item:hover {
    background: var(--color-bg-subtle);
}

.application-item:last-child {
    border-bottom: none;
}

.application-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.application-item__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.application-item__title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.application-item__title a:hover {
    color: var(--color-primary);
}

.application-item__meta {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Status Tags */
.status-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-tag--success {
    background: #f6ffed;
    color: #52c41a;
}

.status-tag--error {
    background: #fff2f0;
    color: #cf1322;
}

.status-tag--processing {
    background: #e6f4ff;
    color: var(--color-primary);
}

.status-tag--default {
    background: #fafafa;
    color: var(--color-text-muted);
}

/* ----------------------------------------
   WORKER DETAIL SIDEBAR
   ---------------------------------------- */
.worker-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sidebar-card--highlight {
    border: 2px solid var(--color-primary);
}

.sidebar-card--gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
}

.sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--color-border-light);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}

.sidebar-card__body {
    padding: 20px;
}

.sidebar-card__body--flush {
    padding: 0 20px;
}

/* Contact Card */
.contact-card {
    text-align: center;
}

.contact-card__icon {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-card__title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
}

.contact-card__phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 4px;
}

.contact-card__email {
    color: var(--color-text-muted);
    margin: 0 0 16px;
}

.contact-card__hint {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0 0 16px;
}

/* Info List */
.info-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.info-list-item:last-child {
    border-bottom: none;
}

.info-list-item__label {
    color: var(--color-text-muted);
    font-size: 14px;
}

.info-list-item__value {
    font-weight: 600;
    color: var(--color-text);
}

.info-list-item__value--primary {
    color: var(--color-primary);
}

.info-list-item__value--success {
    color: #52c41a;
}

.info-list-item__progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Progress Bar */
.progress-bar {
    width: 80px;
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #52c41a);
    border-radius: 4px;
}

/* Member Card */
.member-card {
    text-align: center;
}

.member-card__icon {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.member-card__label {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0 0 4px;
}

.member-card__date {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background: #0958d9;
    transform: translateY(-1px);
}

.btn-zalo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0068ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 8px;
}

.btn-zalo:hover {
    background: #0055d4;
}

/* Worker Detail Layout */
.worker-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

/* Responsive for Worker Detail */
@media (max-width: 1024px) {
    .worker-detail-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 900px) {
    .worker-detail-layout {
        grid-template-columns: 1fr;
    }

    .worker-detail-layout aside {
        order: -1;
    }
}

@media (max-width: 768px) {
    .worker-detail-hero {
        padding: 32px 0;
    }

    .worker-detail-hero__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .worker-detail-hero__badges {
        justify-content: center;
    }

    .worker-detail-hero__location {
        justify-content: center;
    }
}

/* ----------------------------------------
   WORKER LIST HERO SECTION
   ---------------------------------------- */
.worker-hero {
    background: linear-gradient(to bottom, #f0fdfa 0%, #ffffff 100%);
    padding: 48px 0 64px;
    position: relative;
}

.worker-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.worker-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 12px;
}

.worker-hero__desc {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Hero Search */
.worker-hero__search {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.worker-hero__search .search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    transition: all 0.3s ease;
}

.worker-hero__search .search-input-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: none;
}

.worker-hero__search .search-input-wrapper svg {
    position: static;
    color: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    margin-right: 12px;
    z-index: 1;
}

.worker-hero__search .search-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    color: rgba(0, 0, 0, 0.85);
}

.worker-hero__search .search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* Hero Stats */
.worker-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
}

.worker-hero__stats .stat-item {
    text-align: center;
}

.worker-hero__stats .stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.worker-hero__stats .stat-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.worker-hero__stats .stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------
   WORKER LAYOUT (Sidebar + Results)
   ---------------------------------------- */
.worker-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding-top: 32px;
}

@media (max-width: 1024px) {
    .worker-layout {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------
   FILTERS SIDEBAR
   ---------------------------------------- */
.worker-filters {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.worker-filters .filter-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.worker-filters .filter-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.85);
}

.worker-filters .filter-card__header svg {
    color: var(--color-primary);
}

.worker-filters .filter-reset {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.worker-filters .filter-reset:hover {
    text-decoration: underline;
}

.worker-filters .filter-form {
    padding: 16px 24px 24px;
}

.worker-filters .filter-group {
    margin-bottom: 24px;
}

.worker-filters .filter-group:last-child {
    margin-bottom: 0;
}

.worker-filters .filter-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.worker-filters .filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.worker-filters .filter-label svg {
    color: var(--color-primary);
    opacity: 0.7;
}

.worker-filters .filter-clear {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: var(--color-accent);
    cursor: pointer;
    padding: 0;
}

.worker-filters .filter-clear:hover {
    text-decoration: underline;
}

.worker-filters .filter-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 200px;
    overflow-y: auto;
}

.worker-filters .filter-options--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    max-height: none;
}

.worker-filters .filter-options--scroll {
    max-height: 240px;
    overflow-y: auto;
}

.worker-filters .filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.worker-filters .filter-option:hover {
    border-color: var(--color-primary-light);
    background: rgba(15, 118, 110, 0.02);
}

.worker-filters .filter-option.active {
    border-color: var(--color-primary);
    background: rgba(15, 118, 110, 0.05);
}

.worker-filters .filter-option input {
    display: none;
}

.worker-filters .filter-option__text {
    flex: 1;
    font-family: var(--font-body);
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
    .worker-filters {
        position: static;
    }
}

/* ----------------------------------------
   RESULTS SECTION
   ---------------------------------------- */
.worker-results {
    min-width: 0;
}

.worker-results .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.worker-results .results-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.worker-results .results-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    margin: 0;
}

.worker-results .results-count {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

/* Active Filters */
.worker-results .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.worker-results .active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-primary);
}

.worker-results .active-filter a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.worker-results .active-filter a:hover {
    background: var(--color-primary-dark);
}

/* ----------------------------------------
   WORKER GRID
   ---------------------------------------- */
.worker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Worker Card */
.worker-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.worker-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-light);
}

.worker-card__header {
    position: relative;
    padding: 24px 24px 0;
    text-align: center;
}

.worker-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.worker-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.worker-card__verified {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    color: white;
    border-radius: 50%;
}

.worker-card__body {
    padding: 16px 24px;
    flex: 1;
}

.worker-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px;
    text-align: center;
}

.worker-card__name a {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.worker-card__name a:hover {
    color: var(--color-primary);
}

.worker-card__tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.worker-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
}

.worker-tag--male {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.worker-tag--female {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.worker-tag--age {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
}

.worker-card__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.worker-card__location svg {
    color: var(--color-primary);
    opacity: 0.7;
}

.worker-card__intro {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    margin: 0 0 12px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.worker-card__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.worker-card__meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.worker-card__meta .meta-item svg {
    color: var(--color-primary);
    opacity: 0.6;
}

.worker-card__footer {
    padding: 16px 24px 24px;
    margin-top: auto;
}

.worker-card__footer .ant-btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ----------------------------------------
   PAGINATION
   ---------------------------------------- */
.worker-results .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.worker-results .pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.worker-results .pagination-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.worker-results .pagination-pages {
    display: flex;
    gap: 4px;
}

.worker-results .pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.worker-results .pagination-page:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.worker-results .pagination-page.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.worker-results .pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: rgba(0, 0, 0, 0.4);
}

/* ----------------------------------------
   EMPTY STATE
   ---------------------------------------- */
.worker-grid .empty-state {
    grid-column: 1 / -1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 64px 24px;
    text-align: center;
}

.worker-grid .empty-state__icon {
    margin-bottom: 24px;
}

.worker-grid .empty-state__icon svg {
    stroke: var(--color-primary);
    opacity: 0.3;
}

.worker-grid .empty-state__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
}

.worker-grid .empty-state__desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
}

/* ----------------------------------------
   MOBILE FILTER TOGGLE
   ---------------------------------------- */
@media (max-width: 1024px) {
    .worker-filters {
        display: none;
    }

    .worker-filters.show {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        overflow-y: auto;
    }

    .worker-filters.show .filter-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .worker-hero__search {
        flex-direction: column;
    }

    .worker-hero__stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 32px;
    }

    .worker-hero__stats .stat-divider {
        width: 48px;
        height: 1px;
    }

    .worker-grid {
        grid-template-columns: 1fr;
    }
}
