:root {
  --green: #7da343;
  --cream: #fbf8f1;
  --text-dark: #2f2f2f;
  --text-muted: #6f6f6f;
  --radius: 18px;
}

/* ================= HERO ================= */

.success-hero {
  height: 70vh;
  background:
    linear-gradient(rgba(60,80,70,0.75), rgba(130,160,120,0.75)),
    url("../images/success/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-hero-overlay {
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.success-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 10px;
  color: #fff;
}

.success-hero-overlay p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: auto;
  color: #fff;
}

/* ================= CONTENT ================= */

.success-wrapper {
  background: var(--cream);
  min-height: 60vh;
  padding: 80px 8%;
}

/* ================= EMPTY STATE ================= */

.success-empty {
  text-align: center;
  max-width: 650px;
  margin: auto;
}

.success-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-empty p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= FUTURE STORY CARD ================= */

.success-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.success-card img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.success-content h3 {
  margin-bottom: 6px;
}

.treatment {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}

.description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .success-wrapper {
    padding: 60px 20px;
  }

  .success-card {
    flex-direction: column;
    text-align: center;
  }

  .success-card img {
    width: 100%;
    height: auto;
  }
}
