.mc-jobs-page{
    display:grid;
    grid-template-columns:280px 1fr 280px;
    gap:25px;
    max-width:1600px;
    margin:auto;
    padding:20px;
}
.mc-filters,
.mc-hot-jobs{
    position:sticky;
    top:20px;
    align-self:start;
}
.job-card{
    max-width:650px;
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border:1px solid #eef2f7;
    transition:.3s ease;
    font-family:'Segoe UI',sans-serif;
    margin:20px auto;
}

.job-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.job-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.hospital-logo img{
    width:70px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
    border:1px solid #e5e7eb;
}

.job-info{
    flex:1;
}

.job-info h3{
    margin:0;
    font-size:22px;
    color:#1e293b;
    font-weight:700;
}

.hospital-name{
    margin:4px 0 0;
    color:#64748b;
    font-size:15px;
}

.job-type{
    background:#e8f7ee;
    color:#0f9d58;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:15px;
    color:#475569;
    font-size:14px;
}

.job-description{
    color:#64748b;
    line-height:1.7;
    font-size:15px;
    margin:0;
}

.job-footer{
    margin-top:22px;
    display:flex;
    gap:12px;
}

.apply-btn{
    background:#0f766e;
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.apply-btn:hover{
    background:#115e59;
}

.details-btn{
    background:white;
    color:#334155;
    border:1px solid #dbe3ed;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.details-btn:hover{
    background:#f8fafc;
}

@media(max-width:768px){
    .job-header{
        flex-wrap:wrap;
    }

    .job-footer{
        flex-direction:column;
    }

    .apply-btn,
    .details-btn{
        width:100%;
    }
}