body{
  margin:0;
  background:var(--mui-bg-subtle,#f7f9fc);
  color:var(--mui-text-primary,#0f172a);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.jobs-page{
  min-height:100vh;
}

.jobs-header{
  background:#fff;
  border-bottom:1px solid #e6ebf3;
}

.jobs-header__inner{
  max-width:1440px;
  margin:0 auto;
  min-height:88px;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.jobs-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:inherit;
  text-decoration:none;
}

.jobs-brand__mark{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--mui-info-600,#4169e1);
  color:#fff;
  font-size:24px;
  font-weight:800;
}

.jobs-brand__copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.jobs-brand__copy strong{
  font-size:20px;
}

.jobs-brand__copy span{
  color:var(--mui-text-secondary,#7b8497);
  font-size:12px;
}

.jobs-nav{
  display:flex;
  align-items:center;
  gap:32px;
}

.jobs-nav a{
  color:inherit;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}

.jobs-header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.jobs-language-box{
  display:flex;
  align-items:center;
}

.jobs-btn{
  min-height:46px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dce4f2;
  border-radius:14px;
  background:#fff;
  color:inherit;
  text-decoration:none;
  font-weight:700;
}

.jobs-btn--primary{
  background:var(--mui-info-600,#4169e1);
  border-color:var(--mui-info-600,#4169e1);
  color:#fff;
}

.jobs-hero{
  max-width:1440px;
  margin:0 auto;
  padding:54px 32px 28px;
}

.jobs-hero__panel{
  padding:46px;
  border:1px solid #e4eaf3;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 45px rgba(31,52,93,.06);
}

.jobs-hero__badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#f4f7ff;
  border:1px solid #dce5ff;
  color:var(--mui-info-700,#315bd5);
  font-weight:700;
  font-size:13px;
  margin-bottom:18px;
}

.jobs-hero h1{
  margin:0;
  font-size:clamp(38px,4vw,58px);
  line-height:1.15;
}

.jobs-hero p{
  margin:18px 0 0;
  max-width:850px;
  color:var(--mui-text-secondary,#687386);
  font-size:18px;
  line-height:1.9;
}

.jobs-main{
  max-width:1440px;
  margin:0 auto;
  padding:18px 32px 60px;
}

.entity-card{
  background:#fff;
  border:1px solid #e4eaf3;
  border-radius:24px;
  padding:28px;
  margin-bottom:22px;
  box-shadow:0 14px 35px rgba(31,52,93,.05);
}

.entity-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:1px solid #edf1f6;
}

.entity-name{
  font-size:24px;
  font-weight:800;
}

.entity-type{
  padding:7px 12px;
  border-radius:999px;
  background:#f5f7fb;
  color:var(--mui-text-secondary,#6c778a);
  font-size:13px;
}

.jobs-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.job-card{
  display:flex;
  flex-direction:column;
  min-height:290px;
  padding:22px;
  border:1px solid #e6ebf3;
  border-radius:20px;
  background:#fbfcfe;
}

.job-title{
  font-size:20px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:16px;
}

.job-meta{
  display:grid;
  gap:10px;
  margin-bottom:22px;
  color:var(--mui-text-secondary,#687386);
  font-size:14px;
}

.job-meta__row{
  display:flex;
  justify-content:space-between;
  gap:14px;
}

.job-meta__label{
  color:var(--mui-text-primary,#1c2434);
  font-weight:700;
}

.job-apply{
  margin-top:auto;
}

.job-apply .jobs-btn{
  width:100%;
  box-sizing:border-box;
}

.jobs-empty{
  padding:48px 24px;
  border:1px dashed #d8dfeb;
  border-radius:22px;
  text-align:center;
  background:#fff;
  color:var(--mui-text-secondary,#687386);
}

.jobs-footer{
  max-width:1440px;
  margin:0 auto;
  padding:20px 32px 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--mui-text-secondary,#7c8799);
  font-size:13px;
}

.jobs-footer__links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.jobs-footer a{
  color:inherit;
  text-decoration:none;
}

html[dir="ltr"] .jobs-header__inner,
html[dir="ltr"] .entity-head,
html[dir="ltr"] .jobs-footer{
  direction:ltr;
}

@media (max-width:1050px){
  .jobs-nav{
    display:none;
  }

  .jobs-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:720px){
  .jobs-header__inner,
  .jobs-hero,
  .jobs-main,
  .jobs-footer{
    padding-left:18px;
    padding-right:18px;
  }

  .jobs-header__inner{
    min-height:76px;
  }

  .jobs-brand__copy span{
    display:none;
  }

  .jobs-header__actions .jobs-btn:first-of-type{
    display:none;
  }

  .jobs-grid{
    grid-template-columns:1fr;
  }

  .entity-head,
  .jobs-footer{
    flex-direction:column;
  }

  .jobs-hero__panel{
    padding:30px 24px;
  }
}
