/* ============================================================
   CRM CAE España — Design system V1
   ============================================================ */
:root {
  --sidebar-bg: #0E141B;
  --sidebar-fg: #C9D3DB;
  --sidebar-active: #1C2833;
  --accent: #1FA315;
  --accent-dark: #15820E;
  --accent-soft: #E9F7E7;
  --bg: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --green: #16a34a;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .07), 0 1px 2px rgba(15, 23, 42, .05);
  --font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 14px; }
a { color: inherit; text-decoration: none; }

.layout { display: flex; min-height: 100vh; }

/* ---------- Sidebar ---------- */
.sidebar {
  width: 232px; flex-shrink: 0; background: var(--sidebar-bg); color: var(--sidebar-fg);
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
}
.brand { padding: 20px 18px 14px; border-bottom: 1px solid #1C2833; }
.brand .logo { display: flex; align-items: center; gap: 10px; }
.brand .logo-mark {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, #1FA315, #4CC341);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: -.5px;
}
.brand h1 { font-size: 15px; color: #f8fafc; font-weight: 700; }
.brand p { font-size: 11px; color: #64748b; margin-top: 1px; }

.nav { padding: 12px 10px; flex: 1; }
.nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  color: var(--sidebar-fg); font-weight: 500; margin-bottom: 2px; font-size: 13.5px;
}
.nav a:hover { background: var(--sidebar-active); color: #fff; }
.nav a.active { background: var(--accent); color: #fff; }
.nav a .icon { width: 18px; text-align: center; opacity: .85; }

.lang-switch { padding: 14px; border-top: 1px solid #1C2833; display: flex; gap: 8px; }
.lang-switch a {
  flex: 1; text-align: center; padding: 7px 0; border-radius: 7px; font-size: 12px;
  font-weight: 600; background: #1C2833; color: #94a3b8; border: 1px solid transparent;
}
.lang-switch a.active { background: var(--accent); color: #fff; }

/* ---------- Main ---------- */
.main { flex: 1; padding: 26px 32px; min-width: 0; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; gap: 16px; flex-wrap: wrap; }
.page-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -.3px; }
.page-head .subtitle { color: var(--text-muted); margin-top: 3px; font-size: 13px; }
.page-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Cards & stats ---------- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card .card-head { padding: 14px 18px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 13.5px; }
.card .card-body { padding: 18px; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 22px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 18px; }
.stat .label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.stat .value { font-size: 26px; font-weight: 750; margin-top: 6px; letter-spacing: -.5px; }
.stat .unit { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-left: 4px; }

/* ---------- Status distribution ---------- */
.dist { display: flex; flex-direction: column; gap: 9px; }
.dist-row { display: grid; grid-template-columns: 150px 1fr 34px; align-items: center; gap: 12px; }
.dist-label { font-size: 12.5px; color: var(--text); font-weight: 500; text-align: right; }
.dist-track { background: #f1f5f9; border-radius: 5px; height: 18px; overflow: hidden; }
.dist-bar { height: 100%; border-radius: 5px; min-width: 2px; }
.dist-count { font-size: 12.5px; font-weight: 650; color: var(--text-muted); }

/* ---------- Tables ---------- */
table.data { width: 100%; border-collapse: collapse; }
table.data th {
  text-align: left; padding: 10px 14px; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .4px; color: var(--text-muted); border-bottom: 1px solid var(--border);
  background: #f8fafc; font-weight: 650;
}
table.data td { padding: 11px 14px; border-bottom: 1px solid #f1f5f9; font-size: 13.5px; }
table.data td a[href*="/clients/"] { white-space: nowrap; }
table.data tr:last-child td { border-bottom: none; }
table.data tr.clickable:hover td { background: #f8fafc; cursor: pointer; }
.table-card { overflow: hidden; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 650; background: #f1f5f9; color: #334155; white-space: nowrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge.role { background: var(--accent-soft); color: var(--accent-dark); }

/* ---------- Filtres & pagination ---------- */
.filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.pagination { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 16px; }

/* ---------- Barre d'actions en masse ---------- */
.bulk-bar {
  display: none; gap: 10px; align-items: center; margin-bottom: 12px;
  background: #EFF9EC; border: 1px solid #BFE5B8; border-radius: 10px; padding: 10px 14px;
}
.bulk-bar.visible { display: flex; flex-wrap: wrap; }
.bulk-count { font-weight: 700; font-size: 13px; color: var(--accent-dark); }
table.data input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--accent); }

/* ---------- Panneau de choix des champs d'export ---------- */
.export-panel {
  display: none; background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 12px; box-shadow: var(--shadow);
}
.export-panel.visible { display: block; }
.export-fields { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 4px 14px; }
.export-field { font-size: 12.5px; display: flex; align-items: center; gap: 7px; padding: 3px 0; cursor: pointer; }
.export-field input { width: 14px; height: 14px; accent-color: var(--accent); }

/* ---------- Phases ---------- */
.phase-tabs { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.phase-tabs a {
  padding: 7px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 650;
  background: #fff; border: 1px solid var(--border); color: var(--text-muted);
}
.phase-tabs a.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.phase-block { margin-bottom: 22px; }
.phase-title {
  font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .6px;
  color: var(--text-muted); margin-bottom: 8px;
}

/* ---------- Pipeline (kanban) ---------- */
.pipeline-wrap { overflow-x: auto; padding-bottom: 14px; }
.pipeline { display: flex; gap: 12px; align-items: flex-start; min-width: max-content; }
.col { width: 240px; flex-shrink: 0; background: #e9eef5; border-radius: var(--radius); }
.col-head {
  padding: 10px 12px; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 700;
}
.col-head .col-title { display: flex; align-items: center; gap: 7px; }
.col-head .dot { width: 9px; height: 9px; border-radius: 50%; }
.col-head .count { background: #fff; border-radius: 999px; padding: 1px 8px; font-size: 11px; color: var(--text-muted); }
.col-cards { padding: 0 8px 8px; display: flex; flex-direction: column; gap: 8px; min-height: 20px; }
.kcard {
  background: #fff; border-radius: 8px; border: 1px solid var(--border); padding: 10px 12px;
  box-shadow: var(--shadow); display: block;
}
.kcard:hover { border-color: var(--accent); }
.kcard .ref { font-size: 11px; color: var(--text-muted); font-weight: 650; white-space: nowrap; }
.kcard .name { font-weight: 650; font-size: 13px; margin: 3px 0 2px; }
.kcard .meta { font-size: 11.5px; color: var(--text-muted); }
.kcard .kpis { display: flex; gap: 8px; margin-top: 7px; }
.kcard .kpi { font-size: 10.5px; background: #f1f5f9; padding: 2px 7px; border-radius: 5px; color: #475569; font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12px; font-weight: 650; margin-bottom: 5px; color: #334155; }
.field input, .field select, .field textarea {
  width: 100%; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 13.5px; font-family: inherit; background: #fff; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31, 163, 21, .14);
}
.field input[readonly] {
  background: #f8fafc; color: #475569; cursor: not-allowed; border-style: dashed;
}

.btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 650; border: 1px solid var(--border); background: #fff;
  color: var(--text); cursor: pointer; font-family: inherit;
}
.btn:hover { background: #f8fafc; }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-dark); }

.search-input {
  padding: 9px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 13.5px;
  width: 260px; font-family: inherit; background: #fff;
}
.search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31,163,21,.14); }

/* ---------- Detail pages ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; align-items: start; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.dl .item .k { font-size: 11px; color: var(--text-muted); font-weight: 650; text-transform: uppercase; letter-spacing: .4px; }
.dl .item .v { font-size: 13.5px; font-weight: 550; margin-top: 2px; }

.timeline { list-style: none; }
.timeline li { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.timeline li:last-child { border-bottom: none; }
.timeline .when { font-size: 11.5px; color: var(--text-muted); white-space: nowrap; min-width: 110px; }
.timeline .what { font-size: 13px; }

.empty { color: var(--text-muted); font-size: 13px; padding: 14px 0; text-align: center; }

/* ---------- Paramètres : édition inline & matrice visibilité ---------- */
.inline-input {
  width: 100%; min-width: 120px; padding: 6px 8px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 12.5px; font-family: inherit; background: #fff;
}
.inline-input:focus { outline: none; border-color: var(--accent); }
.inline-input.color { min-width: 42px; width: 42px; height: 30px; padding: 2px; }
.inline-input.num { min-width: 64px; width: 64px; }
.visibility-grid th.rot { height: 130px; vertical-align: bottom; padding: 6px 2px; }
.visibility-grid th.rot span {
  writing-mode: vertical-rl; transform: rotate(180deg); font-size: 10.5px;
  white-space: nowrap;
}
.visibility-grid td, .visibility-grid th { padding: 6px 8px; }
.visibility-grid input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--accent); }

.muted { color: var(--text-muted); }
.mt { margin-top: 16px; }

/* ---------- Calendrier semaine ---------- */
:root { --hour-h: 52px; }
.cal-grid { display: grid; grid-template-columns: 56px repeat(7, 1fr); }
.cal-hours { border-right: 1px solid var(--border); }
.cal-head {
  height: 54px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; border-bottom: 1px solid var(--border);
  background: #f8fafc; position: sticky; top: 0; z-index: 5;
}
.cal-dayname { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.cal-daynum { font-size: 16px; font-weight: 750; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.cal-daynum.today { background: var(--accent); color: #fff; }
.cal-hour-label {
  height: var(--hour-h); font-size: 10.5px; color: var(--text-muted);
  text-align: right; padding-right: 8px; transform: translateY(-6px);
}
.cal-day { border-right: 1px solid #f1f5f9; position: relative; }
.cal-day:last-child { border-right: none; }
.cal-day.cal-today .cal-body { background: #EFF9EC88; }
.cal-body { position: relative; }
.cal-slot { height: var(--hour-h); border-bottom: 1px solid #f1f5f9; }
.cal-event {
  position: absolute; border-radius: 6px; padding: 4px 6px; overflow: hidden;
  font-size: 10.5px; line-height: 1.25; z-index: 2; display: block;
  box-shadow: 0 1px 2px rgba(15,23,42,.08); transition: filter .1s;
}
.cal-event:hover { filter: brightness(.92); z-index: 4; }
.cal-event-time { font-weight: 750; font-size: 10px; }
.cal-event-title { font-weight: 650; color: var(--text); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.cal-event-sub { color: var(--text-muted); font-size: 10px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

/* ---------- Boutons de transition de statut (fiche client) ---------- */
.status-btn { font-weight: 700; }
.status-btn:hover { filter: brightness(.94); }
.status-btn .dot { font-size: 10px; margin-right: 2px; }

/* ---------- Planning ressources (lignes = équipes, colonnes = jours) ---------- */
.rv-grid {
  display: grid; grid-template-columns: 210px repeat(7, minmax(120px, 1fr));
  min-width: 1100px;
}
.rv-corner { border-bottom: 1px solid var(--border); background: #f8fafc; }
.rv-dayhead {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 8px 4px; border-bottom: 1px solid var(--border);
  border-left: 1px solid #f1f5f9; background: #f8fafc;
}
.rv-dayhead.rv-today { background: #EFF9EC; }
.rv-team {
  padding: 10px 12px; border-bottom: 1px solid #f1f5f9;
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
  background: #fcfdfe;
}
.rv-team-name { font-weight: 750; font-size: 13px; }
.rv-team-stats { display: flex; gap: 5px; flex-wrap: wrap; }
.rv-team-stats .badge { font-size: 10.5px; padding: 2px 7px; }
.rv-cell {
  border-left: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
  padding: 5px; display: flex; flex-direction: column; gap: 5px;
  min-height: 64px;
}
.rv-cell.rv-today { background: #EFF9EC88; }
.rv-card {
  display: block; border-radius: 6px; padding: 5px 7px; font-size: 11px;
  line-height: 1.3; box-shadow: 0 1px 2px rgba(15,23,42,.07);
  transition: filter .1s;
}
.rv-card:hover { filter: brightness(.93); }
.rv-card-time { font-weight: 750; font-size: 10.5px; color: var(--text); }
.rv-card-title { font-weight: 650; color: var(--text); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.rv-card-sub { color: var(--text-muted); font-size: 10px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

/* ---------- Planning / feuille de route ---------- */
.stop { display: flex; gap: 14px; padding: 10px 0; }
.stop-time {
  font-weight: 800; font-size: 15px; color: var(--accent); min-width: 52px;
  padding-top: 2px;
}
.stop-body { flex: 1; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
.stop:last-child .stop-body { border-bottom: none; }
.leg {
  margin-left: 66px; padding: 4px 10px; font-size: 12px; font-weight: 650;
  color: #475569; background: #f1f5f9; border-radius: 999px; display: inline-block;
}

/* ---------- Login ---------- */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0E141B 0%, #1F5C18 100%);
}
.login-box {
  background: #fff; border-radius: 14px; padding: 34px 36px; width: 380px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.login-brand .logo-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, #1FA315, #4CC341);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 17px;
}
.login-brand h1 { font-size: 18px; }
.login-brand p { font-size: 12px; color: var(--text-muted); }
.login-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  padding: 9px 12px; border-radius: 8px; font-size: 12.5px; margin-bottom: 14px;
  font-weight: 550;
}
.login-langs { margin-top: 18px; text-align: center; font-size: 12px; color: var(--text-muted); }
.login-langs a { font-weight: 600; }
.login-langs a.active { color: var(--accent); }

/* ---------- Sidebar : utilisateur connecté ---------- */
.user-box { padding: 12px 14px; border-top: 1px solid #1C2833; display: flex; align-items: center; gap: 10px; }
.user-box .avatar {
  width: 32px; height: 32px; border-radius: 50%; background: #1FA315; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12.5px;
  flex-shrink: 0;
}
.user-box .who { flex: 1; min-width: 0; }
.user-box .who .n { font-size: 12.5px; font-weight: 650; color: #f1f5f9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-box .who .r { font-size: 10.5px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-box .out { color: #64748b; font-size: 15px; }
.user-box .out:hover { color: #f87171; }

/* ---------- Logo T2CAE ---------- */
.brand-logo { display: block; width: 100%; max-width: 178px; margin: 0 auto; }
.login-brand-logo { justify-content: center; margin-bottom: 26px; }
.login-brand-logo img { width: 78%; display: block; margin: 0 auto; }

/* ---------- Barre du haut (mobile) ---------- */
.topbar {
  display: none; position: sticky; top: 0; z-index: 60;
  background: var(--sidebar-bg); color: #fff; align-items: center; gap: 12px;
  padding: 10px 14px; box-shadow: 0 2px 8px rgba(14,20,27,.25);
}
.topbar-logo { height: 30px; }
.topbar-avatar {
  margin-left: auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 13px;
}
.burger { background: none; border: none; padding: 6px 4px; cursor: pointer; }
.burger span { display: block; width: 21px; height: 2.6px; background: #fff; border-radius: 2px; margin: 4.2px 0; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(8,12,16,.55); z-index: 70; }

/* ============================================================
   T2CAE — Téléphone & petits écrans
   ============================================================ */
@media (max-width: 900px) {
  .topbar { display: flex; }
  .layout { display: block; }

  /* Menu latéral -> panneau coulissant */
  .sidebar {
    position: fixed; top: 0; bottom: 0; left: 0; z-index: 80; height: 100%;
    width: min(78vw, 300px); transform: translateX(-102%);
    transition: transform .22s ease; box-shadow: 6px 0 30px rgba(8,12,16,.4);
  }
  body.nav-open .sidebar { transform: translateX(0); }
  body.nav-open .nav-overlay { display: block; }
  .nav a { padding: 13px 14px; font-size: 15px; }

  .main { padding: 14px 12px 40px; }
  .page-head h2 { font-size: 19px; }
  .page-head { margin-bottom: 14px; }
  .page-actions { width: 100%; flex-wrap: wrap; }
  .page-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Boutons & champs confortables au doigt */
  .btn { padding: 11px 16px; min-height: 44px; }
  .field input, .field select, .field textarea, .search-input { min-height: 44px; font-size: 15px; }
  .filter-bar { gap: 8px; }
  .filter-bar .search-input { width: 100% !important; }
  .form-grid { grid-template-columns: 1fr; }

  /* Indicateurs en 2 colonnes */
  .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat .value { font-size: 21px; }
  .dist-row { grid-template-columns: 96px 1fr 30px; gap: 8px; }
  .dist-label { font-size: 11.5px; }

  /* Tableaux -> cartes */
  table.data:not(.visibility-grid) { display: block; }
  table.data:not(.visibility-grid) thead { display: none; }
  table.data:not(.visibility-grid) tbody { display: block; }
  table.data:not(.visibility-grid) tbody tr {
    display: block; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; margin: 0 0 10px; padding: 6px 14px;
    box-shadow: var(--shadow);
  }
  table.data:not(.visibility-grid) tbody td {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    border-bottom: 1px dashed #eef1f4; padding: 8px 0; font-size: 13.5px;
    text-align: right;
  }
  table.data:not(.visibility-grid) tbody td:last-child { border-bottom: none; }
  table.data:not(.visibility-grid) tbody td[data-label]::before {
    content: attr(data-label); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted);
    text-align: left; flex-shrink: 0;
  }
  table.data:not(.visibility-grid) tbody td:not([data-label]) { justify-content: flex-end; }
  .table-card { background: none; border: none; box-shadow: none; overflow: visible; }
  .table-card > table.data { background: none; }

  /* Fiche client : onglets qui glissent */
  .ctabs { flex-wrap: nowrap !important; overflow-x: auto; -webkit-overflow-scrolling: touch;
           margin-left: -12px; margin-right: -12px; padding: 0 12px 4px; }
  .ctabs::-webkit-scrollbar { display: none; }
  .ctab { white-space: nowrap; flex-shrink: 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .dl { grid-template-columns: 1fr; }

  /* Grilles larges (planning équipes, calendrier, matrice) : défilement horizontal */
  .card { max-width: 100%; }
  .rv-grid { min-width: 900px; }
  .cal-grid { min-width: 760px; }
  .visibility-grid { display: table; }
  .cal-wrap, .rv-wrap { overflow-x: auto; }

  /* Kanban : colonnes plus étroites */
  .col { width: 210px; }

  /* Connexion */
  .login-box { width: calc(100vw - 32px); padding: 26px 22px; }
}
