:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#737373;
  --line:#dbdbdb;
  --accent:#e1306c;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  height:60px;
  background:#fff;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand{
  font-size:32px;
  font-weight:700;
  line-height:1;
}

.brand span{
  color:var(--accent);
}

.profile-wrap{
  max-width:980px;
  margin:0 auto;
  padding:30px 20px 40px;
}

.profile-header{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:40px;
  align-items:start;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}

.profile-avatar{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.profile-avatar img{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

.profile-main{
  min-width:0;
}

.profile-topline{
  display:grid;
  grid-template-columns:auto auto auto;
  align-items:start;
  column-gap:14px;
  margin-bottom:22px;
}

.profile-topline h1{
  grid-column:1;
  grid-row:1;
  margin:0;
}

.profile-badge{
  grid-column:2;
  grid-row:1;
  justify-self:start;
  align-self:center;
}

.profile-topline > a.profile-cta{
  grid-column:3;
  grid-row:1;
  justify-self:start;
  align-self:center;
  margin-left:0;
}

.profile-actions{
  grid-column:3;
  grid-row:1 / span 2;
  display:flex;
  flex-direction:column;
  align-items:start;
  gap:10px;
  margin-left:130px;
}

.profile-actions .profile-cta{
  width:160px;
  text-align:center;
  box-sizing:border-box;
}

.profile-topline h1{
  margin:0;
  font-size:28px;
  font-weight:400;
}

.profile-stats{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  margin-bottom:22px;
  font-size:17px;
}



.profile-stats strong{
  font-weight:600;
}

.profile-bio{
  font-size:16px;
  line-height:1.45;
}

.profile-name{
  font-weight:600;
  margin-bottom:4px;
}

.profile-tabs{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
  border-bottom:1px solid var(--line);
  margin-bottom:16px;
}

.profile-tabs a{
  height:54px;
  display:flex;
  align-items:center;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  border-top:1px solid transparent;
}

.profile-tabs a.active{
  color:var(--text);
  border-top-color:var(--text);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}

.card{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#f2f2f2;
}

.card img,
.card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card img{
  object-position:center top;
}

@media (min-width:1024px){
  .profile-wrap{
    padding-left:12px;
    padding-right:12px;
  }
}

@media (max-width:720px){
  .grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .profile-wrap{
    padding:16px 0 30px;
  }

  .profile-header{
    grid-template-columns:96px 1fr;
    gap:18px;
    padding:0 16px 20px;
  }

  .profile-avatar img{
    width:84px;
    height:84px;
  }

  .profile-topline{
    margin-bottom:14px;
  }

  .profile-topline h1{
    font-size:24px;
  }

  .profile-stats{
    gap:18px;
    margin-bottom:14px;
    font-size:15px;
  }

  .profile-bio{
    font-size:14px;
  }

  .profile-tabs{
    gap:22px;
  }
}

.card{
  position:relative;
  cursor:pointer;
}

.card::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
  transition:.25s;
}

.card:hover::after{
  background:rgba(0,0,0,0.25);
}

.card-info{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:600;
  opacity:0;
  transition:.25s;
}

.card:hover .card-info{
  opacity:1;
}


.profile-header{
  grid-template-columns:190px 1fr;
  gap:46px;
  padding-bottom:34px;
}

.profile-avatar img{
  width:164px;
  height:164px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.profile-topline{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}

.profile-topline h1{
  margin:0;
  font-size:30px;
  font-weight:300;
  letter-spacing:-.02em;
}

.profile-badge{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#f8d3e3,#f5efe8);
  color:#9d3a63;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
}

.profile-stats{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  margin-bottom:18px;
  font-size:17px;
}



.profile-stats strong{
  font-weight:700;
}

.profile-bio{
  font-size:16px;
  line-height:1.5;
  max-width:520px;
}

.profile-name{
  font-weight:700;
  margin-bottom:2px;
}

.profile-tagline{
  color:#9d3a63;
  margin-top:6px;
  font-weight:500;
}

.profile-tabs{
  margin-bottom:18px;
}

.profile-tabs a{
  position:relative;
}

.profile-tabs a.active{
  color:#111;
}

.profile-tabs a.active::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:2px;
  background:#111;
}

@media (max-width:720px){
  .profile-header{
    grid-template-columns:96px 1fr;
    gap:18px;
    padding:0 16px 22px;
  }

  .profile-avatar img{
    width:92px;
    height:92px;
  }

  .profile-topline h1{
    font-size:24px;
  }

  .profile-badge{
    height:24px;
    padding:0 10px;
    font-size:11px;
  }

  .profile-stats{
    gap:16px;
    font-size:15px;
  }

  .profile-bio{
    font-size:14px;
  }
}


.profile-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#f7d6e6,#f2e9e4);
  color:#9d3a63;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  margin-left:12px;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(157,58,99,.15);
}

