/* =========================================================================
   MONACO-GP — Section "Offres hospitalités"
   Image de fond plein cadre + carte navy (rayon 20px) à droite.
   Dimensions de la référence (racine 14px).
   ========================================================================= */
.mgp-hosp{
  position:relative;
  background:var(--mgp-navy,#203250);
  background-size:cover;background-position:center;background-repeat:no-repeat;
  padding:60px 0;
  overflow:hidden;
}
.mgp-hosp *{box-sizing:border-box;}
.mgp-hosp__inner{
  position:relative;z-index:1;
  max-width:1360px;margin:0 auto;padding:0 40px;
  display:flex;justify-content:flex-end;
}

/* Coin navy biseauté en bas à gauche (desktop) */
.mgp-hosp__notch{
  display:none;
  position:absolute;left:0;bottom:0;width:38%;height:120px;z-index:0;
  background:var(--mgp-navy,#203250);
  clip-path:polygon(0 40%, 82% 40%, 92% 100%, 0 100%);
}

/* ---------- Carte ---------- */
.mgp-hosp__card{
  width:529px;max-width:100%;
  background:var(--mgp-navy,#203250);
  border-radius:20px;
  padding:40px;
  color:#fff;font-family:"Heebo",sans-serif;
}
.mgp-hosp__title{
  font-size:28px;font-weight:900;text-transform:uppercase;letter-spacing:.14px;line-height:1.15;
  margin:0 0 22px;color:#fff;
}
.mgp-hosp__img{
  display:block;width:100%;height:auto;aspect-ratio:1.60;object-fit:cover;
  border-radius:10px;margin-bottom:22px;background:#111a2c;
}
.mgp-hosp__text{
  font-size:var(--mgp-fs-xs,14px);font-weight:400;line-height:1.45;letter-spacing:.14px;
  margin:0 0 24px;color:#fff;
}

/* Bouton */
.mgp-hosp__btn{
  display:flex;align-items:center;gap:0;
  height:60px;padding:0 22px;
  background:var(--mgp-red,#C42D2D);border-radius:5px;
  color:#fff;text-decoration:none;
  font-size:var(--mgp-fs-md,16.1px);font-weight:800;text-transform:uppercase;letter-spacing:.14px;
  transition:background .2s ease;
}
.mgp-hosp__btn:hover{background:#a92626;}
.mgp-hosp__btn .ico{flex:0 0 auto;display:inline-flex;}
.mgp-hosp__btn .ico svg{width:24px;height:24px;fill:#fff;}
.mgp-hosp__btn .sep{flex:0 0 auto;width:0;height:26px;border-left:3px dotted #fff;margin:0 20px;}
.mgp-hosp__btn .txt{flex:1 1 auto;}
.mgp-hosp__btn .chev{flex:0 0 auto;width:13px;height:13px;fill:#fff;margin-left:12px;}

/* ---------- Desktop ---------- */
@media (min-width:901px){
  .mgp-hosp{min-height:640px;display:flex;align-items:center;}
  .mgp-hosp__inner{width:100%;}
  .mgp-hosp__notch{display:block;}
}

/* ---------- Mobile ---------- */
@media (max-width:900px){
  .mgp-hosp{padding:35px 0;}
  .mgp-hosp__inner{padding:0 14px;justify-content:center;}
  .mgp-hosp__card{width:100%;padding:20px;border-radius:16px;}
  .mgp-hosp__title{font-size:21px;margin:0 0 16px;}   /* réf. mobile 1.5rem */
  .mgp-hosp__img{margin-bottom:16px;}
  .mgp-hosp__btn{height:64px;}
}
