/*
Theme Name: Activ'Up
Theme URI: https://www.activup.online
Author: Elodie Plautard
Author URI: https://www.activup.online
Description: Thème éditorial sur mesure pour Activ'Up — Conseil RH, marque employeur et formations management, communication, QVT & RPS. Direction artistique : papier crème, encre profonde, accent ocre. Compatible Elementor.
Version: 2.4.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: activup
*/

/* =========================================================
   ACTIV'UP — Editorial Design System (v2)
   Direction : magazine consulting / refined editorial
   Typography : Fraunces (display) + Instrument Sans (body)
   ========================================================= */

:root {
  --ink:        #17202e;
  --ink-soft:   #2a3342;
  --ink-faint:  #485365;
  --paper:      #f3ede0;
  --paper-soft: #ece5d4;
  --paper-warm: #e4dac1;
  --accent:     #b8894a;
  --accent-deep:#8f6530;
  --rule:       #d0c6ae;
  --rule-soft:  #ddd3ba;
  --muted:      #716b58;
  --muted-light:#9a9380;

  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:    'Instrument Sans', system-ui, -apple-system, sans-serif;

  --frau-display: "opsz" 144, "SOFT" 50, "WONK" 0;
  --frau-italic:  "opsz" 144, "SOFT" 100, "WONK" 1;

  --container-width: 1280px;
  --ease: cubic-bezier(.2,.7,.25,1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(23,32,46,.035) 1px, transparent 1px),
    radial-gradient(rgba(23,32,46,.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
  opacity: .55;
}

/* ===========================================================
   TOPBAR + HEADER (theme-level — appears on every page)
   =========================================================== */
.au-topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .08em;
}
.au-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 11px 40px;
}
.au-topbar__left { display: flex; gap: 28px; opacity: .8; }
.au-topbar__left span { display: inline-flex; align-items: center; gap: 8px; }
.au-topbar__left svg { opacity: .7; flex-shrink: 0; }
.au-topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.au-topbar__right::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,137,74,.25);
  animation: au-pulse 2.4s ease-in-out infinite;
}
@keyframes au-pulse { 50% { box-shadow: 0 0 0 6px rgba(184,137,74,0); } }

.au-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,237,224,.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.au-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 40px;
}
.au-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.au-brand__logo {
  height: 42px;
  width: auto;
  display: block;
}
.au-brand__logo--footer {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s var(--ease);
}
.au-brand__logo--footer:hover {
  opacity: 1;
}
.au-brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: var(--frau-italic);
  font-weight: 400;
  font-size: 26px;
  position: relative;
}
.au-brand__mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  pointer-events: none;
}
.au-brand__text { line-height: 1; }
.au-brand__name {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink);
}
.au-brand__name em {
  font-style: italic;
  font-variation-settings: var(--frau-italic);
  color: var(--accent);
  font-weight: 300;
}
.au-brand__tagline {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.au-nav {
  display: flex;
  gap: 42px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
}
.au-nav a {
  position: relative;
  transition: color .3s var(--ease);
  padding-bottom: 2px;
  color: var(--ink);
}
.au-nav a:hover { color: var(--accent-deep); }
.au-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.au-nav a:hover::after { width: 100%; }
.au-nav .au-nav__cta a,
.au-nav a.au-nav__cta,
.au-nav .menu-item-cta a {
  background: var(--ink);
  color: var(--paper);
  padding: 13px 22px;
  transition: background .35s var(--ease), transform .35s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.au-nav .au-nav__cta a::after,
.au-nav a.au-nav__cta::after,
.au-nav .menu-item-cta a::after { display: none; }
.au-nav .au-nav__cta a:hover,
.au-nav a.au-nav__cta:hover,
.au-nav .menu-item-cta a:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

.au-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--rule);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.au-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
}

/* ===========================================================
   FOOTER (theme-level)
   =========================================================== */
