/* ============================================
   CASE STUDY — Editorial WowCarz Layout
   ============================================ */

.editorial-section {
  max-width: 900px;
  margin: 0 auto;
}

.editorial-header {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  text-align: center;
}

.editorial-body {
  font-size: 1.15rem;
  line-height: 1.8;
}

.editorial-block {
  background: var(--bg-primary);
  border: var(--border-thick);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-brutal);
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Funnel Cascade */
.funnel-cascade {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3rem 0;
}

.funnel-step {
  border: var(--border-thick);
  border-radius: 50px;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: var(--shadow-brutal-hover);
}

.funnel-step.s1 { background: #FF5E00; color: #FFF; width: 100%; border-color: #000; }
.funnel-step.s2 { background: #FF8A40; color: #000; width: 80%; margin: 0 auto; }
.funnel-step.s3 { background: #FFB180; color: #000; width: 60%; margin: 0 auto; }
.funnel-step.s4 { background: #FFD4BF; color: #000; width: 40%; margin: 0 auto; }

.funnel-step span:last-child {
  opacity: 0.9;
}

/* Economics Comparison Card */
.comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border-thick);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  margin-top: 3rem;
}

.compare-side {
  padding: 3rem 2rem;
  text-align: center;
}

.compare-side.old {
  background: #FFF2CC;
}

.compare-side.new {
  background: var(--accent-green);
  color: #fff;
  border-left: var(--border-thick);
}

.compare-title {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.compare-stat {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.compare-desc {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Icon Cards */
.asset-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.asset-card {
  border: var(--border-thick);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: var(--bg-primary);
  box-shadow: var(--shadow-brutal);
  text-align: center;
  transition: transform var(--transition-fast);
}

.asset-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 0px 0px var(--text-primary);
}

.asset-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.asset-title {
  font-weight: 900;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .comparison-card {
    grid-template-columns: 1fr;
  }
  .compare-side.new {
    border-left: none;
    border-top: var(--border-thick);
  }
  .funnel-step {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .funnel-step.s1, .funnel-step.s2, .funnel-step.s3, .funnel-step.s4 {
    width: 100%;
  }
}
