
/* PVettese Atelier v16 — fiche œuvre lecture seule */
.card{cursor:pointer}
.card:focus-within{outline:2px solid rgba(255,90,165,.22);outline-offset:2px}

#pvArtworkViewer{
  border:0;
  border-radius:22px;
  padding:0;
  width:min(720px,calc(100% - 24px));
  max-height:90vh;
  overflow:auto;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}
#pvArtworkViewer::backdrop{
  background:rgba(0,0,0,.36);
  backdrop-filter:blur(2px);
}
.pvViewer{
  padding:20px;
  background:#fff;
}
.pvViewerHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}
.pvViewerHead h2{
  margin:0;
  font-size:23px;
}
.pvViewerClose{
  border:0;
  background:#fff0f6;
  color:#b62f6d;
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:50%;
  font-size:21px;
  cursor:pointer;
}
.pvViewerImage{
  display:grid;
  place-items:center;
  width:100%;
  min-height:220px;
  max-height:420px;
  padding:12px;
  border-radius:17px;
  background:#fff8fc;
  margin-bottom:16px;
}
.pvViewerImage img{
  display:block;
  max-width:100%;
  width:auto;
  height:auto;
  max-height:390px;
  object-fit:contain;
}
.pvViewerGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.pvInfo{
  border:1px solid #f0e4eb;
  border-radius:13px;
  padding:10px 12px;
  min-width:0;
}
.pvInfo.full{grid-column:1/-1}
.pvInfoLabel{
  display:block;
  color:#77727a;
  font-size:12px;
  font-weight:700;
  margin-bottom:4px;
}
.pvInfoValue{
  display:block;
  font-size:14px;
  overflow-wrap:anywhere;
  white-space:pre-wrap;
}
.pvViewerFoot{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}
.pvViewerEdit{
  border:0;
  border-radius:14px;
  padding:12px 18px;
  min-height:44px;
  font-weight:700;
  background:#ff5aa5;
  color:white;
  cursor:pointer;
}
@media(max-width:760px){
  #pvArtworkViewer{
    width:calc(100% - 10px);
    max-height:calc(100dvh - 10px);
    border-radius:17px;
  }
  .pvViewer{padding:13px}
  .pvViewerHead h2{font-size:19px}
  .pvViewerImage{
    min-height:170px;
    max-height:310px;
    padding:8px;
  }
  .pvViewerImage img{max-height:290px}
  .pvViewerGrid{grid-template-columns:1fr}
  .pvInfo.full{grid-column:auto}
  .pvViewerFoot{position:sticky;bottom:0;background:white;padding-top:10px}
  .pvViewerEdit{width:100%}
}
