/* ============================================================================= Job·Ka — Groupe KA Auteur : Simon-Pierre Boucher Contact : contact@spboucher.ai Fichier : frontend/src/styles.css Rôle : CSS local Job·Ka — s'appuie sur le design system commun Groupe KA (ka/tokens.css, importé AVANT ce fichier dans main.tsx). Refonte « éditoriale premium » 2026-08-25 : moins de boîtes bordées, plus de filets fins et de hiérarchie typographique. Hero avec recherche centrale, filtres en rail discret + panneau bas mobile, offres en rangées éditoriales (salaire en exergue). Le socle (body, grain, .container, .btn, .card, .chip, ka-footer…) vit dans tokens.css. Créé : 2026-08-17 Modifié : 2026-08-25 ============================================================================= */ :root { /* ---- ACCENT Job·Ka (cyan officiel — voir ka/ecosystem.json) ---- */ --accent: #0c8599; --accent-soft: #def0f4; --accent-deep: #095c6b; --on-accent: #ffffff; --lime: var(--accent); --lime-soft: var(--accent-soft); /* ---- alias hérités du CSS v1 ---- */ --brand: var(--ink); --border: var(--line); --green-soft: #e7f2ec; --radius: var(--r-card); --shadow: var(--shadow-flat), 0 4px 14px rgb(20 24 20 / 6%); } a { color: var(--green); text-decoration: none; } a:hover { text-decoration: underline; } /* --- en-tête ---------------------------------------------------------------- */ header.site { background: var(--brand); color: #fff; position: sticky; top: 0; z-index: var(--z-header, 500); } /* menu mobile ouvert : le header (et son panneau) passe au-dessus du backdrop */ header.site.menu-open { z-index: var(--z-modal, 900); } header.site .container { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 14px; min-height: 58px; padding-top: 8px; padding-bottom: 8px; } .logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; letter-spacing: -0.3px; white-space: nowrap; position: relative; } /* extension tactile : le logo (63×31) atteint >=44px de cible sans changer le rendu */ .logo::after { content: ""; position: absolute; inset: -8px; } .logo em { color: var(--accent-soft); font-style: normal; } header.site .gk-badge { flex-shrink: 0; } nav.main { display: flex; gap: 4px; margin-left: auto; } nav.main a { /* pilules font-display 700 (standard header/menu KA 2026-08-22), thème encre conservé */ color: #d7ddda; padding: 7px 12px; border-radius: 999px; font-weight: 700; font-family: var(--font-display, "Space Grotesk", system-ui, sans-serif); font-size: 13.5px; letter-spacing: -0.01em; white-space: nowrap; } nav.main a:hover { color: #fff; background: rgb(255 255 255 / 8%); text-decoration: none; } nav.main a.active { color: var(--accent-soft); background: rgb(255 255 255 / 10%); } /* connexion KA ID (droite du header) */ .auth-box { display: flex; align-items: center; gap: 10px; flex-shrink: 0; } .btn-ka { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 4px 13px; border: 1.5px solid rgb(245 243 238 / 45%); border-radius: var(--r-pill); background: transparent; color: #f5f3ee; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; white-space: nowrap; text-decoration: none; } .btn-ka b { font-family: var(--font-display); font-size: 12px; text-transform: none; letter-spacing: -0.02em; background: var(--accent); color: var(--on-accent); border-radius: 5px; padding: 0 6px 1px; } .btn-ka:hover { border-color: var(--accent-soft); text-decoration: none; } .auth-user { display: inline-flex; align-items: center; gap: 8px; color: #d7ddda; font-size: 13px; white-space: nowrap; } .auth-user img { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgb(245 243 238 / 45%); } .auth-user button { border: 0; background: none; color: #9aa5a0; font: inherit; font-size: 12px; cursor: pointer; padding: 6px 0; min-height: 34px; } .auth-user button:hover { color: #fff; text-decoration: underline; } /* bascule mobile du header : sous 980 px la nav passe sur sa propre rangée */ @media (max-width: 979px) { nav.main { order: 10; flex-basis: 100%; margin-left: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; } nav.main::-webkit-scrollbar { display: none; } nav.main a { padding: 7px 9px; font-size: 13.5px; } .auth-box { margin-left: auto; } } @media (max-width: 560px) { header.site .gk-badge { padding: 2px 8px 3px; font-size: 9px; } header.site .gk-badge b { font-size: 11px; } .auth-user span.name { display: none; } } /* --- menu mobile (hamburger) ------------------------------------------------- Sous 700 px, panneau PLEIN ÉCRAN fixed inset:0 (KA Nav v2, 2026-08-25), backdrop fixe rendu HORS du header, verrou de scroll géré côté React. */ .menu-btn { display: none; width: 44px; height: 44px; margin-left: 4px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0; background: none; border: 0; border-radius: 8px; cursor: pointer; padding: 0; } .menu-btn:hover { background: rgb(255 255 255 / 8%); } .menu-btn span { display: block; width: 22px; height: 2px; background: #f5f3ee; border-radius: 2px; transition: transform 0.2s ease, opacity 0.15s ease; } .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; } .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .mobile-menu { display: none; position: fixed; inset: 0; background: var(--brand); padding: calc(var(--header-h, 58px) + 14px) 22px calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; flex-direction: column; counter-reset: mnav; } .mobile-menu.open { animation: mm-in 0.16s ease; } @keyframes mm-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } } /* burger masqué à l'ouverture : la fermeture passe par le ✕ fixe du panneau */ header.site.menu-open .menu-btn { visibility: hidden; } .mm-close { position: fixed; top: 10px; right: 14px; z-index: 2; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1.5px solid #f5f3ee; border-radius: 999px; background: #f5f3ee; color: var(--brand); font-size: 17px; font-weight: 700; line-height: 1; cursor: pointer; padding: 0; } .mobile-menu a { display: flex; align-items: baseline; gap: 13px; padding: 16px 2px; color: #f5f3ee; font-family: var(--font-display, "Space Grotesk", system-ui, sans-serif); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; line-height: 1.1; border-bottom: 1.5px dashed rgb(255 255 255 / 18%); } .mobile-menu a::before { counter-increment: mnav; content: "0" counter(mnav); font-family: var(--font-mono, ui-monospace, monospace); font-size: 11px; font-weight: 700; color: var(--accent-soft); } /* entrée en cascade des liens : le panneau prend vie sans devenir lent */ .mobile-menu.open a { animation: mm-link 0.32s cubic-bezier(0.22, 0.7, 0.3, 1) both; } .mobile-menu.open a:nth-child(2) { animation-delay: 0.03s; } .mobile-menu.open a:nth-child(3) { animation-delay: 0.06s; } .mobile-menu.open a:nth-child(4) { animation-delay: 0.09s; } .mobile-menu.open a:nth-child(5) { animation-delay: 0.12s; } .mobile-menu.open a:nth-child(6) { animation-delay: 0.15s; } .mobile-menu.open a:nth-child(7) { animation-delay: 0.18s; } .mobile-menu.open a:nth-child(8) { animation-delay: 0.21s; } @keyframes mm-link { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } } .mobile-menu a:last-child { border-bottom: 0; } .mobile-menu a:hover { color: #fff; text-decoration: none; } .mobile-menu a.active { color: var(--accent-soft); } .mm-backdrop { position: fixed; inset: 0; background: rgb(16 18 16 / 45%); z-index: var(--z-overlay, 800); } @media (max-width: 700px) { nav.main { display: none; } .menu-btn { display: flex; } .mobile-menu.open { display: flex; } } /* --- héros éditorial (encre + halo cyan, recherche centrale) ------------------ */ .hero { background: radial-gradient(680px 340px at 85% -60px, rgb(12 133 153 / 28%), transparent 70%), var(--brand); color: #fff; padding: 54px 0 46px; } .hero .kicker { color: var(--accent-soft); } .hero .kicker::before { display: none; } .hero .kicker .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgb(12 133 153 / 55%); animation: pulse 2.2s ease-out infinite; } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgb(12 133 153 / 55%); } 70% { box-shadow: 0 0 0 9px rgb(12 133 153 / 0%); } 100% { box-shadow: 0 0 0 0 rgb(12 133 153 / 0%); } } .hero h1 { margin: 14px 0 10px; font-size: clamp(32px, 3.4vw + 16px, 54px); font-weight: 700; letter-spacing: -0.035em; color: #fff; line-height: 1.04; } .hero h1 em { /* surligné d'accent incliné — signature du groupe (.hl), déclinaison encre */ display: inline-block; font-style: normal; background: var(--accent); color: var(--on-accent); border-radius: 10px; padding: 0 14px 3px; transform: rotate(-1deg); } .hero-lede { margin: 0 0 26px; color: #b9c2be; max-width: 560px; font-size: 15.5px; } /* barre de recherche centrale — LA porte d'entrée du site */ .searchbar { display: flex; align-items: center; gap: 4px; max-width: 720px; min-height: 62px; padding: 6px 6px 6px 18px; background: var(--surface); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 8px 8px 0 rgb(12 133 153 / 32%); transition: box-shadow 0.18s, transform 0.18s; } .searchbar:focus-within { box-shadow: 8px 8px 0 var(--accent); transform: translate(-1px, -1px); } .searchbar svg { width: 21px; height: 21px; flex-shrink: 0; fill: none; stroke: var(--ink-3); stroke-width: 2.2; stroke-linecap: round; } .searchbar input { flex: 1; min-width: 0; border: 0; background: none; padding: 10px 12px; font: 500 17px/1.3 var(--font-body); color: var(--ink); } .searchbar input:focus { outline: none; } .searchbar input::placeholder { color: var(--ink-3); } .searchbar input::-webkit-search-cancel-button { -webkit-appearance: none; } .searchbar button { flex-shrink: 0; min-height: 48px; padding: 0 22px; border: 0; border-radius: 9px; cursor: pointer; background: var(--accent); color: var(--on-accent); font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; transition: background 0.15s; } .searchbar button:hover { background: var(--accent-deep); } /* chiffres du marché en direct sous la recherche */ .hero-stats { display: flex; flex-wrap: wrap; gap: 6px 26px; margin: 22px 0 0; font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #8f9a95; } .hero-stats b { color: var(--accent-soft); font-weight: 700; font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: 0; } .hero-stats .hs-sync { opacity: 0.65; } @media (max-width: 700px) { .hero { padding: 40px 0 36px; } .searchbar { min-height: 56px; padding-left: 14px; border-radius: 12px; } .searchbar button { padding: 0 16px; font-size: 14px; min-height: 44px; } .hero-stats { gap: 4px 18px; } } /* --- zone de filtres sous le héros ------------------------------------------- Desktop : rail de sélecteurs discrets (pas de formulaire lourd). Mobile : bouton « Filtres » → panneau bas + bascule salaire. */ .filter-zone { background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 0 14px; } .filter-rail { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .fr-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-right: 4px; } .f-select { appearance: none; -webkit-appearance: none; max-width: 168px; height: 38px; padding: 0 28px 0 13px; border: 1px solid var(--line-strong); border-radius: var(--r-pill); background: transparent no-repeat right 11px center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%234d5551' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); font: 600 13px/1 var(--font-body); color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer; transition: border-color 0.12s, background-color 0.12s; } .f-select:hover { border-color: var(--ink); color: var(--ink); } .f-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgb(12 133 153 / 15%); } .f-select[data-on="1"] { background-color: var(--ink); border-color: var(--ink); color: #f5f3ee; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23def0f4' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); } .f-toggle { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px; cursor: pointer; user-select: none; border: 1px solid var(--line-strong); border-radius: var(--r-pill); font: 600 13px/1 var(--font-body); color: var(--ink-2); white-space: nowrap; transition: border-color 0.12s, background-color 0.12s; } .f-toggle:hover { border-color: var(--ink); color: var(--ink); } .f-toggle input { accent-color: var(--accent); width: 15px; height: 15px; margin: 0; } .f-toggle[data-on="1"] { background: var(--accent); border-color: var(--accent-deep); color: var(--on-accent); } .f-toggle[data-on="1"] input { accent-color: #fff; } /* mobile : bouton d'ouverture du panneau */ .filter-mobile { display: none; gap: 8px; align-items: center; } .fm-btn { display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 16px; cursor: pointer; border: 1.5px solid var(--ink); border-radius: var(--r-pill); background: var(--surface); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 14px; } .fm-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; } .fm-btn svg circle { fill: var(--surface); } .fm-btn b { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: var(--on-accent); font-family: var(--font-mono); font-size: 11px; } @media (max-width: 899px) { .filter-rail { display: none; } .filter-mobile { display: flex; } .filter-mobile .f-toggle { height: 44px; } } /* puces des filtres actifs — retrait en un geste */ .filter-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 11px; } .fchip { display: inline-flex; align-items: center; gap: 8px; min-height: 30px; padding: 3px 11px; cursor: pointer; border: 1px solid var(--accent); border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.03em; } .fchip span { font-size: 10px; opacity: 0.7; } .fchip:hover { background: var(--accent); color: var(--on-accent); } .fchip:hover span { opacity: 1; } .fchip-clear { border: 0; background: none; cursor: pointer; min-height: 30px; padding: 0 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; } .fchip-clear:hover { color: var(--ink); } /* --- panneau bas de filtres (mobile) ------------------------------------------ */ .fsheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-modal, 900); display: flex; flex-direction: column; max-height: 88vh; max-height: 88dvh; background: var(--surface); border-top: 2px solid var(--ink); border-radius: 18px 18px 0 0; transform: translateY(103%); visibility: hidden; transition: transform 0.28s cubic-bezier(0.32, 0.72, 0.28, 1), visibility 0.28s; } .fsheet.open { transform: none; visibility: visible; } .fs-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 12px 13px 20px; border-bottom: 1px solid var(--line); } .fs-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 999px; background: none; color: var(--ink); font-size: 15px; font-weight: 700; cursor: pointer; padding: 0; } .fs-body { padding: 16px 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; display: grid; gap: 10px; } .fs-body .f-select { max-width: none; width: 100%; height: 48px; border-radius: 10px; font-size: 16px; background-color: var(--surface-2); border-color: var(--line-strong); } .fs-body .f-select[data-on="1"] { background-color: var(--ink); border-color: var(--ink); } .fs-body .f-toggle { height: 48px; border-radius: 10px; font-size: 16px; justify-content: flex-start; } .fs-foot { display: flex; gap: 10px; padding: 13px 20px calc(15px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); } .fs-foot .btn { flex: 1; } @media (min-width: 900px) { .fsheet { display: none; } } /* --- tête de résultats --------------------------------------------------------- */ .results-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; margin: 26px 0 10px; } .results-count { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 1.4vw + 13px, 24px); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; } .sort-quiet { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); } .sort-quiet select { border: 0; background: none; cursor: pointer; padding: 8px 0; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; } .sort-quiet select:focus { outline: none; color: var(--accent-deep); } /* --- liste d'offres : rangées éditoriales (fini les cartes bordées) ------------- */ .job-list { margin: 0 0 30px; display: flex; flex-direction: column; gap: 10px; } .job-row { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; grid-template-areas: "main side fav"; gap: 2px 26px; align-items: start; padding: 18px 16px 18px 18px; background: var(--surface); border: 1px solid rgba(20, 24, 20, 0.1); border-radius: 14px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); overflow: hidden; color: inherit; text-decoration: none; transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; } .job-row .jr-main { grid-area: main; } .job-row .jr-side { grid-area: side; } .job-row .fav-btn { grid-area: fav; } .job-row::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform 0.16s ease; } .job-row:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08); border-color: rgba(20, 24, 20, 0.18); text-decoration: none; } .job-row:hover::before { transform: scaleY(1); } .jr-main { min-width: 0; } .jr-title { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.22; color: var(--ink); } .job-row:hover .jr-title { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; } .jr-new { display: inline-block; vertical-align: 2px; margin-right: 9px; padding: 2px 8px 3px; border-radius: 5px; background: var(--accent); color: var(--on-accent); font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; } .jr-org { margin: 5px 0 0; font-size: 14px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; } .jr-org .employer { font-weight: 600; color: var(--ink); } .jr-city { color: var(--ink-3); } .jr-city::before { content: "· "; } .jr-direct { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-deep); } .jr-direct::before { content: "✓ "; } .jr-tags { margin: 7px 0 0; display: flex; flex-wrap: wrap; gap: 3px 7px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); } .jr-tags span:not(:last-child)::after { content: " ·"; color: var(--line-strong); } .jr-side { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; padding-top: 2px; } .jr-salary { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; color: var(--accent-deep); font-variant-numeric: tabular-nums; white-space: nowrap; } .jr-yearly { font-size: 12px; color: var(--ink-3); white-space: nowrap; } .jr-nosalary { font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); padding-top: 4px; } .jr-when { margin-top: 4px; font-size: 12px; color: var(--ink-3); white-space: nowrap; } @media (max-width: 700px) { .job-row { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "main fav" "side side"; padding: 17px 6px 17px 14px; } .jr-side { grid-column: 1 / -1; flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 3px 14px; text-align: left; margin-top: 9px; padding-top: 0; } .jr-when { margin: 0 0 0 auto; } .jr-salary { font-size: 15.5px; } } /* cœur ♥ favoris — discret dans la rangée, plein quand actif */ .fav-btn { width: 38px; height: 38px; padding: 0; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; background: transparent; color: var(--ink-2); transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease; } .fav-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; } .fav-btn:hover { transform: scale(1.08); background: var(--accent-soft); border-color: var(--accent); color: var(--accent-deep); } .fav-btn.on { background: var(--accent); border-color: var(--accent-deep); color: var(--on-accent); } .fav-btn.on svg { fill: currentColor; } /* fiche d'offre : le cœur à droite du titre */ .fav-btn.big { width: 44px; height: 44px; } .fav-btn.big svg { width: 21px; height: 21px; } /* étiquettes de la fiche : mono, calmes, filets fins */ .badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--surface-2); color: var(--ink-2); border: 1px solid var(--line); } .badge.salary { background: var(--green-soft); color: var(--green); border-color: var(--green); } .badge.mode { background: var(--accent-soft); color: var(--accent-deep); border-color: var(--line); } .badge.direct { background: transparent; border-color: var(--accent); color: var(--accent-deep); } .badge.new { background: var(--accent); color: var(--on-accent); border-color: var(--accent-deep); } .badge.seniority { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); } .badge.salary .approx { font-style: normal; font-weight: 600; opacity: 0.75; margin-left: 5px; text-transform: none; letter-spacing: 0; } /* --- fiche d'offre : mise en page éditoriale ouverte (fini la grosse boîte) ----- */ .sheet { padding: 34px 0 10px; margin: 0 0 20px; } .sheet h1 { margin: 0; font-size: clamp(26px, 2.6vw + 14px, 40px); letter-spacing: -0.03em; line-height: 1.08; } .sheet .facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 8px; } .sheet .description { white-space: pre-line; color: var(--ink-2); max-width: 760px; font-size: 15.5px; line-height: 1.62; } .sheet .btn-apply { min-height: 52px; padding: 12px 26px; font-size: 15.5px; background: var(--accent); color: var(--on-accent); border-color: var(--accent-deep); } .sheet .btn-apply:hover { background: var(--accent-deep); } /* métriques « En un coup d'œil » : blocs ouverts à filet supérieur (éditorial) */ .metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 18px 26px; margin: 14px 0 26px; } .metric { border-top: 2px solid var(--ink); padding: 11px 2px 0; } .metric .m-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; } .metric .m-label { color: var(--ink-3); font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; } .metric .m-sub { color: var(--ink-3); font-size: 12px; margin-top: 6px; line-height: 1.45; } .delta-up { color: var(--green); } .delta-down { color: #a05a22; } /* position du salaire dans la fenêtre interquartile de sa catégorie */ .market-bar { position: relative; height: 12px; margin: 2px 0 7px; } .market-bar .mb-track { position: absolute; inset: 4px 0; background: rgb(20 24 20 / 8%); border-radius: 4px; } .market-bar .mb-window { position: absolute; top: 4px; bottom: 4px; background: var(--accent-soft); border: 1px solid var(--accent); border-radius: 4px; } .market-bar .mb-marker { position: absolute; top: 0; bottom: 0; width: 3px; margin-left: -1.5px; background: var(--ink); border-radius: 2px; } /* historique du salaire affiché */ .salary-history { margin: 8px 0 0; padding-left: 18px; } .salary-history li { margin: 3px 0; font-size: 14px; } /* --- tuiles de statistiques : blocs ouverts à filet supérieur -------------------- */ .tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px 26px; margin: 22px 0; } .tile { border-top: 2px solid var(--ink); padding: 11px 2px 0; position: relative; } .tile::before { content: ""; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--accent); } .tile .value { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.5px; font-variant-numeric: tabular-nums; } .tile .label { color: var(--ink-3); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; } /* --- barres horizontales (magnitude, teinte unique) --------------------------------- */ .bars { display: grid; gap: 8px; margin: 10px 0 26px; } .bar-row { display: grid; grid-template-columns: 190px 1fr 52px; align-items: center; gap: 10px; } .bar-row .name { font-size: 13.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .bar-row .track { background: rgb(20 24 20 / 6%); border-radius: 4px; height: 14px; } .bar-row .fill { background: var(--accent); border-radius: 4px; height: 14px; min-width: 3px; } .bar-row .n { font-size: 13px; color: var(--ink-2); text-align: right; font-variant-numeric: tabular-nums; } /* --- tableaux : filets fins, plus de boîte lourde ------------------------------------ */ table.data { width: 100%; border-collapse: separate; border-spacing: 0; } table.data th, table.data td { text-align: left; padding: 11px 14px 11px 2px; border-bottom: 1px solid var(--border); font-size: 14px; } table.data th { color: var(--ink-3); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 2px solid var(--ink); background: none; } table.data tbody tr:hover td { background: var(--surface); } /* --- carte -------------------------------------------------------------------------- */ .map-wrap { height: calc(100vh - var(--header-h, 58px)); height: calc(100dvh - var(--header-h, 58px)); position: relative; } .map-wrap .maplibregl-map { height: 100%; } .map-count { position: absolute; top: 14px; left: 14px; z-index: 5; background: var(--brand); color: #fff; border-radius: var(--r-card); border: 1.5px solid var(--ink); box-shadow: var(--shadow-off-mid); padding: 8px 14px; font-size: 13px; font-family: var(--font-display); font-weight: 700; } .map-popup h4 { margin: 0 0 2px; font-size: 14px; } .map-popup { font: 13px "Inter", sans-serif; } /* --- pagination / divers ------------------------------------------------------------- */ .pager { display: flex; gap: 22px; align-items: center; justify-content: center; margin: 30px 0; } .pager button { border: 0; background: none; cursor: pointer; padding: 10px 4px; min-height: var(--touch); font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink); } .pager button:hover:not(:disabled) { color: var(--accent-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; } .pager button:disabled { opacity: 0.35; cursor: default; } .pager .pg-pos { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: var(--ink-3); font-variant-numeric: tabular-nums; } .empty { text-align: center; color: var(--ink-3); padding: 64px 0; display: grid; gap: 14px; justify-items: center; } .empty p { margin: 0; } .section-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin: 30px 0 4px; } .muted { color: var(--ink-3); font-size: 13px; } .sub, .lede { color: var(--ink-2); max-width: 640px; } /* --- formulaire de dépôt direct (page Publier) ------------------------------------------ */ .depot-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; } @media (max-width: 700px) { .depot-grid { grid-template-columns: 1fr; } } .depot-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-2); } .depot-form input:not([name="website"]), .depot-form select, .depot-form textarea { font: 15px/1.4 var(--font-body); color: var(--ink); border: 1.5px solid var(--ink); border-radius: var(--r-ctl); background: var(--surface); padding: 10px 12px; min-height: var(--touch); } .depot-form textarea { resize: vertical; } .depot-form input:focus, .depot-form select:focus, .depot-form textarea:focus { outline: none; box-shadow: 3px 3px 0 var(--accent); } .depot-form input::placeholder, .depot-form textarea::placeholder { color: var(--ink-3); } /* --- page Contact (commune Groupe KA) -------------------------------------------------- */ .contact-page { padding: 44px 0 90px; } .contact-page h1 { margin: 10px 0 8px; } .contact-page .lede { color: var(--ink-2); max-width: 640px; margin: 0 0 26px; } .contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 26px 0; } @media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } } .contact-card { padding: 18px 20px; } .contact-card .klabel { display: block; margin-bottom: 6px; } .contact-card a.mail { font-family: var(--font-mono); font-weight: 700; font-size: 13.5px; color: var(--accent-deep); word-break: break-all; text-decoration: underline; text-underline-offset: 3px; } .contact-note { border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 var(--r-card) var(--r-card) 0; padding: 14px 18px; max-width: 720px; color: var(--ink-2); font-size: 14px; } .contact-note b { color: var(--ink); } .contact-sites { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; } .contact-sites a { display: inline-flex; align-items: center; min-height: 34px; padding: 4px 12px; border: 1px solid var(--line-strong); border-radius: var(--r-pill); background: var(--surface); font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); transition: transform 0.12s, box-shadow 0.12s; } .contact-sites a:hover { transform: translate(-1px, -1px); box-shadow: var(--shadow-off-mid); text-decoration: none; } .contact-hub { margin-top: 26px; } /* --- rangée de navigation locale au-dessus du footer commun ----------------------------- */ .prefooter { border-top: 2px solid var(--ink); background: var(--surface-2); padding: 18px 0; margin-top: 60px; } .prefooter .container { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 20px; } .prefooter a { color: var(--ink-2); text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); font-weight: 700; font-size: 11.5px; min-height: var(--touch); display: inline-flex; align-items: center; } .prefooter a:hover { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 4px; } .prefooter .baseline { width: 100%; font-size: 13px; color: var(--ink-2); } .ka-footer { margin-top: 0; } @media (max-width: 640px) { .bar-row { grid-template-columns: 120px 1fr 44px; } } /* bulle KA Agent masquée quand un panneau plein écran est ouvert (filtres, menu mobile) : son z-index maximal (2147483000) passerait au-dessus */ body.ka-hide-agent .kaa-btn { opacity: 0 !important; pointer-events: none !important; } /* --- mouvement réduit : on coupe les animations décoratives ----------------------------- */ @media (prefers-reduced-motion: reduce) { .hero .kicker .pulse { animation: none; } .mobile-menu.open, .mobile-menu.open a { animation: none; } .fsheet { transition: none; } .job-row, .job-row::before, .searchbar { transition: none; } } /* --- KA ID v2 : badge « Recommandé pour vous » (parcimonieux, serveur) --- */ .jr-reco { display: inline-block; vertical-align: 2px; margin-right: 9px; padding: 2px 8px 3px; border-radius: 5px; background: var(--ink); color: var(--accent); font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }