/* ─── Bitfinco — careers page styles (loaded after base.css + site.css) ─── */

/* Hero — headline + lede on the left, full-bleed photo on the right; collapses to one column under 880px */
.careers-top{
  display:grid;grid-template-columns:1.05fr 1fr;
  gap:56px;align-items:stretch;
  margin:48px 0 0;
}
.careers-top-text{display:flex;flex-direction:column;justify-content:center}
.form-page .careers-top-text h1{margin:0 0 32px}

.careers-top-photo{
  border:1px solid var(--line);overflow:hidden;
  background:var(--bg-2);min-height:520px;
}
.careers-top-photo img{
  width:100%;height:100%;display:block;
  object-fit:cover;object-position:center 38%;
}

@media (max-width:880px){
  .careers-top{grid-template-columns:1fr;gap:36px}
  .careers-top-photo{min-height:0;aspect-ratio:16/10}
}

/* Lede paragraph beside the careers hero photo */
.careers-top-lede{
  font-family:'Bricolage Grotesque',sans-serif;font-weight:300;
  font-size:18px;line-height:1.65;color:var(--text);
  margin:24px 0 0;max-width:520px;letter-spacing:-.005em;
}
.careers-top-lede em{font-style:italic;color:var(--gold);font-weight:400}

/* Short follow-up block between hero and form */
.careers-culture{
  margin:72px auto 80px;max-width:880px;
}
.careers-culture p{
  font-family:'Bricolage Grotesque',sans-serif;font-weight:400;
  font-size:clamp(20px,2.2vw,26px);line-height:1.45;
  color:var(--ink);margin:0;letter-spacing:-.01em;
}
.careers-culture p em{font-style:italic;color:var(--gold);font-weight:400}
