/* ================================================================
   building.css  —  Freshora Case Study Detail Page
   Scoped prefix: .cs-
   NO global overrides — no body, *, font-family selectors
================================================================ */
/* Breadcrumb */
        .tz-breadcrumb {
            padding: 180px 0 120px;
            background: linear-gradient(rgba(10, 15, 26, 0.8), rgba(10, 15, 26, 0.9));
            background-blend-mode: overlay;
            background-size: cover;
            background-position: center;
              background-repeat: no-repeat;
        }
.tz-breadcrumb {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(10, 15, 26, 0.8), rgba(10, 15, 26, 0.9)), url(../images/case-studies/case-study-inner-banner.webp);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}
        .tz-breadcrumb__title {
            text-align: center;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

       
         .tz-breadcrumb__title {
            text-align: center;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .tz-breadcrumb__content {
    position: relative;
    z-index: 2
}

.tz-breadcrumb__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 10px
}

.tz-breadcrumb__item {
    color: #FFF

}
.tz-breadcrumb__list {
    list-style-type: none;
}

.tz-breadcrumb__item {
    list-style-type: none;
}
.tz-breadcrumb__item a {
    text-decoration: none;
    color: #FFF

}

.tz-breadcrumb__item.active {
    color: #85c815
}

.tz-breadcrumb__overlay {
    /* position: absolute; */
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 0);
    z-index: 1
}
.tz-display-4 {
    font-family: "Teko", serif;
    font-weight: 700;
    font-size: 20px
    
}

@media (min-width:576px) {
    .tz-display-4 {
        font-size: 24px
    }
}

@media (min-width:768px) {
    .tz-display-4 {
        font-size: 32px
    }
}

@media (min-width:992px) {
    .tz-display-4 {
        font-size: 40px
    }
}

@media (min-width:1200px) {
    .tz-display-4 {
        font-size: 48px
    }
}

@media (min-width:1440px) {
    .tz-display-4 {
        font-size: 48px
    }
}

@media (min-width:1680px) {
    .tz-display-4 {
        font-size: 56px
    }
}

/*breadcrumb end*/