.au-footer {
  background: #0f1620;
  color: rgba(243,237,224,.7);
  font-family: var(--sans);
  font-size: 13.5px;
  position: relative;
  z-index: 1;
}
.au-footer__top {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 40px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.au-footer__brand { max-width: 320px; }
.au-footer__brand .au-brand__name { color: var(--paper); }
.au-footer__brand .au-brand__mark { border: 1px solid rgba(243,237,224,.2); }
.au-footer__brand .au-brand__mark::after { border-color: rgba(184,137,74,.5); }
.au-footer__brand .au-brand__tagline { color: rgba(243,237,224,.4); }
.au-footer__brand p {
  margin-top: 24px;
  line-height: 1.65;
  color: rgba(243,237,224,.5);
  font-size: 13px;
}
.au-footer__col h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.au-footer__col a,
.au-footer__col p {
  display: block;
  margin: 0 0 11px;
  color: rgba(243,237,224,.7);
  transition: color .3s var(--ease);
  font-size: 13px;
}
.au-footer__col a:hover { color: var(--accent); }
.au-footer__bottom {
  border-top: 1px solid rgba(243,237,224,.1);
  padding: 24px 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: rgba(243,237,224,.45);
  letter-spacing: .06em;
}
.au-footer__bottom a {
  color: rgba(243,237,224,.45);
  margin-left: 22px;
  display: inline;
}
.au-footer__bottom a:hover { color: var(--accent); }

/* ===========================================================
   PAGE TYPOGRAPHY HELPERS — for use inside Elementor HTML widgets
   =========================================================== */
.au-wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}
.au-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.au-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.au-kicker::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
}
.au-display {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .98;
  color: var(--ink);
  margin: 0;
}
.au-display em {
  font-style: italic;
  font-variation-settings: var(--frau-italic);
  color: var(--accent-deep);
  font-weight: 300;
}
.au-h1 { font-size: clamp(48px, 6.4vw, 96px); }
.au-h2 { font-size: clamp(38px, 4.4vw, 64px); }
.au-h3 { font-size: clamp(26px, 2.6vw, 36px); }
.au-h4 { font-size: clamp(20px, 1.8vw, 26px); }

.au-lede {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
}
.au-text {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-faint);
  margin: 0 0 1em;
}

.au-rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.au-rule--accent { background: var(--accent); width: 48px; height: 2px; margin: 24px 0; border: 0; }

.au-num {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.au-num--xl { font-size: clamp(120px, 14vw, 210px); letter-spacing: -.03em; }
.au-num--lg { font-size: 56px; }
.au-num--md { font-size: 32px; }

/* Buttons — theme-level (au-btn) */
.au-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.au-btn svg { transition: transform .4s var(--ease); }
.au-btn:hover svg { transform: translateX(6px); }
.au-btn--solid { background: var(--ink); color: var(--paper); }
.au-btn--solid:hover { background: var(--accent-deep); color: var(--paper); transform: translateY(-2px); }
.au-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.au-btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.au-btn--accent { background: var(--accent); color: var(--paper); }
.au-btn--accent:hover { background: var(--accent-deep); color: var(--paper); transform: translateY(-2px); }
.au-btn--ghost-light { background: transparent; color: var(--paper); border-color: var(--paper); }
.au-btn--ghost-light:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

/* Elementor buttons — global CTA animation (matches nav CTA style) */
.elementor-button {
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease) !important;
}
.elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(23,32,46,.12) !important;
}

/* Page-hero (smaller hero used on inner pages) */
.au-page-hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--rule);
}
.au-page-hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.au-page-hero__num {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0;
  text-transform: none;
}
.au-page-hero__title {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .96;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0 0 30px;
  max-width: 1100px;
}
.au-page-hero__title em {
  font-style: italic;
  font-variation-settings: var(--frau-italic);
  color: var(--accent-deep);
  font-weight: 300;
}
.au-page-hero__lede {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0;
}

/* Editorial chapter / section */
.au-chapter {
  padding: 110px 0;
  position: relative;
}
.au-chapter--ink {
  background: var(--ink);
  color: var(--paper);
}
.au-chapter--ink .au-display { color: var(--paper); }
.au-chapter--ink .au-display em { color: var(--accent); }
.au-chapter--ink .au-label,
.au-chapter--ink .au-kicker { color: rgba(243,237,224,.6); }
.au-chapter--ink .au-text { color: rgba(243,237,224,.7); }
.au-chapter--ink .au-rule { background: rgba(243,237,224,.15); }

.au-chapter__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 70px;
}
.au-chapter--ink .au-chapter__header { border-bottom-color: rgba(243,237,224,.15); }

