/* SINGLE-CASE-STUDY.CSS - Page Scoped Styles */

/* ── Reset & Global Scope Rules ── */
  body { font-family:'Avenir Next','Avenir',sans-serif!important; margin:0!important; background:#ffffff!important; color:#3d4a5c; }
  footer a,header a { text-decoration:none!important; color:inherit!important; }
  footer ul { list-style:none!important; padding:0!important; margin:0!important; }
  footer h4 { font-size:1rem!important; font-weight:700!important; margin-bottom:1rem!important; color:#000!important; }
  footer p  { margin:0!important; }
  footer > div { display:grid!important; }
  footer .flex  { display:flex!important; }
  footer > div.border-t { text-align:center!important; }
  header { text-align:left!important; }

  #single-cs-scope { background:#ffffff; overflow-x:hidden; }

  #single-cs-scope h1,
  #single-cs-scope h2,
  #single-cs-scope h3,
  #single-cs-scope h4,
  #single-cs-scope .heading-font {
    font-family: 'Urbanist', 'Helvetica Neue', sans-serif !important;
    font-weight: 700;
  }
  #single-cs-scope p,
  #single-cs-scope span,
  #single-cs-scope a,
  #single-cs-scope div,
  #single-cs-scope .body-font {
    font-family: 'Avenir Next', 'Avenir', sans-serif;
  }

  /* ── Page Container Matching Header & Footer Width (1280px max-w-7xl, 5% px) ── */
  #single-cs-scope .container {
    max-width: 1280px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ── Breadcrumb ── */
  #single-cs-scope .cs-breadcrumb {
    font-size: 13.5px;
    color: #94a3b8;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: left !important;
  }
  #single-cs-scope .cs-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  #single-cs-scope .cs-breadcrumb a:hover {
    color: #0f3cd9;
  }

  /* ── Category Yellow Pill Badge ── */
  #single-cs-scope .cs-category-pill {
    background: #FFC759 !important;
    color: #1c222b !important;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(255, 199, 89, 0.35);
  }

  /* ── Article Title ── */
  #single-cs-scope .cs-article-title {
    font-size: 40px;
    line-height: 1.25;
    color: #1c222b;
    font-weight: 700;
    max-width: 960px;
    margin: 16px auto 14px;
    text-align: center;
  }

  /* ── Article Date Meta ── */
  #single-cs-scope .cs-date-meta {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  /* ── Featured Image Banner ── */
  #single-cs-scope .cs-featured-banner {
    width: 100%;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
    background: #0f172a;
  }
  #single-cs-scope .cs-featured-banner img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* ── Article Content Body ── */
  #single-cs-scope .cs-content-body {
    width: 100%;
    margin: 0 auto 60px;
    font-size: 16.5px;
    line-height: 1.8;
    color: #475569;
  }
  #single-cs-scope .cs-content-body p {
    margin-bottom: 24px;
  }
  #single-cs-scope .cs-content-body strong {
    color: #1e293b;
    font-weight: 700;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    #single-cs-scope .cs-article-title { font-size: 28px !important; }
    #single-cs-scope .cs-content-body { font-size: 15.5px !important; }
  }

