/* ============================================================
   Homepage premium enhancements — "Watch Our Channels"
   Brand palette: gold (#c19114) + blue (#2f506f) on dark
   ============================================================ */

/* ── Section heading with gold accent ── */
.home .channel-cards { padding: 5% 5% 50px; }

.home .channel-cards h2 {
  position: relative;
  display: inline-block;
  font-size: 2.1em;
  font-weight: 700;
  margin: 0 0 34px;
  padding-bottom: 14px;
  letter-spacing: -0.3px;
}
.home .channel-cards h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c19114 0%, #2f506f 100%);
}

/* ── Premium channel cards ── */
.home .channel-cards .grid { gap: 22px; }

.home .channel-cards .grid .card {
  position: relative;
  height: 430px;
  padding: 22px;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  row-gap: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
}

.home .channel-cards .grid .card:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 145, 20, 0.55);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.95);
}

/* Editorial bottom-up gradient instead of the flat overlay */
.home .channel-cards .grid .card .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
  background: linear-gradient(to top,
      rgba(10, 11, 14, 0.94) 0%,
      rgba(10, 11, 14, 0.55) 38%,
      rgba(10, 11, 14, 0.12) 70%,
      rgba(10, 11, 14, 0.05) 100%);
  transition: opacity .4s ease;
}

/* LIVE badge (gold dot in a glassy pill) */
.home .channel-cards .grid .card::before {
  content: "LIVE";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  padding: 5px 11px 5px 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 13px center, #c19114 0 4px, transparent 4.6px),
    rgba(8, 9, 12, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
/* pulsing ring around the live dot */
.home .channel-cards .grid .card::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 0 rgba(193, 145, 20, 0.8);
  animation: ch-pulse 1.6s infinite;
  pointer-events: none;
}
@keyframes ch-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(193, 145, 20, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(193, 145, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 145, 20, 0); }
}

/* Content above the overlay */
.home .channel-cards .grid .card .title,
.home .channel-cards .grid .card .desc,
.home .channel-cards .grid .card button {
  position: relative;
  z-index: 3;
}

.home .channel-cards .grid .card .title {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  margin: 0;
}
.home .channel-cards .grid .card .title::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #c19114;
  border-radius: 2px;
  margin-bottom: 12px;
  transition: width .4s ease;
}
.home .channel-cards .grid .card:hover .title::before { width: 56px; }

.home .channel-cards .grid .card .desc {
  font-size: .98em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home .channel-cards .grid .card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82em;
  letter-spacing: .6px;
  cursor: pointer;
  background: #c19114;
  color: #111;
  box-shadow: 0 10px 24px -12px rgba(193, 145, 20, 0.7);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.home .channel-cards .grid .card button::after {
  content: "›";
  font-size: 1.25em;
  line-height: 1;
  margin-top: -2px;
  transition: transform .2s ease;
}
.home .channel-cards .grid .card button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -12px rgba(193, 145, 20, 0.85);
}
.home .channel-cards .grid .card button:hover::after { transform: translateX(4px); }

/* ── Responsive ── */
@media screen and (max-width: 1200px) {
  .home .channel-cards .grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 820px) {
  .home .channel-cards .grid { grid-template-columns: repeat(2, 1fr); }
  .home .channel-cards .grid .card { height: 360px; }
}
@media screen and (max-width: 520px) {
  .home .channel-cards .grid { grid-template-columns: 1fr; }
  .home .channel-cards .grid .card { height: 340px; }
}

/* ============================================================
   TRENDING NOW — modern news feature block
   ============================================================ */
.home .story-cards > h2 {
  position: relative;
  display: inline-block;
  font-size: 2.1em;
  font-weight: 700;
  margin: 0 0 30px;
  padding-bottom: 14px;
  letter-spacing: -0.3px;
}
.home .story-cards > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c19114 0%, #2f506f 100%);
}

/* Cards → deeper, bordered, premium */
.home .story-cards .news-slider .main-article,
.home .story-cards .news-slider .article-list {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.home .story-cards .news-slider .main-article {
  transition: border-color .3s ease, box-shadow .3s ease;
}
.home .story-cards .news-slider .main-article:hover {
  border-color: rgba(193, 145, 20, 0.4);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.9);
}

/* Read-more as a solid premium button */
.home .story-cards .news-slider .main-article .main-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c19114;
  color: #111;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .4px;
  box-shadow: 0 10px 24px -12px rgba(193, 145, 20, 0.65);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home .story-cards .news-slider .main-article .main-content .read-more::after {
  content: "›"; font-size: 1.25em; line-height: 1; margin-top: -2px; transition: transform .2s ease;
}
.home .story-cards .news-slider .main-article .main-content .read-more:hover {
  transform: translateY(-2px);
  color: #111;
}
.home .story-cards .news-slider .main-article .main-content .read-more:hover::after { transform: translateX(4px); }

/* Article list rows — gold hover + active highlight */
.home .story-cards .news-slider .article-list .article {
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background .2s ease;
}
.home .story-cards .news-slider .article-list .article:hover,
.home .story-cards .news-slider .article-list .article.is-active {
  background: rgba(193, 145, 20, 0.08);
}
.home .story-cards .news-slider .article-list .article.is-active .article-info h3 {
  color: #c19114;
}
.home .story-cards .news-slider .article-list .article img.thumb {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.home .story-cards .news-slider .article-list .article .article-info h3 {
  transition: color .2s ease;
}
.home .story-cards .news-slider .article-list .article:hover .article-info h3 { color: #c19114; }

/* Up/down controls → branded */
.home .story-cards .news-slider .article-list .controls .btn {
  background: rgba(193, 145, 20, 0.14);
  color: #c19114;
  border: 1px solid rgba(193, 145, 20, 0.3);
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.home .story-cards .news-slider .article-list .controls .btn:hover {
  background: #c19114;
  color: #111;
}