/* Editorial card (used in conseil services) */
.au-service {
  padding: 38px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  transition: padding-left .5s var(--ease);
  position: relative;
}
.au-service:last-child { border-bottom: 1px solid var(--rule); }
.au-service:hover { padding-left: 12px; }
.au-service__num {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.au-service__title {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 12px;
}
.au-service__title .au-tag {
  display: inline-block;
  margin-left: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--paper);
  padding: 5px 11px;
  vertical-align: middle;
  line-height: 1;
}
.au-service__text {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-faint);
  margin: 0;
}

/* Decorative quote mark */
.au-quote-mark {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 180px;
  line-height: .5;
  color: var(--accent);
  opacity: .4;
  display: block;
}

/* Form styling — used on contact/conseil */
.au-form { display: grid; gap: 18px; }
.au-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.au-form__group { display: flex; flex-direction: column; gap: 6px; }
.au-form__label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.au-form__input,
.au-form__textarea,
.au-form__select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.au-form__input:focus,
.au-form__textarea:focus,
.au-form__select:focus {
  border-color: var(--accent);
  background: #fff;
}
.au-form__textarea { min-height: 140px; resize: vertical; font-family: var(--sans); }
.au-form__submit {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.au-form__submit:hover { background: var(--accent-deep); }

/* Elementor Pro Form — editorial overrides */
.elementor-form .elementor-field-group {
  margin-bottom: 0;
}
.elementor-form .elementor-field-label {
  font-family: var(--sans) !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
}
.elementor-form .elementor-field-textual {
  font-family: var(--sans) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
  border: 1px solid var(--rule) !important;
  padding: 14px 16px !important;
  border-radius: 4px !important;
  outline: none !important;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease) !important;
  box-shadow: none !important;
}
.elementor-form .elementor-field-textual:focus {
  border-color: var(--accent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(184,137,74,.1) !important;
}
.elementor-form .elementor-field-textual::placeholder {
  color: var(--muted-light);
  opacity: .6;
}
.elementor-form select.elementor-field-textual {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23716b58' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

/* Submit button */
.elementor-form .elementor-button[type="submit"],
.elementor-form .e-form__buttons__wrapper button {
  font-family: var(--sans) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: var(--paper) !important;
  border: none !important;
  padding: 18px 32px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease) !important;
  width: 100%;
}
.elementor-form .elementor-button[type="submit"]:hover,
.elementor-form .e-form__buttons__wrapper button:hover {
  background: var(--accent-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(143,101,48,.2);
}

/* Required asterisk */
.elementor-form .elementor-mark-required .elementor-field-label::after {
  color: var(--accent) !important;
}

/* Success message animation */
.elementor-message.elementor-message-success {
  background: var(--ink) !important;
  color: #fff !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  padding: 32px !important;
  border-radius: 12px !important;
  border: none !important;
  text-align: center !important;
  animation: auFormSuccess .6s var(--ease) both !important;
  margin-top: 16px !important;
}
.elementor-message.elementor-message-success::before {
  content: '✓' !important;
  display: block !important;
  font-size: 32px !important;
  margin-bottom: 12px !important;
  color: var(--accent) !important;
  animation: auCheckBounce .5s .3s var(--ease) both !important;
}

/* Error message */
.elementor-message.elementor-message-danger {
  background: rgba(200,60,60,.08) !important;
  color: #c83c3c !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  padding: 16px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(200,60,60,.2) !important;
}

/* Field validation error */
.elementor-form .elementor-error .elementor-field-textual {
  border-color: #c83c3c !important;
}

@keyframes auFormSuccess {
  0% { opacity: 0; transform: translateY(20px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes auCheckBounce {
  0% { opacity: 0; transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* ───────────────────────────────────────────────
   Testimonials Carousel
   ─────────────────────────────────────────────── */
.au-temo-carousel {
  position: relative;
}
.au-temo-carousel__track {
  position: relative;
  min-height: 280px;
}
.au-temo-carousel__slide {
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.au-temo-carousel__slide.is-active {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}

/* Quote mark */
.au-temo-carousel__mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  line-height: .4;
  color: var(--accent);
  margin-bottom: 24px;
}

/* Quote text */
.au-temo-carousel__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -.3px;
  color: var(--ink);
}
.au-temo-carousel__text p {
  margin: 0;
}
.au-temo-carousel__text em {
  color: var(--accent-deep);
  font-weight: 300;
}

/* Divider */
.au-temo-carousel__divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 32px 0 14px;
}

/* Author block */
.au-temo-carousel__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.au-temo-carousel__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.au-temo-carousel__role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.au-temo-carousel__company {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
}

/* Navigation */
.au-temo-carousel__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.au-temo-carousel__btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.au-temo-carousel__btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.au-temo-carousel__dots {
  display: flex;
  gap: 8px;
}
.au-temo-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s var(--ease);
}
.au-temo-carousel__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
}
.au-temo-carousel__dot:hover {
  border-color: var(--accent);
}

@media (max-width: 760px) {
  .au-temo-carousel__mark { font-size: 80px; margin-bottom: 16px; }
  .au-temo-carousel__text { font-size: 22px; }
  .au-temo-carousel__track { min-height: 320px; }
}

/* ===========================================================
   ELEMENTOR INTEGRATION
   Strip Elementor's default body padding so theme controls layout
   =========================================================== */
body.elementor-page { background: var(--paper); }
.elementor-section.elementor-section-boxed > .elementor-container,
.e-con { font-family: var(--sans); }
.elementor a { color: inherit; }

/* ───────────────────────────────────────────────
   Conseil RH — Tabs navigation component
   ─────────────────────────────────────────────── */
.au-ctabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Tab navigation ── */
.au-ctabs__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}
.au-ctabs__tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-top: 1px solid var(--rule);
  color: var(--ink-faint);
  transition: color .35s var(--ease);
  overflow: hidden;
}
.au-ctabs__tab:last-child {
  border-bottom: 1px solid var(--rule);
}
.au-ctabs__tab:hover {
  color: var(--ink);
}
.au-ctabs__tab.is-active {
  color: var(--ink);
}

/* Number */
.au-ctabs__tab-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--accent);
  min-width: 36px;
  transition: transform .35s var(--ease);
}
.au-ctabs__tab.is-active .au-ctabs__tab-num {
  transform: scale(1.1);
}

