/* ============================================================
   Channel ↔ News integration  (related news under TV schedule)
   ============================================================ */
.channel-news {
  padding: 50px 5% 70px;
  background: #0c0c0c;
}

.channel-news .cn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.channel-news .cn-head h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.9em;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.channel-news .cn-accent {
  display: inline-block;
  width: 5px;
  height: 30px;
  background: #c19114;
  border-radius: 3px;
}

.channel-news .cn-all {
  color: #c19114;
  text-decoration: none;
  font-size: .95em;
  font-weight: 600;
  transition: opacity .2s ease;
}
.channel-news .cn-all:hover { opacity: .7; }

/* Grid of cards */
.channel-news .cn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.channel-news .cn-card {
  display: flex;
  flex-direction: column;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.channel-news .cn-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 145, 20, 0.5);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.9);
}

.channel-news .cn-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #222;
}

.channel-news .cn-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12, 12, 12, 0.85);
  color: #c19114;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.channel-news .cn-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.channel-news .cn-title {
  font-size: 1.08em;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.channel-news .cn-card:hover .cn-title { color: #c19114; }

.channel-news .cn-excerpt {
  font-size: .9em;
  line-height: 1.55;
  color: #aaa;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.channel-news .cn-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82em;
  color: #888;
}

.channel-news .cn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c62307;
}

/* ── Tablet ── */
@media screen and (max-width: 1024px) {
  .channel-news .cn-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media screen and (max-width: 768px) {
  .channel-news { padding: 36px 5% 50px; }
  .channel-news .cn-head h2 { font-size: 1.5em; }
  .channel-news .cn-grid { grid-template-columns: 1fr; gap: 18px; }
}
