.home-shorts {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.shorts-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.short-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.short-card .poster {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1c3a;
}
.short-card img, .short-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.short-card .dur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}
.short-card h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 8px 0 0;
  font-weight: 650;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.shorts-watch {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.shorts-player {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  background: #0b1c3a;
  border-radius: 12px;
  overflow: hidden;
}
.shorts-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shorts-related .short-card { flex-basis: 140px; }
@media (max-width: 860px) {
  .shorts-watch { grid-template-columns: 1fr; }
  .shorts-player { margin: 0 auto; }
}
@media (min-width: 861px) {
  .home-shorts .shorts-rail { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .home-shorts .short-card { flex: unset; }
}