/* Label */
.au-ctabs__tab-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.015em;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tag (Spécialité) */
.au-ctabs__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--paper);
  padding: 4px 10px;
  vertical-align: middle;
  line-height: 1;
}

/* Progress bar — bottom of each tab */
.au-ctabs__tab-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
}
.au-ctabs__tab.is-active .au-ctabs__tab-progress {
  animation: au-tab-progress 6s linear forwards;
}
@keyframes au-tab-progress {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Panels (content area) ── */
.au-ctabs__panels {
  position: relative;
  min-height: 200px;
  margin-top: 32px;
}
.au-ctabs__panel {
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateX(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.au-ctabs__panel.is-active {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}

.au-ctabs__panel-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .5;
}
.au-ctabs__panel-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.au-ctabs__panel-text {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-faint);
}
.au-ctabs__panel-text p {
  margin: 0 0 14px;
}
.au-ctabs__panel-text p:last-child {
  margin-bottom: 0;
}

/* ── CTA — always visible ── */
.au-ctabs__cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.au-ctabs__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: all .35s var(--ease);
}
.au-ctabs__cta-btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(23,32,46,.12);
}
.au-ctabs__cta-btn svg {
  transition: transform .35s var(--ease);
}
.au-ctabs__cta-btn:hover svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .au-ctabs__tab-label { font-size: 18px; }
  .au-ctabs__tab-num { font-size: 22px; min-width: 28px; }
  .au-ctabs__tab { padding: 16px 0; }
  .au-ctabs__panel-num { font-size: 36px; }
  .au-ctabs__panel-title { font-size: 22px; }
  .au-ctabs__panels { min-height: 180px; }
}

