/* LP CARROUSEL GALERIE - Version 5.76 stable
   Enseignements intégrés :
   - le spacer du bandeau reste fixe dans lp-site.php ;
   - le carrousel ne modifie plus sa hauteur/largeur en JavaScript ;
   - pas de ResizeObserver, pas de recalcul au scroll, pas de recalcul au chargement image ;
   - hauteur pilotée uniquement par le réglage admin en % de hauteur fenêtre ;
   - les images sont contenues dans le bloc, centrées verticalement pour répartir l’espace disponible au-dessus et au-dessous du carrousel. */
.lp-carrousel-wrap,
.lp-carrousel-wrap *{
  box-sizing:border-box;
}
.lp-carrousel-wrap{
  position:relative;
  width:100%;
  max-width:1800px;
  height:calc(var(--lp-carousel-height-pct,68) * 1vh);
  min-height:300px;
  margin:0 auto;
  padding:0 20px 0;
  overflow:hidden;
  overflow-anchor:none;
  background:#fff!important;
  --lp-slide-w:min(560px,40vw,calc(var(--lp-carousel-height-pct,68) * 1vh * 1.05));
  --lp-level2-x:26vw;
  --lp-level2-neg:-26vw;
  --lp-level3-x:39vw;
  --lp-level3-neg:-39vw;
}
.lp-carrousel-track{
  position:relative;
  width:100%;
  height:100%;
  min-height:0;
  display:block;
  overflow:hidden;
  touch-action:pan-y;
  background:#fff!important;
}
.lp-carrousel-slide{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:var(--lp-slide-w);
  height:auto;
  padding-bottom:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:transparent;
  transform:translateX(calc(-50% + var(--lp-x,0px))) scale(var(--lp-scale,.7));
  transform-origin:center center;
  pointer-events:none;
  opacity:1;
  transition:transform .45s ease,opacity .35s ease;
  cursor:pointer;
  will-change:transform,opacity;
}
.lp-carrousel-slide::after{
  content:'';
  position:relative;
  display:block;
  flex:0 0 auto;
  width:76%;
  height:30px;
  margin-top:-10px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(0,0,0,.34),rgba(0,0,0,.22) 30%,rgba(0,0,0,.10) 56%,rgba(0,0,0,0) 78%);
  opacity:0;
  transform:scaleX(1.15);
  filter:blur(4px);
  transition:opacity .35s ease,transform .45s ease,filter .45s ease;
  pointer-events:none;
  z-index:0;
}
.lp-carrousel-slide img{
  position:relative;
  z-index:1;
  flex:0 1 auto;
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:calc(100% - 46px);
  object-fit:contain;
  background:transparent;
  opacity:0;
  transform:rotate(var(--lp-img-rot,0deg));
  transform-origin:center center;
  transition:filter .45s ease,opacity .45s ease,transform .45s ease;
  user-select:none;
  -webkit-user-drag:none;
}
.lp-carrousel-slide.lp-active{
  --lp-x:0px;
  --lp-scale:1;
  z-index:5;
  pointer-events:auto;
}
.lp-carrousel-slide.lp-active::after{
  opacity:1;
  transform:scaleX(1.25);
  filter:blur(5px);
}
.lp-carrousel-slide.lp-active img{
  opacity:1;
  filter:none;
  box-shadow:none;
}
.lp-carrousel-slide.lp-prev{
  --lp-x:var(--lp-level2-neg);
  --lp-scale:.78;
  z-index:3;
  pointer-events:auto;
}
.lp-carrousel-slide.lp-next{
  --lp-x:var(--lp-level2-x);
  --lp-scale:.78;
  z-index:3;
  pointer-events:auto;
}
.lp-carrousel-slide.lp-prev::after,
.lp-carrousel-slide.lp-next::after{
  opacity:.50;
  transform:scaleX(1.05);
  filter:blur(4px);
}
.lp-carrousel-slide.lp-prev img,
.lp-carrousel-slide.lp-next img{
  opacity:1;
  filter:blur(4px) brightness(.86);
}
.lp-carrousel-slide.lp-far-prev{
  --lp-x:var(--lp-level3-neg);
  --lp-scale:.5;
  z-index:2;
  pointer-events:auto;
}
.lp-carrousel-slide.lp-far-next{
  --lp-x:var(--lp-level3-x);
  --lp-scale:.5;
  z-index:2;
  pointer-events:auto;
}
.lp-carrousel-slide.lp-far-prev::after,
.lp-carrousel-slide.lp-far-next::after{
  opacity:.24;
  transform:scaleX(.82);
  filter:blur(3px);
}
.lp-carrousel-slide.lp-far-prev img,
.lp-carrousel-slide.lp-far-next img{
  opacity:1;
  filter:blur(8px) brightness(.72);
}
.lp-carrousel-slide.lp-hidden,
.lp-carrousel-slide.lp-hidden-level{
  opacity:0;
  pointer-events:none;
}
.lp-carrousel-slide.lp-hidden img,
.lp-carrousel-slide.lp-hidden-level img,
.lp-carrousel-slide.lp-hidden::after,
.lp-carrousel-slide.lp-hidden-level::after{
  opacity:0;
}
.lp-carrousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.88);
  border:none;
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:18px;
  color:#333;
  cursor:pointer;
  z-index:20;
  transition:background .2s ease;
  box-shadow:0 4px 18px rgba(0,0,0,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:1;
}
.lp-carrousel-arrow:hover,
.lp-carrousel-arrow:focus,
.lp-carrousel-arrow:focus-visible,
.lp-carrousel-arrow:active{
  background:rgba(255,255,255,.88)!important;
  color:#333!important;
  -webkit-text-fill-color:#333!important;
  opacity:1!important;
  visibility:visible!important;
  filter:none!important;
  text-indent:0!important;
  outline:none;
}
.lp-carrousel-prev{left:20px}
.lp-carrousel-next{right:20px}
@media(max-width:760px){
  .lp-carrousel-wrap{
    padding-left:18px;
    padding-right:18px;
    margin-top:-35px;
    margin-bottom:-85px;
    --lp-slide-w:min(560px,58vw,calc(var(--lp-carousel-height-pct,68) * 1vh * 1.05));
    --lp-level2-x:28vw;
    --lp-level2-neg:-28vw;
  }
  .lp-carrousel-slide.lp-prev,
  .lp-carrousel-slide.lp-next{--lp-scale:.70}
  .lp-carrousel-slide.lp-far-prev,
  .lp-carrousel-slide.lp-far-next{opacity:0;pointer-events:none}
  .lp-carrousel-slide.lp-far-prev img,
  .lp-carrousel-slide.lp-far-next img,
  .lp-carrousel-slide.lp-far-prev::after,
  .lp-carrousel-slide.lp-far-next::after{opacity:0}
}
@media(max-width:480px){
  .lp-carrousel-wrap{
    padding-left:12px;
    padding-right:12px;
    --lp-slide-w:min(560px,66vw,calc(var(--lp-carousel-height-pct,68) * 1vh * 1.05));
    --lp-level2-x:24vw;
    --lp-level2-neg:-24vw;
  }
  .lp-carrousel-slide.lp-prev,
  .lp-carrousel-slide.lp-next{--lp-scale:.58}
  .lp-carrousel-arrow{width:38px;height:38px;font-size:16px}
  .lp-carrousel-prev{left:10px}
  .lp-carrousel-next{right:10px}
}

