/* ── Blog / Article Styles — extends home4073.css ─────────────────── */

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  font-size: .8rem;
  color: var(--text-3);
}
.breadcrumb a { color: var(--text-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* Article container */
.article-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

/* Article header */
.article-header {
  padding: 48px 0 32px;
}
.article-header .article-cat {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text);
  margin: 0 0 16px;
}
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: .82rem;
}
.article-header .article-meta strong { color: var(--text-2); }

/* Article body */
.article-body {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
}
.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.4em 0 .8em;
  padding-bottom: .4em;
  border-bottom: 1px solid var(--line);
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.8em 0 .6em;
}
.article-body p { margin: 0 0 1.2em; }
.article-body ul, .article-body ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}
.article-body li { margin-bottom: .5em; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

/* Comparison table */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: .9rem;
}
.article-body th {
  background: var(--bg-2);
  color: var(--text);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--line);
}
.article-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
.article-body tr:hover td { background: rgba(30,35,41,.6); }

/* Tip / Info box */
.tip-box, .info-box {
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  margin: 1.6em 0;
  font-size: .92rem;
}
.tip-box strong, .info-box strong { color: var(--accent); }

/* Table of contents */
.toc-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 0 0 2em;
}
.toc-box h2 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin: 0 0 12px;
}
.toc-box ol {
  margin: 0;
  padding: 0 0 0 1.2em;
  font-size: .9rem;
  line-height: 1.8;
}
.toc-box a { color: var(--text-2); text-decoration: none; }
.toc-box a:hover { color: var(--accent); }

/* Sidebar */
.article-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-cta {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta .cta-badge {
  display: inline-block;
  background: var(--green-glow);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sidebar-cta h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.sidebar-cta p {
  font-size: .85rem;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.55;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-cta .cta-note {
  font-size: .72rem;
  color: var(--text-3);
  margin-top: 10px;
}

/* Rating stars */
.stars { color: #f6d860; letter-spacing: 1px; }

/* Article CTA banner */
.article-cta-banner {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  margin: 3em 0;
}
.article-cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  border: none;
  padding: 0;
}
.article-cta-banner p {
  color: var(--text-2);
  margin: 0 0 22px;
}

/* Related posts */
.related-posts {
  margin: 2em 0;
  padding-top: 2em;
  border-top: 1px solid var(--line);
}
.related-posts h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin: 0 0 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.related-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card .rc-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
  margin-bottom: 8px;
}
.related-card h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* Service page hero */
.service-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(30,35,41,.6) 100%);
  text-align: center;
}
.service-hero .service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.15;
}
.service-hero h1 span { color: var(--accent); }
.service-hero .lead {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.service-hero .hero-actions { justify-content: center; }

/* Channel category grid */
.channel-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 2em 0;
}
.channel-cat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.channel-cat .cc-icon { font-size: 1.8rem; margin-bottom: 8px; }
.channel-cat h3 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}
.channel-cat p { font-size: .78rem; color: var(--text-3); margin: 0; }

/* Blog hub / index */
.blog-hub {
  padding: 60px 0;
}
.blog-hub h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.blog-hub .hub-sub {
  color: var(--text-2);
  font-size: 1rem;
  margin: 0 0 40px;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.blog-card .bc-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
}
.blog-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.blog-card p {
  font-size: .85rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.blog-card .bc-meta {
  font-size: .75rem;
  color: var(--text-3);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

/* Buttons inside article body: `.article-body a` was overriding the button colours */
.article-body a.btn-primary   { color: #181a20; }
.article-body a.btn-secondary { color: var(--text); }
.article-body a.btn-trial     { color: #fff; }
/* ── League / category cards ─────────────────────────────── */
.channel-cats { grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); gap: 16px; }
.channel-cat {
  --cc: #FCD535; --cc-soft: rgba(252,213,53,.13);
  position: relative; overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px 20px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.channel-cat.cc-pl    { --cc: #a78bfa; --cc-soft: rgba(167,139,250,.14); }
.channel-cat.cc-ucl   { --cc: #60a5fa; --cc-soft: rgba(96,165,250,.14); }
.channel-cat.cc-elite { --cc: #f6465d; --cc-soft: rgba(246,70,93,.14); }
.channel-cat.cc-world { --cc: #0ecb81; --cc-soft: rgba(14,203,129,.14); }
.channel-cat::before {
  content: ""; position: absolute; left: 20%; right: 20%; top: -60px; height: 110px;
  background: radial-gradient(ellipse at center, var(--cc), transparent 70%);
  opacity: .18; pointer-events: none;
}
.channel-cat:hover {
  transform: translateY(-3px);
  border-color: var(--cc);
  box-shadow: 0 14px 34px rgba(0,0,0,.42);
}
.channel-cat .cc-icon {
  position: relative;
  width: 52px; height: 52px; margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--cc-soft);
  color: var(--cc);
  font-size: 0;
  transition: transform .18s ease;
}
.channel-cat:hover .cc-icon { transform: scale(1.07) rotate(-4deg); }
.channel-cat .cc-icon svg { width: 27px; height: 27px; fill: currentColor; display: block; }
.channel-cat h3 { position: relative; font-size: .95rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); margin: 0 0 5px; }
.channel-cat p  { position: relative; font-size: .78rem; color: var(--text-3); margin: 0; line-height: 1.5; }
@media (prefers-reduced-motion: reduce) {
  .channel-cat, .channel-cat .cc-icon { transition: none; }
  .channel-cat:hover { transform: none; }
  .channel-cat:hover .cc-icon { transform: none; }
}
/* extra category-card accents + flag tiles */
.channel-cat.cc-sport    { --cc: #0ecb81; --cc-soft: rgba(14,203,129,.14); }
.channel-cat.cc-film     { --cc: #a78bfa; --cc-soft: rgba(167,139,250,.14); }
.channel-cat.cc-quality  { --cc: #60a5fa; --cc-soft: rgba(96,165,250,.14); }
.channel-cat.cc-tv       { --cc: #FCD535; --cc-soft: rgba(252,213,53,.14); }
.channel-cat.cc-flagcard { --cc: #929aa5; --cc-soft: rgba(255,255,255,.07); }
.channel-cat .cc-icon svg.cc-flag {
  width: 30px; height: 22px; border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0,0,0,.5);
}
/* center CTA buttons in the trial/blog call-to-action banner */
.article-cta-banner .hero-actions { justify-content: center; flex-wrap: wrap; }

/* Article images (blog post figures) */
.article-body .article-figure { margin: 28px 0; }
.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.article-body .article-figure figcaption {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--text-3);
  text-align: center;
}