/* ── Shared background tokens ─────────────────────────────── */
.cs-bg-dark  { background-color: #171717; }
.cs-bg-white { background-color: #ffffff; }

/* ── Section spacing ──────────────────────────────────────── */
.cs-hero,
.cs-overview,
.cs-challenge,
.cs-strategy,
.cs-results,
.cs-impact,
.cs-takeaways,
.cs-cta,
.cs-related {
  padding: 90px 0;
}

/* ── Typography helpers ───────────────────────────────────── */
.cs-title-light { color: #ffffff; }
.cs-title-dark  { color: #111111; }

.cs-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cs-body-light { color: #b0b0b0; line-height: 1.7; margin-bottom: 16px; }
.cs-body-dark  { color: #444444; line-height: 1.7; margin-bottom: 16px; }

.cs-max-60 { max-width: 680px; }

/* Eyebrow labels */
.cs-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00c896;
  margin-bottom: 14px;
}
.cs-eyebrow-dark { color: #00a87e; }

.cs-label-row { margin-bottom: 6px; }

/* Accent text */
.cs-accent { color: #00c896; }

/* ── Tags ─────────────────────────────────────────────────── */
.cs-hero__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }

.cs-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(0, 200, 150, 0.35);
  border-radius: 100px;
  font-size: 12px;
  color: #00c896;
  letter-spacing: 0.05em;
}

/* ================================================================
   SECTION 1 — HERO
================================================================ */
.cs-hero__inner {
  max-width: 860px;
}

.cs-hero__title {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cs-hero__lead {
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 52px;
  max-width: 680px;
}

/* Snapshot row */
.cs-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.cs-snapshot__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.cs-snapshot__item:last-child { border-right: none; }

.cs-snapshot__val {
  font-size: 42px;
  font-weight: 800;
  color: #00c896;
  line-height: 1;
}

.cs-snapshot__key {
  font-size: 13px;
  color: #888;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ================================================================
   SECTION 2 — OVERVIEW
================================================================ */
.cs-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.cs-cover img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Info table */
.cs-info-table dl { margin: 0; }

.cs-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cs-info-row:last-child { border-bottom: none; }

.cs-info-row dt {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cs-info-row dd {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  text-align: right;
  margin: 0;
}

/* ================================================================
   SECTION 3 — CHALLENGE
================================================================ */
.cs-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cs-challenge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}

.cs-challenge-card:hover {
  border-color: rgba(0, 200, 150, 0.3);
  background: rgba(0, 200, 150, 0.04);
}

.cs-challenge-icon {
  font-size: 28px;
  color: #00c896;
  margin-bottom: 14px;
  line-height: 1;
}

.cs-challenge-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.cs-challenge-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   SECTION 4 — STRATEGY (phases + team)
================================================================ */
.cs-phases {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.cs-phases::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00c896, transparent);
}

.cs-phase {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.cs-phase:last-child { border-bottom: none; }

.cs-phase__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #171717;
  color: #00c896;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 2px solid #00c896;
}

.cs-phase__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  margin-top: 14px;
}

.cs-phase__body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Team grid */
.cs-team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.cs-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 22px 12px;
  gap: 6px;
  text-align: center;
}

.cs-team-num {
  font-size: 36px;
  font-weight: 800;
  color: #00a87e;
  line-height: 1;
}

.cs-team-role {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* ================================================================
   SECTION 5 — RESULTS
================================================================ */
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  margin-bottom: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.cs-result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.03);
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.cs-result-item:nth-child(3),
.cs-result-item:nth-child(6) { border-right: none; }

.cs-result-val {
  font-size: 48px;
  font-weight: 800;
  color: #00c896;
  line-height: 1;
}

.cs-result-label {
  font-size: 13px;
  color: #777;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Quote */
.cs-quote {
  border-left: 4px solid #00c896;
  padding: 28px 36px;
  background: rgba(255,255,255,0.03);
  border-radius: 0 12px 12px 0;
  margin: 0;
  position: relative;
}

.cs-quote__mark {
  font-size: 80px;
  color: #00c896;
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.cs-quote__text {
  font-size: 17px;
  color: #cccccc;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 16px;
  padding-top: 12px;
}

.cs-quote__cite {
  font-size: 13px;
  color: #00c896;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ================================================================
   SECTION 6 — IMPACT
================================================================ */
.cs-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cs-impact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cs-impact-card:hover {
  border-color: #00a87e;
  box-shadow: 0 8px 32px rgba(0,168,126,0.08);
}

.cs-impact-icon {
  font-size: 30px;
  color: #00a87e;
  line-height: 1;
}

.cs-impact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.cs-impact-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   SECTION 7 — TAKEAWAYS
================================================================ */
.cs-takeaway-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
}

.cs-takeaway-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.cs-takeaway-item:hover {
  border-color: rgba(0,200,150,0.25);
}

.cs-takeaway-check {
  font-size: 22px;
  color: #00c896;
  flex-shrink: 0;
  margin-top: 1px;
}

.cs-takeaway-item p {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   SECTION 8 — CTA  (unique split layout)
================================================================ */
.cs-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  background: #f7faf9;
  border: 1px solid #e0f0ea;
  border-radius: 24px;
}

.cs-cta__heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cs-cta__strike {
  position: relative;
  color: #aaa;
}
.cs-cta__strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 3px;
  background: #00a87e;
  border-radius: 2px;
}

.cs-cta__sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cs-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cs-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cs-cta__btn--primary {
  background: #00a87e;
  color: #ffffff;
}
.cs-cta__btn--primary:hover {
  background: #008f6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,126,0.3);
  color: #fff;
}

.cs-cta__btn--ghost {
  background: transparent;
  border: 2px solid #ccc;
  color: #333;
}
.cs-cta__btn--ghost:hover {
  border-color: #00a87e;
  color: #00a87e;
}

.cs-cta__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cs-cta__trust span {
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cs-cta__trust i {
  color: #00a87e;
  font-size: 15px;
}

/* CTA visual side */
.cs-cta__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cs-cta__dial {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 8px 24px rgba(0,168,126,0.15));
}

.cs-cta__dial svg { width: 100%; height: 100%; }

.cs-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.cs-cta__badge {
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #ddeee8;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #00a87e;
  letter-spacing: 0.04em;
}

/* ================================================================
   SECTION 9 — RELATED
================================================================ */
.cs-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.cs-related-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.cs-related-card:hover {
  border-color: rgba(0,200,150,0.3);
  transform: translateY(-4px);
}

.cs-related-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.cs-related-img {
  height: 200px;
  overflow: hidden;
}

.cs-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cs-related-card:hover .cs-related-img img {
  transform: scale(1.05);
}

.cs-related-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cs-related-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  line-height: 1.5;
  margin: 0 0 auto;
  padding-bottom: 16px;
}

.cs-related-link {
  font-size: 13px;
  color: #00c896;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .cs-snapshot { grid-template-columns: repeat(2, 1fr); }
  .cs-two-col  { grid-template-columns: 1fr; gap: 36px; }
  .cs-challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-team-grid { grid-template-columns: repeat(3, 1fr); }
  .cs-results-grid { grid-template-columns: repeat(3, 1fr); }
  .cs-cta__inner { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
  .cs-cta__visual { flex-direction: row; justify-content: center; align-items: center; }
  .cs-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
  .cs-hero,
  .cs-overview,
  .cs-challenge,
  .cs-strategy,
  .cs-results,
  .cs-impact,
  .cs-takeaways,
  .cs-cta,
  .cs-related {
    padding: 60px 0;
  }

  .cs-snapshot { grid-template-columns: repeat(2, 1fr); }
  .cs-snapshot__val { font-size: 32px; }

  .cs-cover img { height: 220px; }

  .cs-challenge-grid { grid-template-columns: 1fr; }
  .cs-team-grid { grid-template-columns: repeat(2, 1fr); }

  .cs-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-result-item:nth-child(2),
  .cs-result-item:nth-child(4) { border-right: none; }
  .cs-result-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }

  .cs-impact-grid { grid-template-columns: 1fr; }

  .cs-phases::before { left: 20px; }
  .cs-phase__num { width: 40px; height: 40px; font-size: 13px; }

  .cs-cta__inner { padding: 28px 20px; }
  .cs-cta__actions { flex-direction: column; }
  .cs-cta__btn { justify-content: center; }
  .cs-cta__trust { flex-direction: column; gap: 10px; }
  .cs-cta__visual { flex-direction: column; }

  .cs-related-grid { grid-template-columns: 1fr; }

  .cs-quote { padding: 20px 22px; }
  .cs-quote__text { font-size: 15px; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .cs-snapshot { grid-template-columns: repeat(2, 1fr); }
  .cs-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-results-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-cta__dial { width: 150px; height: 150px; }
}
/* ============================================
   CASE STUDY DETAILS PAGE WITH STICKY SIDEBAR
   ============================================ */

/* Layout */
.cs-detail-wrapper {
    padding: 60px 0;
}

.cs-main-content {
    /* Main content area */
}

/* Sticky Sidebar */
.cs-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar Cards */
.sidebar-card {
    background: #111;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.sidebar-card:hover {
    border-color:#85c815;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #85c815;
    display: inline-block;
}

.sidebar-title i {
    color: #85c815;
    margin-right: 10px;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 12px;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 14px;
}

.services-list a i {
    color: #85c815;
    font-size: 18px;
    width: 24px;
}

.services-list a:hover {
    background: rgba(0,255,208,0.1);
    color: #85c815;
    transform: translateX(5px);
}

/* Recent Case Studies List */
.recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.recent-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-list a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.recent-list a:hover {
    transform: translateX(5px);
}

.recent-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #1a1a1a;
}

.recent-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.4;
}

.recent-info p {
    font-size: 11px;
    color: #888;
    margin: 0;
}

.recent-info span {
    font-size: 11px;
    color: #85c815;
}

/* CTA Sidebar Card */
.cta-sidebar {
    background: linear-gradient(135deg, #85c815 0%, #00b4ff 100%);
    text-align: center;
}

.cta-sidebar h4 {
    color: #0a0a0a;
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-sidebar p {
    color: #0a0a0a;
    font-size: 13px;
    margin-bottom: 20px;
}

.cta-sidebar-btn {
    display: inline-block;
    background: #0a0a0a;
    color: #85c815;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-sidebar-btn:hover {
    transform: scale(1.05);
    color: #85c815;
}

/* Hero Section */


.cs-badge {
    display: inline-block;
    background: rgba(0, 255, 208, 0.1);
    color: #85c815;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 208, 0.3);
}

.cs-detail-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cs-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 13px;
}

.cs-meta-item i {
    color: #85c815;
}

/* Featured Image */
.cs-featured-image {
    margin-bottom: 40px;
}

.cs-featured-image img {
    width: 100%;
    border-radius: 20px;
}

/* Content Body */
.cs-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

.cs-content-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #fff;
    padding-left: 15px;
    border-left: 4px solid #85c815;
}

.cs-content-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #fff;
}

.cs-content-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 10px;
    color: #85c815;
}

.cs-content-body p {
    margin-bottom: 18px;
}

.cs-content-body ul, 
.cs-content-body ol {
    margin: 18px 0;
    padding-left: 25px;
}

.cs-content-body li {
    margin-bottom: 10px;
}

.cs-content-body blockquote {
    background: linear-gradient(135deg, rgba(0,255,208,0.05), rgba(0,180,255,0.05));
    border-left: 4px solid #85c815;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 12px;
    font-style: italic;
}

/* Project Snapshot */
.snapshot-table {
    background: #111;
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.snapshot-table h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #85c815;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.snapshot-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.snapshot-label {
    color: #888;
    font-size: 13px;
}

.snapshot-value {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.stat-card {
    background: #111;
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #85c815;
}

.stat-label {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #85c815;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
}

.back-link:hover {
    gap: 12px;
    color: #85c815;
}

/* Responsive */
@media (max-width: 992px) {
    .cs-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .cs-detail-hero h1 {
        font-size: 28px;
    }
    
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
    
    .snapshot-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .snapshot-value {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cs-detail-wrapper {
        padding: 30px 0;
    }
    
    .cs-content-body h2 {
        font-size: 22px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cs-meta {
        gap: 12px;
    }
    
    .cs-meta-item {
        font-size: 11px;
    }
}
