
.pba-rentree-popup,
.pba-rentree-popup *{box-sizing:border-box}

.pba-rentree-popup{
  --pba-popup-primary:#07142F;
  --pba-popup-secondary:#143867;
  --pba-popup-accent:#DDB96F;
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  font-family:inherit;
}

.pba-rentree-popup.is-open{display:flex}

.pba-rentree-popup__overlay{
  position:absolute;
  inset:0;
  background:rgba(7,20,47,.58);
  backdrop-filter:blur(7px);
  animation:pbaPopupFade .22s ease both;
}

.pba-rentree-popup__dialog{
  position:relative;
  z-index:2;
  width:min(760px,94vw);
  max-height:min(88vh,760px);
  overflow:auto;
  border-radius:24px;
  background:
    radial-gradient(circle at 8% 0%,rgba(221,185,111,.18),transparent 28%),
    linear-gradient(135deg,var(--pba-popup-primary),#0b1e40);
  border:1px solid rgba(221,185,111,.66);
  box-shadow:0 28px 90px rgba(0,0,0,.34);
  color:#fff;
  animation:pbaPopupIn .32s cubic-bezier(.2,.8,.2,1) both;
  scrollbar-width:thin;
}

.pba-rentree-popup__close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:5;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24)!important;
  background:rgba(7,20,47,.76)!important;
  color:#fff!important;
  font-size:28px!important;
  line-height:1!important;
  cursor:pointer;
  display:flex!important;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}

.pba-rentree-popup__close:hover{
  transform:rotate(90deg);
  background:var(--pba-popup-accent)!important;
  color:var(--pba-popup-primary)!important;
}

.pba-rentree-popup__top{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 24px 0;
}

.pba-rentree-popup__logo{
  width:118px;
  flex:0 0 auto;
  padding:8px 10px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(221,185,111,.52);
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}

.pba-rentree-popup__logo img{
  display:block;
  width:100%;
  max-height:58px;
  object-fit:contain;
}

.pba-rentree-popup__toptext{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-right:48px;
}

.pba-rentree-popup__badge{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  padding:8px 13px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pba-popup-accent),#f7e4ad);
  color:#07142F;
  font-weight:950;
  font-size:13px;
  white-space:nowrap;
}

.pba-rentree-popup__toptext strong{
  color:#f7e4ad;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}

.pba-rentree-popup__body{
  padding:18px 24px 24px;
}

.pba-rentree-popup h2{
  margin:0 0 10px;
  max-width:640px;
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,5vw,3.35rem);
  line-height:1.02;
  letter-spacing:-.04em;
}

.pba-rentree-popup__subtitle{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:15.5px;
  line-height:1.58;
  max-width:650px;
}

.pba-rentree-popup__partner{
  margin:16px 0;
  padding:12px 14px;
  border-radius:18px;
  background:linear-gradient(135deg,#fff,#f7e4ad);
  color:#07142F;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:950;
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}

.pba-rentree-popup__partner span{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--pba-popup-accent),#f7e4ad);
  border:1px solid rgba(7,20,47,.08);
  flex:0 0 auto;
}

.pba-rentree-popup__section-title{
  margin:16px 0 10px;
  color:#f7e4ad;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:950;
}

.pba-rentree-popup__formations{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.pba-rentree-popup__formations article{
  min-height:92px;
  padding:12px;
  border-radius:17px;
  background:rgba(255,255,255,.96);
  color:#07142F;
  border:1px solid rgba(255,255,255,.36);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  display:grid;
  grid-template-columns:38px 1fr;
  gap:10px;
  align-items:start;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.pba-rentree-popup__formations article:hover{
  transform:translateY(-3px);
  border-color:rgba(221,185,111,.72);
  box-shadow:0 20px 42px rgba(0,0,0,.18);
}

.pba-rentree-popup__num{
  width:36px;
  height:36px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--pba-popup-primary),var(--pba-popup-secondary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  font-size:12px;
}

.pba-rentree-popup__formations h3{
  margin:0 0 4px;
  color:#07142F;
  font-size:15px;
  line-height:1.16;
  font-weight:950;
}

.pba-rentree-popup__formations p{
  margin:0;
  color:#5e6c84;
  line-height:1.36;
  font-size:12.5px;
}

.pba-rentree-popup__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.pba-rentree-popup__btn{
  min-height:48px;
  padding:13px 18px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none!important;
  font-weight:950;
  transition:transform .22s ease,background .22s ease,color .22s ease,box-shadow .22s ease;
}

.pba-rentree-popup__btn:hover{transform:translateY(-2px)}

.pba-rentree-popup__btn--gold{
  min-width:190px;
  background:linear-gradient(135deg,var(--pba-popup-accent),#f7e4ad);
  color:#07142F!important;
  box-shadow:0 16px 34px rgba(221,185,111,.28);
}

.pba-rentree-popup__btn--gold:hover{
  background:#fff;
  color:#07142F!important;
}

.pba-rentree-popup__btn--ghost{
  border:1px solid rgba(221,185,111,.70);
  color:#fff!important;
  background:rgba(255,255,255,.04);
}

.pba-rentree-popup__btn--ghost:hover{
  background:#fff;
  color:#07142F!important;
}

@keyframes pbaPopupFade{from{opacity:0}to{opacity:1}}
@keyframes pbaPopupIn{from{opacity:0;transform:translateY(16px) scale(.97)}to{opacity:1;transform:none}}

body.pba-popup-rentree-open{overflow:hidden}

@media(max-width:680px){
  .pba-rentree-popup{
    padding:10px;
    align-items:flex-start;
    padding-top:max(10px, env(safe-area-inset-top));
    padding-bottom:max(10px, env(safe-area-inset-bottom));
  }

  .pba-rentree-popup__dialog{
    width:100%;
    max-height:calc(100dvh - 20px);
    border-radius:22px;
  }

  .pba-rentree-popup__top{
    padding:18px 16px 0;
    gap:10px;
  }

  .pba-rentree-popup__logo{
    width:98px;
    border-radius:15px;
  }

  .pba-rentree-popup__toptext{
    padding-right:42px;
  }

  .pba-rentree-popup__badge{
    font-size:12px;
    padding:7px 11px;
  }

  .pba-rentree-popup__body{
    padding:16px;
  }

  .pba-rentree-popup h2{
    font-size:clamp(2rem,10vw,2.75rem);
  }

  .pba-rentree-popup__subtitle{
    font-size:14.5px;
  }

  .pba-rentree-popup__formations{
    grid-template-columns:1fr;
  }

  .pba-rentree-popup__formations article{
    min-height:auto;
  }

  .pba-rentree-popup__actions{
    display:grid;
  }

  .pba-rentree-popup__btn{
    width:100%;
  }
}

@media(max-width:380px){
  .pba-rentree-popup__top{
    align-items:flex-start;
  }
  .pba-rentree-popup__logo{
    width:86px;
  }
  .pba-rentree-popup h2{
    font-size:2rem;
  }
}