/* Formation pillar header image — full-bleed within card */
.au-pillar-img {
  margin: -44px -36px 24px -36px !important;
  width: calc(100% + 72px) !important;
  max-width: none !important;
}
.au-pillar-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Reveal animation utility — kicks in via JS observer */
.au-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.au-reveal.is-on { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .au-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .au-chapter__header { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 1080px) {
  /* Disable stacking cards on tablet — stack vertically */
  .au-stack-card {
    position: relative !important;
    top: auto !important;
    box-shadow: none !important;
  }
  .au-sticky-side {
    position: relative !important;
    top: auto !important;
  }
  /* Formation pillars: from 3 cols to single col */
  .au-pillar-img {
    margin: -30px -24px 20px -24px !important;
    width: calc(100% + 48px) !important;
  }
}
@media (max-width: 768px) {
  .au-pillar-img {
    margin: -20px -16px 16px -16px !important;
    width: calc(100% + 32px) !important;
  }
  .au-pillar-img img {
    height: 150px;
  }
}
@media (max-width: 760px) {
  .au-topbar__inner,
  .au-header__inner,
  .au-wrap,
  .au-footer__top,
  .au-footer__bottom { padding-left: 24px; padding-right: 24px; }
  .au-topbar__left { display: none; }
  .au-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--rule);
    gap: 20px;
    align-items: flex-start;
    z-index: 60;
  }
  .au-nav.is-open { display: flex; }
  .au-burger { display: flex; }
  .au-brand__tagline { display: none; }
  .au-footer__top { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
  .au-page-hero { padding: 60px 0 50px; }
  .au-chapter { padding: 70px 0; }
  .au-form__row { grid-template-columns: 1fr; }
  .au-service { grid-template-columns: 40px 1fr; gap: 18px; padding: 28px 0; }
  .au-service__num { font-size: 26px; }
  .au-service__title { font-size: 22px; }
  .au-faq-section { padding: 60px 20px; }
  .au-faq-section .au-faq-heading { font-size: 28px; }
}

/* ---------- FAQ ACCORDION (Elementor native widget) ---------- */
.au-faq-section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px 40px;
}
.au-faq-heading {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 48px;
}
/* Elementor accordion overrides inside FAQ section */
.au-faq-section .elementor-accordion {
  border-top: 1px solid var(--rule);
}
.au-faq-section .elementor-accordion-item {
  border-bottom: 1px solid var(--rule);
  border-top: none;
}
.au-faq-section .elementor-accordion-item + .elementor-accordion-item {
  border-top: none;
}
.au-faq-section .elementor-tab-title {
  padding: 24px 0;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: color .3s var(--ease);
}
.au-faq-section .elementor-tab-title:hover {
  color: var(--accent-deep);
}
.au-faq-section .elementor-tab-title .elementor-accordion-icon {
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.au-faq-section .elementor-tab-title.elementor-active {
  color: var(--ink);
}
.au-faq-section .elementor-tab-content {
  border: none;
  padding: 0 0 24px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-faint);
  background: none;
}

/* ---------- FORMATIONS DISPLAY ---------- */

