/* /Upcoming/{slug} — upcoming release module */
.ur-page{
  background: #fff;
  color: #222;
  padding-bottom: 32px;
}
.ur-banner-wrap{
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  background: #111;
}
.ur-banner{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.ur-inner{
  padding-top: 20px;
}
.ur-title{
  font-size: 1.75rem;
  font-weight: 800;
  color: #1565c0;
  margin: 0 0 20px;
}
.ur-grid{
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.ur-poster-wrap{
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.ur-poster{
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.ur-box{
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.ur-box-publish{
  border: 2px solid #43a047;
  background: #f1f8f4;
}
.ur-box-desc{
  border: 2px solid #e53935;
  background: #fff5f5;
}
.ur-section-h{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #111;
}
.ur-section-h-accent{
  padding-bottom: 8px;
  border-bottom: 3px solid var(--knight-orange, #ff6a00);
}
.ur-prose{
  font-size: 14px;
  line-height: 1.55;
}
.ur-side-block{
  margin-bottom: 28px;
}
.ur-news-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ur-news-item{
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}
.ur-news-hit{
  display: flex;
  gap: 14px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
}
.ur-news-hit:hover{
  background: #fff7f0;
}
.ur-news-thumb-wrap{
  flex: 0 0 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  align-self: flex-start;
}
.ur-news-thumb{
  width: 120px;
  height: 80px;
  object-fit: cover;
  display: block;
}
.ur-news-title{
  font-weight: 800;
  font-size: 15px;
  color: #111;
  margin-bottom: 6px;
}
.ur-news-excerpt{
  font-size: 13px;
  color: #444;
  line-height: 1.45;
  margin: 0 0 8px;
}
.ur-news-time{
  font-size: 12px;
  color: #777;
}
.ur-picture-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ur-picture-cell{
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #f5f5f5;
}
.ur-picture-cell img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
@media (max-width: 991.98px){
  .ur-grid{
    grid-template-columns: 1fr;
  }
}
