/* 33-recruit.css — Recruit page styles (enhanced redesign) */

/* Page-specific hero */
.heroRecruit{ padding:58px 0 26px; }
.heroRecruitGrid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:28px; align-items:start; }
.heroRecruit .kicker{
    display:inline-flex; align-items:center; gap:10px;
    color:var(--accent2); font-weight:900; letter-spacing:.08em;
    text-transform:uppercase; font-size:11px;
}
.heroRecruit .dot{
    width:10px; height:10px; border-radius:99px;
    background: var(--accent2);
    animation: subtlePulse 3s ease-in-out infinite;
}
.heroRecruit h1{
    margin:16px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height:1.18; letter-spacing:-.02em;
    font-weight:900;
}
.heroRecruit .lead{ margin:0 0 18px; color:var(--muted); font-size: clamp(15px, 1.35vw, 18px); }
.heroRecruit .ctaRow{ display:flex; gap:12px; flex-wrap:wrap; }

/* Right aside */
.heroRecruitAside{
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  padding:12px 0 0 18px;
  position:relative;
}
.heroRecruitAside::before{
  content:"";
  position:absolute;
  left:0; top:6px; bottom:6px;
  width:2px;
  background:linear-gradient(to bottom, var(--accent2), transparent);
  border-radius:1px;
}
.heroRecruitAside .asideTitle{ font-family:var(--font-display); font-weight:900; margin:2px 0 8px; letter-spacing:.01em; color: rgba(12,18,32,.88); }
.heroRecruitAside .asideNote{ margin:0; color: rgba(12,18,32,.55); line-height:1.9; font-weight:650; }

/* Structure cards (4 links) */
.structGrid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-top:16px; }
.structCard{ padding:16px; transition: all .25s ease; }
.structCard:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,6,23,.09); }
.structCard h3{ margin:0 0 8px; font-size:17px; letter-spacing:-.01em; font-weight:700; }
.structCard p{ margin:0; color:var(--muted); }
.structCard .meta{ margin-top:12px; display:flex; gap:8px; flex-wrap:wrap; }
.structCard .meta .badge{ background: rgba(0,6,71,.03); }

/* Role section */
.roleWrap{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:16px; }
.role{ padding:18px; transition: all .25s ease; }
.role:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,6,23,.09); }
.role h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.01em; font-weight:700; }
.role p{ margin:0 0 12px; color:var(--muted); }
.role .roleLead{ color: rgba(12,18,32,.82); font-weight:800; }
.role ul{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.role li{ margin:8px 0; }

/* MVV summary */
.mvvBox{ padding:18px; }
.mvvBox p{ margin:0 0 12px; color:var(--muted); }
.mvvBox p:last-child{ margin-bottom:0; }
.mvvLink{ display:inline-flex; gap:8px; align-items:center; color: var(--accent2); font-weight:900; }
.mvvLink:hover{ text-decoration:underline; }

/* CTA band */
.ctaBand{
  padding:28px 24px; margin-top:18px;
  background: linear-gradient(135deg, rgba(0,6,71,.04), rgba(0,91,150,.04));
  border: 1px solid rgba(0,6,71,.08);
  position:relative;
  overflow:hidden;
}
.ctaBand::before{
  content:""; position:absolute; top:0; left:0; width:100%; height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
}
.ctaBand h2{ margin:0 0 8px; }
.ctaBand p{ margin:0 0 16px; color:var(--muted); max-width: 80ch; }

/* Responsive */
@media (max-width: 980px){
  .heroRecruitGrid{ grid-template-columns: 1fr; }
  .structGrid{ grid-template-columns: repeat(2, 1fr); }
  .roleWrap{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .structGrid{ grid-template-columns: 1fr; }
}