/* 5.17 : l’ombre portée directe de l’image active est supprimée pour éviter le contour ;
   les ombres reviennent sous les images via le pseudo-élément, intégré dans le flux flex. */
.lp-carrousel-wrap.lp-layout-refresh .lp-carrousel-slide,
.lp-carrousel-wrap.lp-layout-refresh .lp-carrousel-slide img{
  transition:none!important;
}

.lp-lightbox{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,.85);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999999;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease;
  padding:2rem;
}
.lp-lightbox.lp-lightbox-open{opacity:1;visibility:visible}
.lp-lightbox-img{
  max-width:90vw;
  max-height:90vh;
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  transform:rotate(var(--lp-lightbox-rot,0deg));
  transform-origin:center center;
}
.lp-lightbox-close{
  position:absolute;
  top:1.5rem;
  right:2rem;
  background:transparent;
  border:none;
  color:#fff;
  font-size:2.5rem;
  line-height:1;
  cursor:pointer;
}

/* 5.21 — Page galerie centrée sur le viewport + fiche détail d’œuvre */
.lp-gallery-page{
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:clamp(18px,2.5vw,38px) clamp(18px,2.6vw,42px) clamp(46px,5vw,72px);
  box-sizing:border-box;
  background:#fff!important;
  color:#333;
  overflow-anchor:none;
  text-align:center;
  position:relative;
  transform:translateX(var(--lp-gallery-center-fix,0px));
}
.lp-gallery-selector,
.lp-gallery-title,
.lp-gallery-hint,
.lp-gallery-grid,
.lp-gallery-empty{
  margin-left:auto;
  margin-right:auto;
}
.lp-gallery-selector,
.lp-gallery-title,
.lp-gallery-hint,
.lp-gallery-empty{
  max-width:min(1680px,calc(100vw - 36px));
}
.lp-gallery-grid{
  width:100%;
  max-width:min(1680px,calc(100vw - 36px));
}
.lp-gallery-selector{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:0;
  margin-bottom:clamp(16px,2vw,26px);
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#555;
}
.lp-gallery-selector select{
  appearance:auto;
  min-width:min(330px,80vw);
  padding:10px 38px 10px 14px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  background:#fff;
  color:#333;
  font-size:15px;
  text-transform:none;
  letter-spacing:.02em;
}
.lp-gallery-selector button{
  display:none;
}
.lp-gallery-title{
  margin-top:0;
  margin-bottom:8px;
  text-align:center;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  font-size:clamp(34px,5vw,68px);
  line-height:1.08;
  font-weight:400;
  color:#333;
}
.lp-gallery-hint{
  margin:0 auto clamp(26px,3vw,42px);
  text-align:center;
  color:rgba(0,0,0,.55);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lp-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(28px,3.2vw,58px);
  align-items:start;
  justify-items:center;
}
.lp-gallery-card{
  width:100%;
  max-width:680px;
  margin:0 auto;
  position:relative;
  cursor:pointer;
  outline:none;
}
.lp-gallery-card:focus-visible .lp-gallery-image-wrap{
  outline:2px solid rgba(0,0,0,.38);
  outline-offset:5px;
}
.lp-gallery-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  aspect-ratio:1/1;
  background:#fff;
  overflow:visible;
}
.lp-gallery-image-wrap::after{
  content:'';
  position:absolute;
  left:14%;
  right:14%;
  bottom:-16px;
  height:32px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(0,0,0,.26),rgba(0,0,0,.13) 42%,rgba(0,0,0,0) 78%);
  filter:blur(5px);
  opacity:.34;
  transform:scaleX(1.05);
  pointer-events:none;
  z-index:0;
  transition:opacity .25s ease,transform .25s ease;
}
.lp-gallery-card img{
  position:relative;
  z-index:1;
  display:block;
  max-width:calc(100% - 30px);
  max-height:calc(100% - 30px);
  width:auto;
  height:auto;
  object-fit:contain;
  box-shadow:none;
  transition:transform .25s ease,filter .25s ease;
}
.lp-gallery-card:hover img,
.lp-gallery-card:focus-visible img{
  transform:translateY(-3px);
}
.lp-gallery-card:hover .lp-gallery-image-wrap::after,
.lp-gallery-card:focus-visible .lp-gallery-image-wrap::after{
  opacity:.48;
  transform:scaleX(1.14);
}
.lp-gallery-card figcaption{
  margin-top:18px;
  text-align:center;
  color:#333;
}
.lp-gallery-art-title{
  display:block;
  font-size:clamp(14px,1.3vw,17px);
  letter-spacing:.06em;
  text-transform:uppercase;
}
.lp-gallery-meta{
  display:block;
  margin-top:6px;
  color:rgba(0,0,0,.58);
  font-size:clamp(12px,1.02vw,14px);
  line-height:1.28;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.lp-gallery-status{
  display:block;
  margin-top:7px;
  color:#1f65b7;
  font-size:clamp(12px,1.05vw,15px);
  line-height:1.25;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
}
.lp-status-available{color:#2f8f46!important;}
.lp-status-neutral{color:#1f65b7!important;}
.lp-status-unavailable{color:#b30000!important;}
.lp-gallery-open-note{
  display:inline-block;
  margin-top:7px;
  padding:4px 10px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(0,0,0,.56);
  background:rgba(255,255,255,.86);
  opacity:.92;
}
.lp-gallery-empty{
  text-align:center;
  color:#666;
  font-size:16px;
}
@media(max-width:900px){
  .lp-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:560px){
  .lp-gallery-page{padding-left:18px;padding-right:18px;}
  .lp-gallery-grid{grid-template-columns:1fr;gap:34px;}
  .lp-gallery-selector{align-items:stretch;flex-direction:column;}
  .lp-gallery-selector label{text-align:center;}
  .lp-gallery-selector select{width:100%;min-width:0;}
}

/* 5.46 — Fiche détail nettoyée
   Objectif : supprimer les règles successives contradictoires et garder une seule logique.
   - PC : image + texte centrés dans la fiche, flèches de vues à gauche/droite de l'image.
   - Mobile : flèches de vues sous l'image, swipe géré en JavaScript.
   - Les boutons gardent le même comportement visuel et restent visibles. */
html.lp-work-modal-is-open,
body.lp-work-modal-is-open{
  overflow:hidden!important;
}
.lp-work-modal,
.lp-work-modal *{
  box-sizing:border-box;
}
.lp-work-modal{
  --lp-modal-vh:100vh;
  --lp-detail-slot:420px;
  position:fixed;
  inset:0;
  z-index:9999998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(12px,1.8vw,24px);
  background:rgba(255,255,255,.80);
  opacity:0;
  visibility:hidden;
  transition:opacity .24s ease,visibility .24s ease;
}
.lp-work-modal.lp-work-modal-open{
  opacity:1;
  visibility:visible;
}
.lp-work-modal-panel{
  position:relative;
  width:min(1180px,calc(100vw - 30px));
  max-width:calc(100vw - 30px);
  height:min(720px,calc(var(--lp-modal-vh,100vh) - 56px));
  max-height:calc(var(--lp-modal-vh,100vh) - 56px);
  padding:14px 18px 16px;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  row-gap:8px;
  align-items:stretch;
  justify-items:center;
  background:#fff;
  color:#333;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 22px 72px rgba(0,0,0,.16);
  overflow:hidden;
}
.lp-work-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:8;
  width:34px;
  height:34px;
  display:block;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#333;
  font-size:0;
  line-height:0;
  cursor:pointer;
  box-shadow:0 4px 18px rgba(0,0,0,.12);
  -webkit-appearance:none;
  appearance:none;
}
.lp-work-modal-close::before,
.lp-work-modal-close::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:15px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transform-origin:center center;
}
.lp-work-modal-close::before{transform:translate(-50%,-50%) rotate(45deg);}
.lp-work-modal-close::after{transform:translate(-50%,-50%) rotate(-45deg);}
.lp-work-modal-head{
  grid-row:1;
  width:100%;
  max-width:calc(100% - 96px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(7px,1vw,12px);
  min-height:0;
}
.lp-work-modal-title-line{
  min-width:0;
  max-width:min(880px,calc(100% - 96px));
  flex:0 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lp-work-modal-title{
  margin:0;
  text-align:center;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  font-size:clamp(28px,3.5vw,50px);
  line-height:1.14;
  font-weight:400;
  color:#333;
  min-width:0;
  max-width:100%;
  white-space:nowrap;
  overflow:visible;
  text-overflow:clip;
}
.lp-work-art-nav,
.lp-work-detail-nav{
  width:38px;
  height:38px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(0,0,0,.10);
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#333;
  -webkit-text-fill-color:#333;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0,0,0,.10);
  -webkit-appearance:none;
  appearance:none;
}
.lp-work-detail-nav{
  border:0;
  width:34px;
  height:34px;
  font-size:19px;
  box-shadow:0 5px 20px rgba(0,0,0,.16);
}
.lp-work-detail-carousel{
  grid-row:2;
  width:100%;
  height:100%;
  min-height:0;
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding:0;
  overflow:hidden;
}
.lp-work-detail-stage{
  position:relative;
  width:100%;
  height:100%;
  min-height:0;
  display:grid;
  grid-template-areas:
    "image"
    "caption"
    "dots";
  grid-template-rows:minmax(0,1fr) auto auto;
  align-items:center;
  justify-items:center;
  overflow:hidden;
}
.lp-work-detail-image-zone{
  grid-area:image;
  position:relative;
  width:100%;
  height:100%;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.lp-work-detail-img{
  display:block;
  width:var(--lp-detail-slot);
  height:var(--lp-detail-slot);
  max-width:calc(100% - 170px);
  max-height:calc(100% - 20px);
  object-fit:contain;
  transform:rotate(var(--lp-detail-rot,0deg));
  transform-origin:center center;
  box-shadow:none;
  filter:drop-shadow(0 16px 28px rgba(0,0,0,.16));
  background:transparent;
  margin:0 auto;
}
.lp-work-detail-nav-row{
  grid-area:image;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(calc(var(--lp-detail-slot) + 126px),calc(100% - 36px));
  height:var(--lp-detail-slot);
  max-height:calc(100% - 20px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  margin:0;
  pointer-events:none;
  z-index:4;
}
.lp-work-detail-nav-row .lp-work-detail-nav{
  pointer-events:auto;
}
.lp-work-detail-caption{
  grid-area:caption;
  width:100%;
  min-height:0;
  margin:8px 0 0;
  padding:0;
  text-align:center;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(0,0,0,.58);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-wrap:nowrap;
}
.lp-work-detail-caption-view{
  display:block;
  white-space:nowrap;
  text-align:center;
}
.lp-work-status,
.lp-gallery-status{
  color:#1f65b7;
}
.lp-status-available{color:#2f8f46!important;}
.lp-status-neutral{color:#1f65b7!important;}
.lp-status-unavailable{color:#b30000!important;}
.lp-work-detail-caption .lp-work-status{
  display:block;
  margin:0;
  text-align:center;
  font-size:clamp(14px,1.25vw,19px);
  line-height:1.15;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  white-space:nowrap;
}
.lp-work-meta{
  display:block;
  margin-top:2px;
  text-align:center;
  color:rgba(0,0,0,.62);
  font-size:clamp(12px,1.05vw,15px);
  line-height:1.25;
  letter-spacing:.07em;
  text-transform:uppercase;
  white-space:nowrap;
}
.lp-work-inquiry{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:6px;
  padding:7px 15px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  color:#333!important;
  -webkit-text-fill-color:#333!important;
  background:rgba(255,255,255,.92);
  text-decoration:none!important;
  font-size:12px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  transition:background .18s ease,transform .18s ease,box-shadow .18s ease;
}
.lp-work-inquiry:hover,
.lp-work-inquiry:focus,
.lp-work-inquiry:focus-visible{
  background:#fff!important;
  color:#333!important;
  -webkit-text-fill-color:#333!important;
  outline:none!important;
}
.lp-work-inquiry:active,
.lp-work-inquiry.lp-button-pressed{
  background:rgba(228,228,228,.96)!important;
  transform:scale(.97)!important;
  box-shadow:inset 0 2px 7px rgba(0,0,0,.12),0 2px 10px rgba(0,0,0,.10)!important;
}
.lp-work-detail-dots{
  grid-area:dots;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin:8px 0 0;
  padding:0;
}
.lp-work-detail-dot{
  width:9px;
  height:9px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(0,0,0,.22);
  cursor:pointer;
  -webkit-appearance:none;
  appearance:none;
}
.lp-work-detail-dot.lp-active{
  background:rgba(0,0,0,.62);
}
.lp-scroll-btn,
.lp-carrousel-arrow,
.lp-work-art-nav,
.lp-work-detail-nav,
.lp-work-modal-close,
.lp-work-detail-dot{
  -webkit-tap-highlight-color:transparent!important;
  touch-action:manipulation!important;
  opacity:1!important;
  visibility:visible!important;
}
.lp-scroll-btn:hover,
.lp-scroll-btn:focus,
.lp-scroll-btn:focus-visible,
.lp-scroll-btn:active,
.lp-carrousel-arrow:hover,
.lp-carrousel-arrow:focus,
.lp-carrousel-arrow:focus-visible,
.lp-carrousel-arrow:active,
.lp-work-art-nav:hover,
.lp-work-art-nav:focus,
.lp-work-art-nav:focus-visible,
.lp-work-art-nav:active,
.lp-work-detail-nav:hover,
.lp-work-detail-nav:focus,
.lp-work-detail-nav:focus-visible,
.lp-work-detail-nav:active,
.lp-work-modal-close:hover,
.lp-work-modal-close:focus,
.lp-work-modal-close:focus-visible,
.lp-work-modal-close:active{
  color:#333!important;
  -webkit-text-fill-color:#333!important;
  opacity:1!important;
  visibility:visible!important;
  filter:none!important;
  text-indent:0!important;
  outline:none!important;
}
.lp-work-art-nav:hover,
.lp-work-art-nav:focus,
.lp-work-art-nav:focus-visible,
.lp-work-art-nav:active,
.lp-work-detail-nav:hover,
.lp-work-detail-nav:focus,
.lp-work-detail-nav:focus-visible,
.lp-work-detail-nav:active,
.lp-work-modal-close:hover,
.lp-work-modal-close:focus,
.lp-work-modal-close:focus-visible,
.lp-work-modal-close:active{
  background:rgba(255,255,255,.92)!important;
  box-shadow:0 5px 20px rgba(0,0,0,.16);
}
.lp-button-pressed,
.lp-scroll-btn.lp-button-pressed,
.lp-work-art-nav.lp-button-pressed,
.lp-work-detail-nav.lp-button-pressed,
.lp-work-modal-close.lp-button-pressed,
.lp-work-detail-dot.lp-button-pressed{
  background:rgba(228,228,228,.96)!important;
  transform:scale(.94)!important;
  box-shadow:inset 0 2px 7px rgba(0,0,0,.16),0 2px 10px rgba(0,0,0,.12)!important;
}
.lp-carrousel-arrow.lp-button-pressed{
  background:rgba(228,228,228,.96)!important;
  transform:translateY(-50%) scale(.94)!important;
  box-shadow:inset 0 2px 7px rgba(0,0,0,.16),0 2px 10px rgba(0,0,0,.12)!important;
}
.lp-scroll-hidden{
  display:none!important;
}
@media(max-width:700px){
  .lp-work-modal{
    padding:10px;
    background:rgba(255,255,255,.82);
  }
  .lp-work-modal-panel{
    width:calc(100vw - 30px);
    max-width:calc(100vw - 30px);
    height:calc(var(--lp-modal-vh,100vh) - 72px);
    max-height:calc(var(--lp-modal-vh,100vh) - 72px);
    padding:12px 15px 9px;
    row-gap:6px;
  }
  .lp-work-modal-close{
    top:8px;
    right:8px;
    width:36px;
    height:36px;
  }
  .lp-work-modal-close::before,
  .lp-work-modal-close::after{
    width:14px;
  }
  .lp-work-modal-head{
    max-width:calc(100% - 52px);
    gap:7px;
  }
  .lp-work-modal-title-line{
    max-width:calc(100% - 88px);
  }
  .lp-work-modal-title{
    font-size:clamp(23px,7vw,34px);
    line-height:1.16;
    white-space:normal;
  }
  .lp-work-art-nav{
    width:34px;
    height:34px;
    font-size:16px;
  }
  .lp-work-detail-stage{
    grid-template-areas:
      "image"
      "views"
      "caption"
      "dots";
    grid-template-rows:minmax(0,1fr) auto auto auto;
  }
  .lp-work-detail-img{
    width:var(--lp-detail-slot);
    height:var(--lp-detail-slot);
    max-width:calc(100% - 30px);
    max-height:calc(100% - 10px);
  }
  .lp-work-detail-nav-row{
    grid-area:views;
    position:static;
    transform:none;
    width:auto;
    height:auto;
    max-height:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:42px;
    margin:8px 0 6px;
    pointer-events:auto;
  }
  .lp-work-detail-nav{
    width:34px;
    height:34px;
    font-size:16px;
  }
  .lp-work-detail-caption{
    margin:4px 0 0;
    gap:3px;
  }
  .lp-work-detail-caption-view{
    white-space:normal;
  }
  .lp-work-detail-caption .lp-work-status{
    font-size:12px;
    letter-spacing:.07em;
    white-space:normal;
  }
  .lp-work-meta{
    font-size:11px;
    letter-spacing:.055em;
    white-space:normal;
  }
  .lp-work-inquiry{
    margin-top:5px;
    padding:7px 12px;
    font-size:10px;
    letter-spacing:.065em;
  }
  .lp-work-detail-dots{
    margin-top:6px;
  }
}

/* 5.50 — bouton de détail dans la lightbox du carrousel + page À propos */
.lp-lightbox-detail-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:24px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.92);
  color:#222;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}
.lp-lightbox-detail-link:hover,
.lp-lightbox-detail-link:focus,
.lp-lightbox-detail-link:focus-visible{
  background:#fff!important;
  color:#222!important;
  -webkit-text-fill-color:#222!important;
  opacity:1!important;
  visibility:visible!important;
  outline:none!important;
}
.lp-lightbox-detail-link:active,
.lp-lightbox-detail-link.lp-button-pressed{
  background:rgba(228,228,228,.96)!important;
  transform:scale(.97)!important;
}
.lp-work-detail-img{
  cursor:zoom-in;
}
.lp-work-lightbox{
  z-index:10000000;
}
@media(max-width:600px){
  .lp-lightbox-detail-link{
    margin-top:clamp(22px,7vh,48px);
    max-width:calc(100vw - 44px);
    text-align:center;
  }
}

/* 5.60 — Page À propos : espace latéral progressif, de x à 2x en pleine largeur
   Principe : la section garde le centrage robuste de la galerie.
   Sur PC uniquement, un espace invisible est ajouté à droite du bloc Présentation
   et à gauche du bloc Démarche pour décaler subtilement les textes sans casser le centrage global. */
.entry-content > .lp-about-page,
.wp-site-blocks .lp-about-page,
.lp-about-page{
  box-sizing:border-box!important;
  position:relative!important;
  display:block!important;
  float:none!important;
  clear:both!important;
  left:auto!important;
  right:auto!important;
  top:auto!important;
  bottom:auto!important;
  width:100vw!important;
  max-width:none!important;
  min-width:0!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  margin-top:0!important;
  padding:clamp(42px,5vw,74px) clamp(20px,4vw,72px) clamp(56px,7vw,96px)!important;
  background:#fff!important;
  color:#333!important;
  overflow-x:hidden!important;
  overflow-anchor:none!important;
  text-align:center!important;
  transform:translateX(var(--lp-about-center-fix,0px))!important;
}
.lp-about-page,
.lp-about-page *{
  box-sizing:border-box!important;
}
.lp-about-shell{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
  margin:0 auto!important;
  padding:0!important;
  text-align:center!important;
}
.lp-about-header{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  margin:0 auto!important;
  padding:0!important;
  text-align:center!important;
}
.lp-about-header h1{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  margin:0 auto clamp(40px,4.8vw,66px)!important;
  padding:0!important;
  text-align:center!important;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif!important;
  font-size:clamp(46px,5.1vw,76px)!important;
  line-height:1.05!important;
  font-weight:400!important;
  color:#333!important;
}
.lp-about-presentation,
.lp-about-approach-layout{
  --lp-about-offset-space:clamp(120px,14vw,300px);
  display:grid!important;
  gap:clamp(42px,4.6vw,72px)!important;
  align-items:center!important;
  justify-content:center!important;
  justify-items:stretch!important;
  width:min(1440px, calc(100vw - 120px))!important;
  max-width:calc(100vw - 40px)!important;
  min-width:0!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding:0!important;
  text-align:left!important;
}
.lp-about-presentation{
  grid-template-columns:minmax(0,520px) minmax(0,520px) var(--lp-about-offset-space)!important;
}
.lp-about-presentation .lp-about-copy{grid-column:1!important;}
.lp-about-presentation .lp-about-main-figure{grid-column:2!important;}
.lp-about-presentation::after{content:"";display:block!important;grid-column:3!important;min-width:0!important;}
.lp-about-approach-layout{
  grid-template-columns:var(--lp-about-offset-space) minmax(0,520px) minmax(0,520px)!important;
}
.lp-about-approach-layout::before{content:"";display:block!important;grid-column:1!important;min-width:0!important;}
.lp-about-approach-layout .lp-about-approach-figure{grid-column:2!important;}
.lp-about-approach-layout .lp-about-approach-copy{grid-column:3!important;}
.lp-about-copy,
.lp-about-approach-copy,
.lp-about-figure{
  width:100%!important;
  max-width:520px!important;
  min-width:0!important;
  margin:0 auto!important;
  padding:0!important;
}
.lp-about-copy h2,
.lp-about-section h2{
  margin:0 0 20px!important;
  padding:0!important;
  text-align:center!important;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif!important;
  font-size:clamp(32px,3.1vw,48px)!important;
  line-height:1.14!important;
  font-weight:400!important;
  color:#333!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}
.lp-about-richtext p,
.lp-about-events li{
  font-size:clamp(16px,1.08vw,19px)!important;
  line-height:1.72!important;
  margin:0 0 1.15em!important;
  text-align:justify!important;
  text-align-last:left!important;
  hyphens:auto!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
}
.lp-about-figure{
  text-align:center!important;
}
.lp-about-figure img{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:0 auto!important;
  object-fit:cover!important;
  object-position:center center!important;
  box-shadow:0 18px 50px rgba(0,0,0,.10)!important;
  background:#f7f7f7!important;
}
.lp-about-main-figure img{
  height:clamp(430px,34vw,560px)!important;
}
.lp-about-approach-figure img{
  height:clamp(260px,22vw,360px)!important;
}
.lp-about-figure figcaption{
  margin-top:12px!important;
  color:rgba(0,0,0,.55)!important;
  font-size:12px!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
}
.lp-about-section{
  width:100%!important;
  max-width:none!important;
  margin:clamp(66px,7vw,104px) auto 0!important;
  padding:0!important;
}
.lp-about-approach{
  width:100%!important;
  max-width:none!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.lp-about-events{
  width:min(900px, calc(100vw - 80px))!important;
  max-width:calc(100vw - 40px)!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
}
.lp-about-events h2{
  text-align:center!important;
}
.lp-about-events ul{
  display:block!important;
  width:min(860px,100%)!important;
  margin:0 auto!important;
  padding-left:1.2em!important;
  text-align:left!important;
}
.lp-about-events li{
  margin-bottom:.65em!important;
}
/* En largeur intermédiaire, on passe volontairement en une colonne avant que le thème
   ou la justification ne rende le texte trop étroit. */
@media(max-width:980px){
  .entry-content > .lp-about-page,
  .wp-site-blocks .lp-about-page,
  .lp-about-page{
    padding:36px 22px 58px!important;
  }
  .lp-about-shell{
    width:100%!important;
    max-width:none!important;
  }
  .lp-about-header h1{
    margin-bottom:30px!important;
    text-align:center!important;
  }
  .lp-about-presentation,
  .lp-about-approach-layout{
    --lp-about-offset-space:0px;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:28px!important;
    width:min(520px,100%)!important;
    max-width:100%!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .lp-about-presentation::after,
  .lp-about-approach-layout::before{
    content:none!important;
    display:none!important;
  }
  .lp-about-presentation .lp-about-copy,
  .lp-about-presentation .lp-about-main-figure,
  .lp-about-approach-layout .lp-about-approach-figure,
  .lp-about-approach-layout .lp-about-approach-copy{
    grid-column:auto!important;
  }
  /* Présentation : texte puis image ; Démarche : texte puis image, comme validé mobile. */
  .lp-about-presentation{
    flex-direction:column!important;
  }
  .lp-about-approach-layout{
    flex-direction:column-reverse!important;
  }
  .lp-about-copy,
  .lp-about-approach-copy,
  .lp-about-figure{
    width:100%!important;
    max-width:520px!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .lp-about-copy h2,
  .lp-about-section h2{
    text-align:center!important;
  }
  .lp-about-richtext p{
    font-size:16px!important;
    line-height:1.68!important;
    text-align:justify!important;
  }
  .lp-about-main-figure img{
    height:420px!important;
  }
  .lp-about-approach-figure img{
    height:260px!important;
  }
  .lp-about-section,
  .lp-about-approach{
    margin-top:46px!important;
  }
  .lp-about-events{
    width:min(520px,100%)!important;
  }
  .lp-about-events ul{
    width:100%!important;
  }
}

@media(max-width:600px){
  .entry-content > .lp-about-page,
  .wp-site-blocks .lp-about-page,
  .lp-about-page{
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .lp-about-header h1{
    font-size:clamp(42px,12vw,58px)!important;
  }
  .lp-about-main-figure img{
    height:min(420px,92vw)!important;
  }
  .lp-about-approach-figure img{
    height:min(260px,60vw)!important;
  }
}

/* LP Site 5.67 — Page Contact */
.entry-content > .lp-contact-page,
.wp-site-blocks .lp-contact-page,
.lp-contact-page{
  position:relative!important;
  left:50%!important;
  right:auto!important;
  width:100vw!important;
  max-width:100vw!important;
  margin-left:calc(-50vw + var(--lp-contact-center-fix,0px))!important;
  margin-right:0!important;
  padding:52px clamp(18px,4vw,56px) 72px!important;
  box-sizing:border-box!important;
  background:#fff!important;
  color:#333!important;
  overflow:visible!important;
}
.lp-contact-shell{
  width:min(920px,100%)!important;
  max-width:100%!important;
  margin:0 auto!important;
  box-sizing:border-box!important;
}
.lp-contact-header{
  text-align:center!important;
  margin:0 auto 34px!important;
  max-width:760px!important;
}
.lp-contact-header h1{
  margin:0 0 16px!important;
  text-align:center!important;
  font-size:clamp(44px,7vw,82px)!important;
  line-height:.95!important;
  font-weight:400!important;
  letter-spacing:.02em!important;
}
.lp-contact-header p{
  margin:0 auto!important;
  font-size:17px!important;
  line-height:1.65!important;
  text-align:justify!important;
  text-align-last:center!important;
  -webkit-hyphens:auto!important;
  hyphens:auto!important;
  color:#555!important;
}
.lp-contact-form{
  width:min(760px,100%)!important;
  margin:0 auto!important;
  padding:30px clamp(18px,3vw,36px) 34px!important;
  box-sizing:border-box!important;
  border:1px solid rgba(0,0,0,.08)!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 10px 36px rgba(0,0,0,.055)!important;
}
.lp-contact-grid{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:18px 20px!important;
}
.lp-contact-form p{
  margin:0 0 18px!important;
}
.lp-contact-form label{
  display:block!important;
  font-size:13px!important;
  line-height:1.35!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:#555!important;
  font-weight:700!important;
}
.lp-contact-form input,
.lp-contact-form select,
.lp-contact-form textarea{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  margin-top:8px!important;
  padding:11px 12px!important;
  box-sizing:border-box!important;
  border:1px solid rgba(0,0,0,.20)!important;
  border-radius:0!important;
  background:#fff!important;
  color:#333!important;
  font:inherit!important;
  font-size:16px!important;
  line-height:1.35!important;
  letter-spacing:normal!important;
  text-transform:none!important;
}
.lp-contact-form textarea{
  resize:vertical!important;
  min-height:170px!important;
}
.lp-contact-submit{
  text-align:center!important;
  margin:24px 0 0!important;
}
.lp-contact-submit button{
  border:1px solid rgba(0,0,0,.30)!important;
  background:#fff!important;
  color:#333!important;
  padding:12px 28px!important;
  cursor:pointer!important;
  font-size:14px!important;
  line-height:1!important;
  letter-spacing:.10em!important;
  text-transform:uppercase!important;
  font-weight:700!important;
  transition:background .12s ease,transform .12s ease,box-shadow .12s ease!important;
}
.lp-contact-submit button:hover,
.lp-contact-submit button:focus{
  background:#f0f0f0!important;
  outline:none!important;
}
.lp-contact-submit button:active{
  background:#e4e4e4!important;
  transform:scale(.98)!important;
}
.lp-contact-optional{
  opacity:.65!important;
  font-weight:400!important;
  letter-spacing:.04em!important;
  text-transform:none!important;
}
.lp-contact-notice{
  width:min(760px,100%)!important;
  margin:0 auto 20px!important;
  padding:14px 18px!important;
  box-sizing:border-box!important;
  border:1px solid rgba(0,0,0,.10)!important;
  text-align:center!important;
}
.lp-contact-success{
  color:#2d6a38!important;
  background:#f2faf4!important;
}
.lp-contact-error{
  color:#9b1c1c!important;
  background:#fff5f5!important;
  text-align:left!important;
}
.lp-contact-error ul{
  margin:0!important;
  padding-left:1.2em!important;
}
.lp-contact-hp{
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
  height:0!important;
  overflow:hidden!important;
}
@media(max-width:760px){
  .entry-content > .lp-contact-page,
  .wp-site-blocks .lp-contact-page,
  .lp-contact-page{
    padding:36px 18px 58px!important;
  }
  .lp-contact-header{
    margin-bottom:26px!important;
  }
  .lp-contact-header h1{
    font-size:clamp(42px,12vw,58px)!important;
  }
  .lp-contact-form{
    padding:24px 18px 28px!important;
  }
  .lp-contact-grid{
    grid-template-columns:1fr!important;
    gap:0!important;
  }
}
/* LP Site 5.70 — Contact : statuts + aperçu agrandi */
.lp-contact-artwork-select{
  margin:2px 0 18px!important;
}
.lp-contact-artwork-preview{
  min-height:168px!important;
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
  padding:12px 14px!important;
  box-sizing:border-box!important;
  border:1px solid rgba(0,0,0,.10)!important;
  background:rgba(0,0,0,.018)!important;
  color:#555!important;
}
.lp-contact-preview-img{
  width:144px!important;
  height:144px!important;
  object-fit:contain!important;
  flex:0 0 144px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.10)!important;
  padding:4px!important;
  box-sizing:border-box!important;
}
.lp-contact-preview-text{
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  min-width:0!important;
}
.lp-contact-preview-title{
  display:block!important;
  font-size:15px!important;
  line-height:1.35!important;
  color:#333!important;
  font-weight:700!important;
  letter-spacing:.02em!important;
  text-transform:none!important;
}
.lp-contact-preview-status{
  display:block!important;
  font-size:14px!important;
  line-height:1.35!important;
  margin-top:4px!important;
  font-weight:700!important;
}
.lp-contact-preview-status.lp-status-available{color:#2c8f45!important}
.lp-contact-preview-status.lp-status-neutral{color:#2b64b1!important}
.lp-contact-preview-status.lp-status-unavailable{color:#b32626!important}
.lp-contact-preview-meta{
  display:block!important;
  font-size:13px!important;
  line-height:1.35!important;
  color:#777!important;
  margin-top:2px!important;
}
.lp-contact-preview-empty{
  font-size:14px!important;
  line-height:1.35!important;
  color:#777!important;
  font-style:italic!important;
}
@media(max-width:760px){
  .lp-contact-artwork-preview{
    align-items:center!important;
    min-height:138px!important;
    padding:10px 12px!important;
  }
  .lp-contact-preview-img{
    width:124px!important;
    height:124px!important;
    flex-basis:124px!important;
  }
}

/* LP Site 5.71 — Contact discret + actions en fiche détail */
.lp-contact-sale-note{
  margin:.7em auto 0!important;
  font-size:14px!important;
  line-height:1.55!important;
  color:rgba(0,0,0,.58)!important;
  text-align:justify!important;
  text-align-last:center!important;
  -webkit-hyphens:auto!important;
  hyphens:auto!important;
}
.lp-work-detail-stage{
  grid-template-areas:
    "image"
    "caption"
    "dots"
    "actions";
  grid-template-rows:minmax(0,1fr) auto auto auto;
}
.lp-work-actions{
  grid-area:actions;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:9px 0 0;
  padding:0 8px;
}
.lp-work-actions .lp-work-inquiry{
  margin:0;
  min-width:178px;
}
.lp-work-inquiry.lp-work-action-disabled,
.lp-work-inquiry.lp-work-action-disabled:hover,
.lp-work-inquiry.lp-work-action-disabled:focus,
.lp-work-inquiry.lp-work-action-disabled:active{
  opacity:.38!important;
  cursor:not-allowed!important;
  background:rgba(245,245,245,.92)!important;
  color:#777!important;
  -webkit-text-fill-color:#777!important;
  transform:none!important;
  box-shadow:none!important;
  pointer-events:auto!important;
}
@media(max-width:700px){
  .lp-work-detail-stage{
    grid-template-areas:
      "image"
      "views"
      "caption"
      "dots"
      "actions";
    grid-template-rows:minmax(0,1fr) auto auto auto auto;
  }
  .lp-work-actions{
    gap:8px;
    margin-top:7px;
    padding:0;
  }
  .lp-work-actions .lp-work-inquiry{
    min-width:0;
    flex:1 1 150px;
    max-width:210px;
    font-size:9.5px;
    padding:7px 8px;
  }
}
.lp-work-inquiry.lp-work-action-disabled.lp-button-pressed{
  opacity:.38!important;
  cursor:not-allowed!important;
  background:rgba(245,245,245,.92)!important;
  color:#777!important;
  -webkit-text-fill-color:#777!important;
  transform:none!important;
  box-shadow:none!important;
}


/* LP Site 5.72 — fiche détail mobile : actions toujours visibles
   Conserve le layout validé, mais réserve plus de hauteur utile aux contrôles bas
   et réduit légèrement la zone image sur mobile pour que les 2 boutons restent visibles. */
@media(max-width:700px){
  .lp-work-modal{
    padding:8px!important;
  }
  .lp-work-modal-panel{
    width:calc(100vw - 18px)!important;
    max-width:calc(100vw - 18px)!important;
    height:calc(var(--lp-modal-vh,100vh) - 24px)!important;
    max-height:calc(var(--lp-modal-vh,100vh) - 24px)!important;
    padding:10px 12px 10px!important;
    row-gap:4px!important;
  }
  .lp-work-detail-stage{
    grid-template-rows:minmax(90px,1fr) auto auto auto auto!important;
    row-gap:0!important;
  }
  .lp-work-detail-img{
    max-width:calc(100% - 30px)!important;
    max-height:calc(100% - 22px)!important;
  }
  .lp-work-detail-nav-row{
    margin:5px 0 3px!important;
  }
  .lp-work-detail-caption{
    margin:2px 0 0!important;
    gap:2px!important;
  }
  .lp-work-detail-dots{
    margin:4px 0 0!important;
    gap:7px!important;
  }
  .lp-work-actions{
    margin-top:6px!important;
    gap:6px!important;
    padding:0!important;
    flex-wrap:nowrap!important;
    width:100%!important;
  }
  .lp-work-actions .lp-work-inquiry{
    flex:1 1 0!important;
    min-width:0!important;
    max-width:none!important;
    padding:7px 5px!important;
    font-size:9px!important;
    line-height:1.05!important;
    letter-spacing:.045em!important;
    white-space:normal!important;
    min-height:30px!important;
  }
}
@media(max-width:370px){
  .lp-work-modal-title{font-size:clamp(20px,6.2vw,28px)!important;}
  .lp-work-art-nav{width:31px!important;height:31px!important;}
  .lp-work-detail-nav{width:31px!important;height:31px!important;}
  .lp-work-detail-caption .lp-work-status{font-size:11px!important;}
  .lp-work-meta{font-size:10.5px!important;}
  .lp-work-actions .lp-work-inquiry{font-size:8.6px!important;padding-left:4px!important;padding-right:4px!important;}
}
