.live-screen-gallery,
.live-screen-pending {
  border: 1px solid #d9e0e8;
  border-radius: 16px;
  background: #f8fafc;
  padding: 18px;
  margin: 28px 0;
}

.live-screen-label,
.pending-screen-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

.live-screen-label {
  background: #e8f3ff;
  color: #174f87;
}

.live-screen-label::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1f6fb2;
  color: #fff;
  font-size: 0.72rem;
}

.pending-screen-label {
  background: #fff4d6;
  color: #73510a;
}

.live-screen-pending .pending-screen-label {
  margin-bottom: 0;
}

.pending-screen-label::before {
  content: "…";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d89c16;
  color: #fff;
  font-size: 0.72rem;
}

.live-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.live-screen-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.live-screen-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e0e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 51, 73, 0.08);
}

.live-screen-figure a {
  display: block;
  background: #f2f5f8;
}

.live-screen-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.live-screen-figure figcaption {
  padding: 10px 12px;
  color: #34495e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.live-screen-note {
  margin: 14px 2px 0;
  color: #5b6775;
  font-size: 0.83rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .live-screen-gallery,
  .live-screen-pending {
    padding: 12px;
  }

  .live-screen-grid {
    grid-template-columns: 1fr;
  }
}
