/* ============================================================
   Careers — a centered manifesto hero (no split layout, no emblem,
   no stat strip), solid-color department tiles instead of white
   bordered cards, and a typography-only principles section with no
   numbering or cards at all. Its own shape again.
   ============================================================ */

/* ---- Hero: centered, single column, flat navy ---- */
.careers-hero { background: var(--color-navy); padding: 152px 0 88px; text-align: center; }
.careers-hero-inner { max-width: 680px; margin: 0 auto; }
.careers-hero-inner .tag { background: rgba(255,255,255,0.14); color: var(--color-white); margin-bottom: 20px; display: inline-block; }
.careers-hero-inner .tag::after { background: var(--color-gold); }
.careers-hero-inner h1 { color: var(--color-white); font-size: clamp(2rem, 4.2vw, 2.9rem); line-height: 1.18; margin-bottom: 18px; }
.careers-hero-inner .lead { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.6; margin: 0 auto 30px; max-width: 560px; }
.careers-hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Department tiles: solid color, not white/bordered ---- */
.dept-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dept-tile {
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dept-tile:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11,31,58,0.18); }
.dept-tile h4 { margin-bottom: 10px; }
.dept-tile p { margin: 0; }
.dept-tile-navy { background: var(--color-navy); }
.dept-tile-navy h4 { color: var(--color-white); }
.dept-tile-navy p { color: rgba(255,255,255,0.72); }
.dept-tile-green { background: var(--color-green-dark); }
.dept-tile-green h4 { color: var(--color-white); }
.dept-tile-green p { color: rgba(255,255,255,0.72); }
.dept-tile-gold { background: var(--color-gold); }
.dept-tile-gold h4 { color: var(--color-navy); }
.dept-tile-gold p { color: rgba(11,31,58,0.72); }

/* ---- Principles: pure typography, no cards, no numbering ---- */
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }
.principle { padding-top: 20px; border-top: 2px solid var(--color-border); }
.principle h4 { margin-bottom: 8px; font-size: 1.15rem; }
.principle p { color: var(--color-text-muted); margin: 0; max-width: 440px; }

/* ---- Open roles: empty-state panel ---- */
.roles-empty-panel {
    background: var(--color-white);
    border: 1px dashed rgba(11,60,137,0.25);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 640px;
}
.roles-empty-panel p { color: var(--color-text-muted); margin-bottom: 22px; }

.roles-list { display: flex; flex-direction: column; gap: 14px; }
.role-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 22px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.role-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(11,60,137,0.18); text-decoration: none; }
.role-row-body h4 { margin-bottom: 2px; }
.role-row-body p { color: var(--color-text-muted); margin: 0; font-size: 0.9rem; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .dept-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .careers-hero { padding: 128px 0 64px; }
    .principles-grid { grid-template-columns: 1fr; gap: 28px; }
    .role-row { flex-wrap: wrap; }
}