#grimaldi-watch-stage {
  width: 100%;
  max-width: 80rem;
  margin: 80px auto 28px;
  padding: 0;
  color: #fff;
  scroll-margin-top: 112px;
}

#grimaldi-watch-stage * { box-sizing: border-box; }

.gw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.gw-player-wrap {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
}

.gw-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.gw-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.gw-meta {
  background: #0a0a0a;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gw-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin: 0 0 6px;
}

.gw-meta h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff !important;
}

.gw-sub {
  margin: 0 0 8px;
  font-size: 13px;
  color: #a1a1aa;
}

.gw-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #d4d4d8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gw-desc.is-open {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.gw-more {
  display: none;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.gw-more.is-visible { display: inline-block; }
.gw-more:hover { color: #bfdbfe; }

.gw-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.gw-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #141414;
  color: #fff !important;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gw-links a:hover { background: #1f1f1f; }

.gw-rail {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  max-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
}

.gw-rail-head {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#gw-list {
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gw-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.gw-item:hover { background: #141414; }
.gw-item.is-active {
  background: #172554;
  border-color: #60a5fa;
}

.gw-thumb {
  position: relative;
  width: 112px;
  height: 63px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.gw-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gw-playdot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 16px;
}

.gw-item-title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gw-item-meta {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}

@media (max-width: 1024px) {
  .gw-grid { grid-template-columns: 1fr; }
  .gw-rail { max-height: none; }
  #gw-list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .gw-item { min-width: 260px; }
}