/* Anchor bar */
.au-formations__anchors {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,237,224,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.au-formations__anchors::-webkit-scrollbar { display: none; }
.au-formations__anchor-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.au-formations__anchor-btn:hover,
.au-formations__anchor-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.au-formations__anchor-emoji {
  font-size: 15px;
}

/* Formation block */
.au-formations__block {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.au-formations__block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.au-formations__block:last-of-type {
  border-bottom: none;
}

/* Left content */
.au-formations__num {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 12px;
}
.au-formations__title {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.au-formations__short-desc {
  font-family: var(--sans);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-faint);
  line-height: 1.65;
  margin: 0 0 0;
}
.au-formations__divider {
  height: 1px;
  background: var(--rule);
  margin: 32px 0;
}
.au-formations__section-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.au-formations__content {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.au-formations__content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.au-formations__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.au-formations__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
}

/* Prix block — product card style */
.au-formations__prix {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.au-formations__prix-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.au-formations__prix-value {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 4px;
}
.au-formations__prix-note {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}
.au-formations__prix-desc {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.45;
  margin-top: 6px;
}

/* Right card — dark ink */
.au-formations__card {
  position: sticky;
  top: 100px;
  background: var(--ink);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.au-formations__field {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.au-formations__field:last-of-type {
  border-bottom: none;
}
.au-formations__field-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.au-formations__field-emoji {
  font-size: 14px;
}
.au-formations__field-value {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

/* CTA inside card */
.au-formations__cta-wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.au-formations__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s var(--ease);
  box-shadow: 0 2px 8px rgba(184,137,74,.2);
}
.au-formations__cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,137,74,.35);
}
.au-formations__cta svg {
  transition: transform .3s var(--ease);
}
.au-formations__cta:hover svg {
  transform: translateX(4px);
}
.au-formations__qualiopi-text {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  text-align: center;
  margin: 0;
}
/* kept for backwards compatibility */
.au-formations__qualiopi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.au-formations__qualiopi-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .5px;
}

/* Mobile CTA bar */
.au-formations__mobile-cta {
  display: none;
}

/* ---- Responsive formations ---- */
@media (max-width: 900px) {
  .au-formations__block {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 32px;
  }
  .au-formations__card {
    position: relative;
    top: 0;
    order: -1;
  }
  .au-formations__anchors {
    padding: 12px 16px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }
  .au-formations__anchor-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .au-formations__mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(23,32,46,.08);
  }
  .au-formations__mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
}

/* =========================================================
   UTILITY TYPOGRAPHY CLASSES
   Replace inline styles in Elementor text widgets
   ========================================================= */

/* Lead paragraph — Fraunces display text, editorial intro */
.au-lead,
.au-lead p {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 1.2em;
}
.au-lead p:last-child { margin-bottom: 0; }

/* Lead paragraph on dark background */
.au-lead--dark,
.au-lead--dark p {
  font-family: var(--display);
  font-variation-settings: var(--frau-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(243, 237, 224, 0.85);
  letter-spacing: -0.3px;
  margin-bottom: 1.2em;
}

/* Italic pull-quote / citation */
.au-quote,
.au-quote p {
  font-family: var(--display);
  font-variation-settings: var(--frau-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(243, 237, 224, 0.85);
  letter-spacing: -0.3px;
  max-width: 560px;
  margin: 0;
}

/* Author / attribution text — Fraunces small */
.au-author,
.au-author p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
}

/* Tiny badge text */
.au-badge-text,
.au-badge-text p {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Small cap label inside widget */
.au-label-inline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive scaling */
@media (max-width: 1024px) {
  .au-lead, .au-lead p,
  .au-lead--dark, .au-lead--dark p,
  .au-quote, .au-quote p { font-size: 19px; }
  .au-author, .au-author p { font-size: 17px; }
}

@media (max-width: 767px) {
  .au-lead, .au-lead p,
  .au-lead--dark, .au-lead--dark p,
  .au-quote, .au-quote p { font-size: 17px; }
  .au-author, .au-author p { font-size: 16px; }
}

/* ===========================================================
   RESPONSIVE FIXES v2.3.0
   =========================================================== */

/* --- Tablette (768-1024px) : contraindre les sections Elementor pleine largeur --- */
@media (max-width: 1024px) {
  /* Empêche tout container Elementor de déborder latéralement */
  .elementor-section,
  .e-con,
  .elementor-container {
    max-width: 100% !important;
  }
  /* Hero : padding horizontal adapté */
  .elementor-section.elementor-section-boxed > .elementor-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* --- Top bar mobile : flex-wrap + réduction font-size --- */
@media (max-width: 767px) {
  .au-topbar {
    font-size: 11px;
  }
  .au-topbar__inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 24px;
  }
  .au-topbar__right {
    font-size: 11px;
  }
}

/* --- Hero buttons mobile : réduire le gap entre boutons --- */
@media (max-width: 767px) {
  /* Elementor container hero : réduire les gaps et adapter les boutons */
  .e-con > .elementor-widget-button,
  .elementor-container > .elementor-column .elementor-widget-button {
    width: 100%;
  }
  .elementor-widget-button .elementor-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* Réduire le gap entre boutons dans les containers hero Elementor */
  .e-con[data-id] > .e-con-inner {
    gap: 12px !important;
  }
}

/* --- Piliers cards (Management/Communication/RPS) : 3 colonnes sur desktop --- */
@media (min-width: 1025px) {
  /* Forcer 3 colonnes égales sur les containers Elementor qui contiennent les piliers */
  /* La structure est un container flex — on force le flex-basis à 1/3 */
  .elementor-element-ch2b11 > .e-con-inner,
  .elementor-element-ch2b11.e-con > .e-con-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .elementor-element-ch2b11 > .e-con-inner > .e-con {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* --- Footer responsive : colonnes empilées sur mobile --- */
@media (max-width: 760px) {
  .au-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }
  .au-footer__brand {
    max-width: 100%;
  }
  .au-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .au-footer__bottom a {
    margin-left: 0;
    margin-right: 16px;
    display: inline;
  }
}
