.elementor-87190 .elementor-element.elementor-element-8e6ad7a{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-87190 .elementor-element.elementor-element-58442f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:15px 15px 15px 15px;}.elementor-87190 .elementor-element.elementor-element-58442f7:not(.elementor-motion-effects-element-type-background), .elementor-87190 .elementor-element.elementor-element-58442f7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#132837;}.elementor-87190 .elementor-element.elementor-element-4219243 > .elementor-widget-container{margin:20px 20px 20px 20px;}.elementor-87190 .elementor-element.elementor-element-b2471bd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:15px 15px 15px 15px;}.elementor-87190 .elementor-element.elementor-element-b2471bd:not(.elementor-motion-effects-element-type-background), .elementor-87190 .elementor-element.elementor-element-b2471bd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#132837;}@media(min-width:768px){.elementor-87190 .elementor-element.elementor-element-58442f7{--width:800px;}.elementor-87190 .elementor-element.elementor-element-b2471bd{--width:800px;}}/* Start custom CSS */h1.page-title {
    width: 800px;
    font-family: oxanium, verdana, Sans-Serif;
    font-weight: 900;
    margin-top: 50px;
    padding: 10px;
    text-align: center;
    color: #132837;
    border-radius: 10px;
    font-size: 34px;
}

.entry-header {
    display: flex;
    justify-content: center;
}

.hero-section.is-width-constrained {
    margin-bottom: 10px;
}

/* =========================
   Flight 542 — Casting Page
   Attach to the container with class .flight542
   ========================= */
