*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f7fb;
  padding-top:90px;
}

/* NAV */
.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  position:fixed;
  top:0;
  width:100%;
}
.nav-wrap{
  max-width:1100px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{
  font-size:22px;
  font-weight:700;
  color:#2563eb;
}
.nav-links a{
  margin-left:20px;
  font-weight:500;
}
.nav-links .active{color:#2563eb}
.btn-nav{
  background:#2563eb;
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
}

/* CONTENT */
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}
.section-head h2{
  font-size:28px;
}
.view-all{
  color:#2563eb;
  font-weight:600;
}

/* GRID */
.job-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.job-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  position:relative;
}
.job-card.highlight{
  background:#fffaf0;
}

.job-card h3{
  margin-bottom:10px;
}

.meta{
  display:flex;
  gap:10px;
  font-size:13px;
  margin-bottom:14px;
}

.tag{
  padding:4px 8px;
  border-radius:4px;
  font-weight:600;
  font-size:12px;
}
.part{background:#dcfce7;color:#166534}
.full{background:#dcfce7;color:#166534}
.intern{background:#e0f2fe;color:#075985}

.salary{color:#6b7280}

.company{
  display:flex;
  align-items:center;
  gap:12px;
}
.company img{
  width:40px;
  height:40px;
  object-fit:contain;
}
.company p{
  font-size:13px;
  color:#6b7280;
}

.save{
  position:absolute;
  right:16px;
  bottom:16px;
  font-size:20px;
  color:#9ca3af;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .job-grid{grid-template-columns:1fr}
}
.job-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.job-card{
  cursor:pointer;
  transition:0.2s ease;
}

.job-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
