/* =========================
   DISCIPLESHIP PAGE
========================= */

/* Hero background image */
.hero--discipleship .hero-bg {
  background-image: url("/assets/images/ripples_goldenlight.JPG");
}

/* Sage band (unique to this page) */
.band-sage {
  background: rgba(127, 155, 134, 0.12);
}

/* Ensure lead text centers inside .center */
.band-sage .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* VINE / CENTER LINE */
.vine {
  position: relative;
  padding: 40px 0 20px;
}

.vine-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(127, 155, 134, 0.15),
    rgba(127, 155, 134, 0.55),
    rgba(127, 155, 134, 0.35),
    rgba(127, 155, 134, 0.15)
  );
}

.vine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 34px;
}

.vine-item {
  position: relative;
  min-height: 70px;
}

.vine-node {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: transparent;
  border: 2px solid rgba(127, 155, 134, 0.85);
  box-shadow: 0 0 0 6px rgba(127, 155, 134, 0.08);
}

.vine-branch {
  position: absolute;
  top: 28px;
  height: 2px;
  background: rgba(127, 155, 134, 0.65);
}

.vine-item.left .vine-branch {
  right: 50%;
  width: min(280px, 42vw);
  margin-right: 10px;
}

.vine-item.right .vine-branch {
  left: 50%;
  width: min(280px, 42vw);
  margin-left: 10px;
}

.vine-card {
  position: relative;
  z-index: 1;
  width: min(420px, 44vw);
  background: #FFFAF0;
  border: 1px solid rgba(127, 155, 134, 0.22);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.vine-item.left .vine-card {
  margin-left: 0;
  margin-right: calc(50% + 280px);
}

.vine-item.right .vine-card {
  margin-left: calc(50% + 280px);
  margin-right: 0;
}

/* Card headings — NO overrides here.
   Font, size, color, weight all come from the
   global .vine-card h3 normalization in styles.css */

.vine-card h3 {
  margin: 0 0 6px;
}

.vine-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.vine-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  margin: 0 0 10px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .vine-line { left: 20px; transform: none; }
  .vine-node { left: 20px; transform: translate(0, -50%); }

  .vine-item.left .vine-branch,
  .vine-item.right .vine-branch {
    left: 20px;
    right: auto;
    margin: 0;
    width: 46px;
  }

  .vine-card {
    width: 100%;
    margin: 0 0 0 74px !important;
  }
}

@media (max-width: 520px) {
  .vine-card {
    padding: 16px;
    border-radius: 16px;
  }
}