.flight542{
  --fz-base: 16px;
  --fz-small: 14px;
  --fz-h2: clamp(22px, 2.4vw, 30px);
  --fz-h3: clamp(18px, 1.9vw, 22px);
  --color-text: #0f1220;
  --color-muted: #626a78;
  --color-accent: #0a5cff;   /* bleu accent */
  --color-accent-2: #0c2a6b; /* bleu foncé pour hover/secondary */
  --color-bg: #ffffff;
  --color-badge: #eef3ff;
  --radius: 14px;
  --gap: 1.1rem;

  font-size: var(--fz-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  max-width: 900px;           /* limite la largeur du bloc */
  margin: 0 auto;
  padding: 1.25rem;
}

.flight542 * { box-sizing: border-box; }

/* Header */
.flight542__hero{
  text-align: left;
  margin-bottom: 1.2rem;
}

h2.flight542__title{      /* <h2> chez toi */
  font-family: oxanium, Verdana, Sans-Serif;
  font-size: var(--fz-h2);
  line-height: 1.25;
  margin: 0 0 .4rem 0;
  font-weight: 800;
  letter-spacing: .2px;
  color: white;
}

.flight542__subtitle{
  font-family: oxanium, Verdana, Sans-Serif;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* Sections */
.flight542 section{
  margin: 1.25rem 0 1.35rem;
  padding: 1.1rem;
  border: 1px solid #e9ecf2;
  border-radius: var(--radius);
  background: #fcfdff;
}

.flight542__intro{
  border-color: #dfe7ff;
  background: #f6f9ff;
}

/* Headings (<h3> chez toi) */
h3.flight542__heading{
  font-family: oxanium, Verdana, Sans-Serif;
  font-size: var(--fz-h3);
  margin: 0 0 .6rem 0;
  font-weight: 700;
}

/* Lists */
.flight542__list{
  list-style: none;
  margin: .4rem 0 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.flight542__list--bullets{
  list-style: disc;
  padding-left: 1.2rem;
}

.flight542__steps{
  counter-reset: steps;
  list-style: none;
  margin: .4rem 0 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.flight542__steps li{
  position: relative;
  padding-left: 2rem;
}

.flight542__steps li::before{
  counter-increment: steps;
  content: counter(steps) " ";
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--color-badge);
  color: var(--color-accent);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .9rem;
}

/* Notes & small text */
.flight542__note{
  margin-top: .7rem;
  font-size: .95rem;
  color: var(--color-muted);
}
.flight542__small{
  font-size: .92rem;
  color: var(--color-muted);
}

/* Links */
.flight542__link{
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(10,92,255,.35);
}
.flight542__link:hover{
  color: var(--color-accent-2);
  border-bottom-color: rgba(12,42,107,.5);
}

/* Buttons */
.flight542__cta{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.flight542__button{
  display: inline-block;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(10,92,255,.18);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.flight542__button:hover{
  transform: translateY(-1px);
  background: #0a52e6;
  box-shadow: 0 8px 18px rgba(10,92,255,.24);
}
.flight542__button--secondary{
  background: #f0f3ff;
  color: var(--color-accent-2);
  box-shadow: none;
  border: 1px solid #dfe7ff;
}
.flight542__button--secondary:hover{
  background: #e8eeff;
  color: #08235a;
}

/* Footer/org block */
.flight542__footer{
  margin-top: .6rem;
  padding-top: .6rem;
  border-top: 1px solid #e9ecf2;
  color: var(--color-muted);
  font-size: .95rem;
}

/* Spacing tweaks between paragraphs/lists */
.flight542 p{ margin: 0 0 .6rem; }
.flight542 ol, .flight542 ul{ margin-bottom: 0; }

/* Responsive */
@media (max-width: 780px){
  .flight542{
    padding: 14px;
    --fz-base: 15.5px;
  }
  .flight542 section{ padding: .9rem; }
  .flight542__cta{ gap: .55rem; }
  .flight542__button{ width: 100%; text-align: center; }
}

/* Optional: dark-mode polish if ton site bascule */
@media (prefers-color-scheme: dark){
  .flight542{
    --color-bg: #132837;
    --color-text: #e8ecf7;
    --color-muted: #aab3c5;
    background: var(--color-bg);
  }
  .flight542 section{
    border-color: #e8ecf7;
    background: #1d3646;
  }
  .flight542__intro{
    border-color: #152447;
    background: #0e172b;
  }
  .flight542__link{ border-bottom-color: rgba(129,168,255,.4); }
  .flight542__footer{ border-top-color: #1a2233; }
  .flight542__button--secondary{
    background: #151d33;
    color: #cfd8ff;
    border-color: #1f2a47;
  }
}

/* Footer layout */
.flight542__footer{
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid #e9ecf2;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Contact icons */
.flight542__contacts{
  display: flex;
  gap: .6rem;
  align-items: center;
}

.icon-btn{
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #f0f3ff;
  border: 1px solid #dfe7ff;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.icon-btn .icon{ fill: #0c2a6b; }

.icon-btn:hover{
  transform: translateY(-1px);
  background: #e8eeff;
  border-color: #d1dcff;
  box-shadow: 0 6px 14px rgba(12,42,107,.12);
}

/* WhatsApp brand tint */
/* Keep the same button sizing as your envelope */
.icon-btn{
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #f0f3ff;
  border: 1px solid #dfe7ff;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: #e8eeff;
  border-color: #d1dcff;
  box-shadow: 0 6px 14px rgba(12,42,107,.12);
}

/* Official WhatsApp look: green bubble with white handset */
.icon-btn--wa-official{
  background: #ffffff;        /* white surround so the green pops */
  border-color: #dde7ea;
}
.icon-btn--wa-official .icon{
  width: 24px; height: 24px;  /* ensure crisp size */
}

/* Optional: darker hover for WA */
.icon-btn--wa-official:hover{
  background: #f7f9fb;
  border-color: #cfd9dd;
}

/* Dark mode tweak */
@media (prefers-color-scheme: dark){
  .icon-btn--wa-official{
    background: #0f1524;
    border-color: #1f2a47;
  }
  .icon-btn--wa-official:hover{
    background: #121a2b;
    border-color: #29405a;
  }
}


/* Dark mode polish */
@media (prefers-color-scheme: dark){
  .flight542__footer{ border-top-color: #1a2233; }
  .icon-btn{
    background: #151d33;
    border-color: #1f2a47;
  }
  .icon-btn .icon{ fill: #cfd8ff; }
  .icon-btn--whatsapp{
    background: #11241a;
    border-color: #183627;
  }
  .icon-btn--whatsapp .icon{ fill: #2be26b; }
}

/* Par défaut: montrer web, cacher app */
.cta-web{ display:flex; flex-wrap:wrap; gap:.7rem; }
.app-cta{ display:none; margin-top:.6rem; }
.app-cta__label{ margin:0 0 .4rem 0; }

/* Sur mobile/tablette tactile: cacher web, montrer app + boutons full-width */
@media (hover:none) and (pointer:coarse){
    .cta-web{ display:none; }
    .app-cta{ display:grid; gap:.6rem; width:100%; }
    .flight542__button--app{ width:100%; text-align:center; }
}/* End custom CSS */