/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}

.careers-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 17px rgba(0,0,0,0.18);
    overflow: hidden;
}

.careers-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
}

.careers-header h2 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
}

.careers-header p {
    margin: 8px 0 0;
    opacity: 0.9;
}

.career-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.career-item:hover {
    background-color: #f8fbff;
    transform: translateX(5px);
}

.career-item:last-child {
    border-bottom: none;
}

.career-info {
    flex: 1;
}

.career-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.career-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-date i {
    color: var(--accent);
}

.career-actions {
    display: flex;
    gap: 12px;
}

.btn-details {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-details:hover {
    background: transparent;
    border: solid 1px var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    /* box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); */
}

/* .btn-apply {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-apply:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
} */

.urgent-badge {
    background: #A11A16;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .career-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .career-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {

    .career-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-details, .btn-apply {
        width: 100%;
        justify-content: center;
    }
}