.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--color-job-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon i { font-size: 24px; color: var(--text-white); }
.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.stat-label { font-size: 14px; color: var(--text-medium); }

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.job-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--color-job-start);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.job-title {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: bold;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job-salary {
    font-size: 18px;
    color: var(--color-error);
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-gray-light);
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-job-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo i { font-size: 18px; color: var(--text-white); }

.company-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job-location {
    font-size: 13px;
    color: var(--text-light);
}

.job-location i { color: var(--color-job-start); margin-right: 4px; }

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    padding: 4px 10px;
    background: var(--bg-job-info);
    color: var(--color-job-start);
    border-radius: 12px;
    font-size: 12px;
}

.tag.urgent { background: var(--bg-job-error); color: var(--color-error); }

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--bg-gray-light);
}

.job-time {
    font-size: 12px;
    color: var(--text-light);
}

.job-time i { margin-right: 4px; }

.job-welfare {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.welfare-item {
    font-size: 12px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 4px;
}

.welfare-item i { color: var(--color-job-end); font-size: 11px; }
