/* Live updates blok: meeliften op artikelstyling, alleen wat extra structuur */
.news-live-updates { margin-top: 24px; }
.news-live-updates__title { margin: 0 0 12px 0; font-size: 1.2rem; }

.news-live-update { padding: 14px 0; border-top: 1px solid rgba(0,0,0,.08); }
@media (prefers-color-scheme: dark){
  .news-live-update { border-top-color: rgba(255,255,255,.10); }
}
.news-live-update:first-child { border-top: 0; padding-top: 0; }
.news-live-update__time { font-weight: 800; opacity: .85; display:inline-block; margin-bottom: 6px; }

.news-live-update__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 560px){
  .news-live-update__gallery { grid-template-columns: repeat(3, 1fr); }
}

.news-live-gimg {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
.news-live-gimg img{
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

/* Viewer */
.liveviewer { position: fixed; inset: 0; z-index: 999999; display: none; }
.liveviewer.is-open { display: block; }
.liveviewer__backdrop { position:absolute; inset:0; background: rgba(0,0,0,.82); }
.liveviewer__ui { position:absolute; inset:0; display:flex; flex-direction:column; padding: 14px; }
.liveviewer__close{
  align-self:flex-end; width: 44px; height: 44px; border-radius: 999px;
  border: 0; font-size: 30px; line-height: 1;
  background: rgba(255,255,255,.12); color: #fff; cursor:pointer;
}
.liveviewer__counter{ color: rgba(255,255,255,.85); font-weight: 700; margin-top: 8px; }
.liveviewer__stage{ flex:1; display:flex; align-items:center; justify-content:center; margin-top: 10px; }
.liveviewer__img{
  max-width: 100%; max-height: 80vh; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  transform: translate(0,0) scale(1);
  transition: transform .08s linear;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.liveviewer-noscroll { overflow: hidden !important; }