.profile-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(157,58,99,.25);
  background:linear-gradient(135deg,#f4c4dc,#efe3dc);
}

.profile-cta:active{
  transform:translateY(0);
  box-shadow:0 2px 8px rgba(157,58,99,.15);
}


body.modal-open{
  overflow:hidden;
}

.card-new-badge{
  position:absolute;
  top:8px;
  left:8px;
  z-index:4;
  background:#e1306c;
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.8px;
  padding:3px 7px;
  border-radius:999px;
  text-transform:uppercase;
  pointer-events:none;
  box-shadow:0 2px 8px rgba(225,48,108,.4);
}

.card-multi{
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;
  color:#fff;
  font-size:18px;
  text-shadow:0 2px 8px rgba(0,0,0,.45);
}

/* extracted from dev-clean.php: inline block 1 */
body{background:radial-gradient(ellipse at 50% 50%, #e6d0da 0%, #eddbe2 20%, #f3e5ea 38%, #faf2f5 62%, #fffafb 82%, #fffefe 100%) !important;}
.grid-shell{
  width:min(860px,calc(100% - 24px));
  margin:16px auto 0;
  padding:16px;
  border-radius:32px;
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.06);
  box-shadow:0 10px 24px rgba(124,72,96,.10);
}



.grid-shell::before{
  content:"";
  position:absolute;
  inset:-34px;
  border-radius:52px;
  background:radial-gradient(ellipse at center,
    rgba(186,146,167,.72) 0%,
    rgba(214,180,196,.52) 26%,
    rgba(238,223,230,.28) 48%,
    rgba(255,255,255,0) 76%);
  z-index:-1;
  pointer-events:none;
}



@media (max-width: 640px){

  /* SUPPRESSION totale des boutons noirs */
  .admin-entry{
    display:none !important;
  }

}

/* extracted from dev-clean.php: inline block 2 (lightbox) */
body.modal-open{overflow:hidden}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:24px;
}
.lightbox.active{display:flex}

.lightbox-shell.insta-post{
  position:relative;
  width:min(1280px,96vw);
  height:min(90vh,900px);
  display:grid;
  grid-template-columns:72px minmax(0,1fr) 72px 380px;
  align-items:stretch;
}

