/* ——— UNSERE OFFENEN STELLEN (Job-Navigator) ———
   Исключение из правила «остров»: карточки списка вакансий
   скруглены со всех сторон, а не только с одной. */
.offers { padding: 24px 56px 80px; }

.jobs {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 36px;
  overflow: hidden;
  margin-bottom: 16px;
}
.job-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 28px 40px;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.job-row:last-child { border-bottom: 0; }
.job-row:hover { background: var(--canvas); }
.job-row .job-num {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #111;
}
.job-row h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.job-row h3 em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.job-row p { margin-top: 6px; font-size: 15px; line-height: 1.5; color: #555; max-width: 56ch; }
.job-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.job-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--accent);
  color: #fff;
  padding: 32px 40px;
  border-radius: 28px;
  text-decoration: none;
}
.job-banner .card-label { color: rgba(255,255,255,.8); }
.job-banner h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.job-banner p { margin-top: 4px; font-size: 15px; color: rgba(255,255,255,.85); }
.job-banner .job-cta { color: #fff; }

@media (max-width: 860px) {
  .offers { padding: 24px 20px 56px; }
  .job-row { grid-template-columns: 1fr; padding: 20px; }
  .job-row .job-cta { margin-top: 4px; }
  .job-banner { padding: 24px; }
}
