/* ==========================================================================
   Information Centre — landing + doc-list + careers + empty state
   Uses existing KNEST tokens.
   ========================================================================== */

/* ── HERO ──────────────────────────────────────────────────────────────── */
.info-hero { position: relative; background: var(--brand); color: #fff; padding-block: clamp(3rem,8vw,5.5rem) clamp(4rem,11vw,8rem); overflow: hidden; }
.info-hero--sub { padding-block: clamp(2.5rem,6vw,4rem) clamp(3.5rem,9vw,6.5rem); }
.info-hero__inner { position: relative; z-index: 1; max-width: 680px; }
.info-hero__eyebrow { font-size: var(--fs-300); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange-300); margin-block-end: var(--sp-2); }
.info-hero__heading { font-family: 'Archivo Expanded', var(--font-display, sans-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin-block-end: var(--sp-3); }
.info-hero__sub { font-size: clamp(1rem,2vw,1.15rem); color: rgba(255,255,255,.8); line-height: 1.65; max-width: 560px; }
.info-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-2); font-size: var(--fs-300); margin-block-end: var(--sp-3); color: rgba(255,255,255,.6); }
.info-breadcrumb a { color: var(--orange-300); text-decoration: none; font-weight: 600; }
.info-breadcrumb a:hover { text-decoration: underline; }
.info-hero__wave { position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2; pointer-events: none; }

/* ── BODY ──────────────────────────────────────────────────────────────── */
.info-body { background: var(--surface, #f8f9f5); padding-block: clamp(2.5rem,7vw,4.5rem); }
.info-body__narrow { max-width: 760px; }

/* ── LANDING CARDS ─────────────────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--sp-4); }
.info-card { display: flex; flex-direction: column; gap: var(--sp-2); background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-5); text-decoration: none; transition: transform var(--dur-fast,.15s) var(--ease,ease), box-shadow var(--dur-fast,.15s) var(--ease,ease), border-color var(--dur-fast,.15s) var(--ease,ease); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.info-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--r-md, 10px); background: var(--green-050); color: var(--brand); margin-block-end: var(--sp-1); }
.info-card__title { font-weight: 700; font-size: var(--fs-500, 1.05rem); color: var(--ink); line-height: 1.3; }
.info-card:hover .info-card__title { color: var(--brand); }
.info-card__desc { font-size: var(--fs-300); color: var(--text-muted); line-height: 1.55; flex: 1; }
.info-card__count { align-self: flex-start; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); background: var(--green-050); padding: 4px 10px; border-radius: 100px; margin-block-start: var(--sp-1); }
.info-card__count--soon { color: var(--text-muted); background: #f0f0ec; }

/* ── DOC / JOB LIST ────────────────────────────────────────────────────── */
.doc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.doc { display: flex; align-items: center; gap: var(--sp-4); background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-5); text-decoration: none; transition: border-color var(--dur-fast,.15s) var(--ease,ease), box-shadow var(--dur-fast,.15s) var(--ease,ease), transform var(--dur-fast,.15s) var(--ease,ease); }
.doc:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.doc__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-md, 10px); background: var(--green-050); color: var(--brand); }
.doc__text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.doc__title { font-weight: 600; color: var(--ink); line-height: 1.4; }
.doc:hover .doc__title { color: var(--brand); }
.doc__meta { font-size: var(--fs-300); color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.doc__dl { color: var(--text-muted); flex-shrink: 0; transition: color var(--dur-fast,.15s) var(--ease,ease); }
.doc:hover .doc__dl { color: var(--brand); }

/* ── EMPTY STATE ───────────────────────────────────────────────────────── */
.info-empty { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(2.5rem,7vw,4rem) var(--sp-5); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.info-empty__icon { color: var(--text-muted); }
.info-empty__title { font-family: 'Archivo Expanded', var(--font-display, sans-serif); font-weight: 800; font-size: clamp(1.3rem,3vw,1.75rem); color: var(--ink); }
.info-empty__text { font-size: var(--fs-400); color: var(--text-muted); line-height: 1.65; max-width: 440px; }
.info-empty__text a { color: var(--brand); font-weight: 600; }
.info-empty .btn { margin-block-start: var(--sp-2); }

@media (max-width: 575.98px) { .doc { padding: var(--sp-3) var(--sp-4); gap: var(--sp-3); } }
