.perk-card { padding: 32px 28px; }
  .job-list { display: flex; flex-direction: column; gap: 14px; }
  .job { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 30px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
  .job:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(4px); }
  .job h3 { font-size: 20px; font-weight: 700; color: var(--forest); margin: 0 0 8px; }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .job-tag { font-size: 13px; font-weight: 600; color: var(--fg-muted); display: inline-flex; align-items: center; gap: 6px; }
  .job-tag i { width: 15px; height: 15px; color: var(--accent); }
  .job-apply { width: 50px; height: 50px; border-radius: 50%; background: var(--sage-tint); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: background .25s, color .25s, transform .25s; flex-shrink: 0; }
  .job:hover .job-apply { background: var(--accent); color: #fff; transform: rotate(-45deg); }
  @media (max-width: 600px){ .job { grid-template-columns: 1fr; } .job-apply { justify-self: start; } }
  .life-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; height: 460px; }
  .life-grid > div { border-radius: var(--r-md); overflow: hidden; position: relative; }
  .life-grid .l-tall { grid-row: span 2; }
  .life-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
  @media (max-width: 820px){ .life-grid { grid-template-columns: 1fr; height: auto; } .life-grid > div { height: 200px; } .life-grid .l-tall { grid-row: auto; } }