.lightbox-stage{
  grid-column:2;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-stage img{
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  display:block;
}

.lightbox-nav{
  align-self:center;
  justify-self:center;
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox-nav.prev{grid-column:1}
.lightbox-nav.next{grid-column:3}

.lightbox-close{
  position:absolute;
  top:-4px;
  right:0;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:5;
}

.lightbox-side{
  grid-column:4;
  background:#fff;
  color:#111;
  display:flex;
  flex-direction:column;
  min-width:0;
  height:min(90vh,900px);
  max-height:min(90vh,900px);
  overflow:hidden;
}
.lightbox-side-header{
  padding:16px 18px;
  border-bottom:1px solid #dbdbdb;
}
.lightbox-side-user{
  display:flex;
  align-items:center;
  gap:12px;
}
.lightbox-side-user img{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
}
.lb-username{
  font-size:14px;
  font-weight:600;
  line-height:1.2;
}

.lightbox-side-body{background:#fcf8fa;
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding:14px 18px 18px;
}
.lightbox-caption-block{
  font-size:14px;
  line-height:1.45;
  white-space:pre-wrap;
  margin-bottom:14px;
}
.lightbox-caption-user{
  font-weight:600;
  margin-right:8px;
}

.lightbox-comments{
  border-top:1px solid #efefef;
  padding-top:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.comment-block{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.comment-line{
  font-size:14px;
  line-height:1.4;
  color:#111;
}
.comment-line .pseudo{
  font-weight:600;
}
.reply-line{
  margin-left:24px;
  color:#333;
}
.comment-del-btn{
  border:none;
  background:none;
  color:#c0392b;
  font-size:11px;
  cursor:pointer;
  padding:0 4px;
  opacity:0.6;
  vertical-align:middle;
}
.comment-del-btn:hover{opacity:1;}

.comment-actions{
  margin-left:24px;
  margin-top:-2px;
}
.comment-reply-btn{
  border:none;
  background:none;
  padding:0;
  font:inherit;
  font-size:12px;
  color:#737373;
  cursor:pointer;
}
.comment-reply-btn:hover{
  color:#111;
}

.lightbox-side-footer{
  padding:16px 18px 18px;
  border-top:1px solid #dbdbdb;
}
.lightbox-counter{
  font-size:12px;
  color:#737373;
  margin-bottom:14px;
}
.lightbox-metrics{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:16px;
}
.metric{
  display:flex;
  align-items:baseline;
  gap:8px;
}
.metric strong{
  font-size:16px;
  font-weight:700;
  color:#111;
}
.metric span{
  font-size:13px;
  color:#737373;
}

.reply-target{
  display:none;
  margin-bottom:10px;
  font-size:12px;
  color:#737373;
}
.reply-target.active{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.reply-target-clear{
  border:none;
  background:none;
  padding:0;
  font:inherit;
  font-size:12px;
  color:#111;
  cursor:pointer;
}

.lightbox-reply-form{
  padding-top:16px;
  border-top:1px solid #dbdbdb;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lightbox-reply-form textarea{
  width:100%;
  min-height:92px;
  resize:vertical;
  border:1px solid #dbdbdb;
  border-radius:10px;
  padding:12px 14px;
  font:inherit;
  color:#111;
  background:#fff;
  outline:none;
}
.lightbox-reply-form button{
  align-self:flex-end;
  border:none;
  border-radius:999px;
  background:#0095f6;
  color:#fff;
  font:inherit;
  font-weight:600;
  padding:10px 16px;
  cursor:pointer;
}

.card-multi{
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;
  color:#fff;
  font-size:18px;
  text-shadow:0 2px 8px rgba(0,0,0,.45);
}

.card-video{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
  pointer-events:none;
}

.card-video::before{
  content:'▶';
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.42);
  color:#fff;
  font-size:20px;
  text-shadow:0 2px 8px rgba(0,0,0,.35);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.card-pin{
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:20;
  border:none;
  border-radius:999px;
  background:rgba(17,17,17,.72);
  color:#fff;
  font:inherit;
  font-size:14px;
  font-weight:700;
  padding:7px 10px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.card-pin:hover{
  background:rgba(17,17,17,.9);
}

.card-delete{
  position:absolute;
  left:10px;
  bottom:10px;
  z-index:20;
  border:none;
  border-radius:999px;
  background:rgba(220,38,38,.96);
  color:#fff;
  width:32px;
  height:32px;
  padding:0;
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.card-delete:hover{
  background:rgba(185,28,28,.98);
}
.card-text-inner{
  white-space:pre-wrap;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  padding:36px 28px;
  box-sizing:border-box;
  text-align:center;

  font-family:"Georgia","Times New Roman",serif;
  font-size:20px;
  line-height:1.5;
  font-weight:500;

  color:#5a2f3f;

  background:linear-gradient(180deg,#fdf6f8 0%, #f6e4ea 100%);
  border-radius:18px;

  box-shadow:
    0 10px 25px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.6);

  position:relative;
}

.card-text-inner::after{
  content:"Léa";
  position:absolute;
  bottom:14px;
  right:18px;
  font-size:14px;
  font-style:italic;
  opacity:.55;
}

.card.text{
  background:transparent;
  padding:0;
  overflow:hidden;
}

.card-video-label{
  position:absolute;
  top:10px;
  right:10px;
  z-index:4;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(0,0,0,.52);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  pointer-events:none;
}

.load-more-btn{
  display:block;
  margin:24px auto 32px;
  padding:12px 32px;
  border:none;
  border-radius:999px;
  background:rgba(240,203,215,.6);
  color:#b05c82;
  font:700 15px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  cursor:pointer;
  transition:background .2s;
}
.load-more-btn:hover{background:rgba(240,203,215,.9);}

@media (max-width:980px){
  body.modal-open{overflow:hidden}

  .lightbox{
    padding:0;
    overflow:hidden;
    align-items:flex-start;
    display:none;
  }

  .lightbox.active{
    display:block;
    overflow:hidden;
  }

  .lightbox-shell.insta-post{
    width:100%;
    height:100vh;
    height:100dvh;
    overflow-y:scroll;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
    display:block;
  }

  .lightbox-stage{
    display:block;
    background:#000;
  }

  .lightbox-stage img,
  .lightbox-stage video{
    display:block;
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
  }

  .lightbox-side{
    display:block;
    height:auto;
    max-height:none;
    overflow:visible;
  }

  .lightbox-side-body{
    overflow:visible;
    max-height:none;
  }

  .lightbox-side-footer{
    border-top:1px solid #dbdbdb;
    padding:16px 18px 100px;
  }
  .lightbox-reply-form{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .lightbox-reply-form textarea{
    width:100%;
    min-height:80px;
  }
  .lightbox-reply-form button{
    align-self:flex-end;
  }

  .lightbox-close{
    position:fixed;
    top:10px;
    right:10px;
    z-index:10001;
  }

  .lightbox-nav{
    position:fixed;
    top:38vh;
    z-index:10000;
    width:40px;
    height:40px;
    font-size:20px;
  }

  .lightbox-nav.prev{left:6px}
  .lightbox-nav.next{right:6px}
}

.admin-entry{
  position:fixed;
  top:18px;
  right:18px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  height:44px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(17,17,17,.82);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(8px);
}
.admin-entry:hover{
  background:rgba(17,17,17,.94);
}


.archive-note{
  display:block;
  margin-top:2px;
  padding:0 6px;
  font-size:13px;
  line-height:1.1;
  text-align:center;
  color:#c06a8a;
  font-weight:500;
  letter-spacing:0;
}

.archive-card{
  height:auto !important;
  overflow:visible !important;
  background:transparent !important;
  box-shadow:none !important;
}

.archive-card img,
.archive-card video{
  display:block;
}


.card-wrapper{
  display:flex;
  flex-direction:column;
}


.card-edit-link{
  position:absolute;
  left:48px;
  bottom:10px;
  z-index:20;
  border:none;
  border-radius:999px;
  background:#22c55e;
  color:#fff;
  width:32px;
  height:32px;
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}

/* FIX FINAL VIGNETTES VIDEO GRILLE */
#grid .card.card-video-thumb{
  background:#000 !important;
}

#grid .card.card-video-thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  background:#000 !important;
}

.grid-new-badge{
  position:absolute;
  top:8px;
  right:8px;
  z-index:8;
  display:inline-flex;
  align-items:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  background:linear-gradient(135deg,#f4c4dc,#efe3dc);
  color:#7b2948;
  font-size:11px;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  box-shadow:0 8px 22px rgba(123,41,72,.22);
  pointer-events:none;
}

.grid-new-badge{
  position:absolute !important;
  top:10px !important;
  right:10px !important;
  z-index:9999 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:26px !important;
  padding:0 11px !important;
  border-radius:999px !important;
  background:#ff2f6d !important;
  color:#fff !important;
  font-size:11px !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  text-transform:uppercase !important;
  box-shadow:0 8px 18px rgba(255,47,109,.35) !important;
  pointer-events:none !important;
}

@keyframes leaBadgePulse{
  0%{transform:scale(1);box-shadow:0 8px 22px rgba(123,41,72,.22)}
  50%{transform:scale(1.06);box-shadow:0 10px 28px rgba(123,41,72,.34)}
  100%{transform:scale(1);box-shadow:0 8px 22px rgba(123,41,72,.22)}
}

.grid-new-badge{
  position:absolute !important;
  top:8px !important;
  right:8px !important;
  z-index:9999 !important;
  display:inline-flex !important;
  align-items:center !important;
  height:28px !important;
  padding:0 12px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f4c4dc,#efe3dc) !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.03em !important;
  text-transform:uppercase !important;
  color:#7b2948 !important;
  pointer-events:none !important;
  animation:leaBadgePulse 1.6s ease-in-out infinite !important;
}

@keyframes leaSmallBubblePulse{
  0%{transform:scale(1);box-shadow:0 0 0 0 rgba(244,196,220,.75),0 8px 18px rgba(123,41,72,.24)}
  55%{transform:scale(1.18);box-shadow:0 0 0 8px rgba(244,196,220,0),0 12px 26px rgba(123,41,72,.36)}
  100%{transform:scale(1);box-shadow:0 0 0 0 rgba(244,196,220,0),0 8px 18px rgba(123,41,72,.24)}
}

.grid-new-badge{
  position:absolute !important;
  top:10px !important;
  right:10px !important;
  z-index:9999 !important;
  width:18px !important;
  height:18px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f4c4dc,#efe3dc) !important;
  border:2px solid rgba(255,255,255,.92) !important;
  color:transparent !important;
  font-size:0 !important;
  line-height:0 !important;
  pointer-events:none !important;
  animation:leaSmallBubblePulse 1.35s ease-in-out infinite !important;
}

@keyframes leaGridMessagePulse{
  0%{transform:scale(1);filter:drop-shadow(0 4px 10px rgba(123,41,72,.18))}
  50%{transform:scale(1.22);filter:drop-shadow(0 8px 18px rgba(123,41,72,.34))}
  100%{transform:scale(1);filter:drop-shadow(0 4px 10px rgba(123,41,72,.18))}
}

.grid-new-badge{
  position:absolute !important;
  top:8px !important;
  right:8px !important;
  z-index:9999 !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:inherit !important;
  font-size:22px !important;
  line-height:1 !important;
  pointer-events:none !important;
  animation:leaGridMessagePulse 1.35s ease-in-out infinite !important;
}

.grid-new-badge{
  position:absolute !important;
  top:8px !important;
  right:8px !important;
  z-index:9999 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:22px !important;
  padding:0 9px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f4c4dc,#efe3dc) !important;
  color:#7b2948 !important;
  font-size:10px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  line-height:1 !important;
  text-transform:uppercase !important;
  border:1px solid rgba(255,255,255,.85) !important;
  box-shadow:0 8px 18px rgba(123,41,72,.24) !important;
  pointer-events:none !important;
  animation:leaBadgePulse 1.35s ease-in-out infinite !important;
}
