/* Career Page Styles */

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover::before {
    opacity: 1;
}

.job-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.job-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.type-fulltime {
    background-color: #e3f2fd;
    color: #1976d2;
}

.type-contract {
    background-color: #fff3e0;
    color: #f57c00;
}

.type-internship {
    background-color: #e8f5e9;
    color: #388e3c;
}

.job-description {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.job-details {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.detail-item i {
    width: 20px;
    color: var(--secondary-color);
    margin-right: 8px;
}

.apply-btn {
    width: 100%;
    margin-top: 15px;
}
