/* ===============================
POST A JOB FORM
================================*/

.job-form-container{
max-width:750px;
margin:40px auto;
background:#ffffff;
padding:35px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.job-form-container h2{
text-align:center;
margin-bottom:25px;
font-size:28px;
font-weight:700;
color:#222;
}

.job-form-container label{
display:block;
font-weight:600;
margin-bottom:6px;
color:#333;
}

.job-form-container input,
.job-form-container textarea,
.job-form-container select{
width:100%;
padding:12px 14px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
transition:all .3s ease;
background:#fff;
}

.job-form-container textarea{
min-height:140px;
resize:vertical;
}

.job-form-container input:focus,
.job-form-container textarea:focus,
.job-form-container select:focus{
border-color:#0073aa;
outline:none;
box-shadow:0 0 0 2px rgba(0,115,170,0.15);
}

.job-form-container button{
width:100%;
padding:14px;
background:#0073aa;
color:#fff;
font-size:16px;
font-weight:600;
border:none;
border-radius:6px;
cursor:pointer;
transition:all .3s ease;
}

.job-form-container button:hover{
background:#005f8d;
}

.job-form-container p{
margin-top:15px;
font-weight:600;
}


/* ===============================
JOB GRID
================================*/

.jobs-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:25px;
}


/* ===============================
JOB CARD
================================*/

.job-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:all .3s ease;
display:flex;
flex-direction:column;
}

.job-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.job-thumb img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}


/* ===============================
JOB BODY
================================*/

.job-body{
padding:20px;
}

.job-title{
font-size:20px;
margin-bottom:8px;
}

.job-title a{
text-decoration:none;
color:#222;
}

.job-title a:hover{
color:#0073aa;
}


/* ===============================
JOB META
================================*/

.job-company{
font-weight:600;
color:#333;
margin:6px 0;
}

.job-location{
font-size:14px;
color:#666;
margin-bottom:6px;
}

.job-type{
display:inline-block;
background:#eef3ff;
color:#1e73be;
padding:4px 10px;
border-radius:4px;
font-size:12px;
margin-bottom:8px;
}

.job-lastdate{
font-size:13px;
color:#c0392b;
margin-bottom:10px;
}


/* ===============================
JOB DESCRIPTION
================================*/

.job-excerpt{
font-size:14px;
color:#555;
margin-bottom:14px;
line-height:1.6;
}


/* ===============================
BUTTONS
================================*/

.job-btn{
display:inline-block;
background:#1e73be;
color:#fff;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:600;
margin-right:8px;
transition:all .3s ease;
}

.job-btn:hover{
background:#0f5fa3;
}

.apply-btn{
display:inline-block;
background:#27ae60;
color:#fff;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:all .3s ease;
}

.apply-btn:hover{
background:#1f8c39;
}


/* ===============================
RESPONSIVE
================================*/

@media(max-width:768px){

.jobs-grid{
grid-template-columns:1fr;
}

.job-thumb img{
height:180px;
}

}