/* FONT STABILITY */
@font-face{
  font-family:"Inter";
  src:url("/assets/fonts/inter.woff2") format("woff2");
  font-display:swap;
}

/* BASE */
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.6;
}

/* JOB LIST */
.job-list{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

@media(min-width:768px){
  .job-list{
    grid-template-columns:repeat(2,1fr);
  }
}

/* BADGE */
.badge{
  display:inline-block;
  min-height:20px;
}

/* === FIX CLS: kunci tinggi box === */
.box {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;

  /* INI YANG PENTING */
  min-height: 140px;
  box-sizing: border-box;
}
