.more-link, .less-link {
  font-family: 'NunitoSans', sans-serif;
  background: transparent;
  color: #d6be72;
  /* font-size: 18px; */
  cursor: pointer;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

.less-link:hover {
  text-decoration: underline;
}

.more-content {
  display: none;
}

.more-content.active {
  display: block;
}

.process {
  /* background: #245e6a; */
  padding: 20px 20px;
}

/* ===== LIST + CENTRAL LINE ===== */

.process__list {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* центральная линия — всегда от первого до последнего шага */
.process__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 7px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* ===== CARDS ===== */

.process__card {
  position: relative;
  width: 46%;
  background: #ffffff;
  padding: 30px 34px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(0,0,0,.06);

  box-shadow:
    0 14px 34px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.6);

  transition: transform .25s ease, box-shadow .25s ease;
}

.process__card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow:
    0 22px 46px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.6);
}

/* стороны + ступенчатый ритм */

.process__card.left {
  margin-right: auto;
}

.process__card.right {
  margin-left: auto;
  margin-top: 0px;
}

/* ===== MARKERS — идеально центрированы ===== */

.process__card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #d6be72;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(255,255,255,.18);
}

/* формула: половина контейнера − половина карточки */

.process__card.left::after    {
    left: calc(50% + (100% / 1.7));
}

.process__card.right::after {
    left: calc(50% - (100% / 1.7));
}


/* ===== TEXT ===== */

.step {
  font-family: 'Playfair Display', serif;
  /* font-size: 40px; */
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #c9a96a;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: none;
}

.process__card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  color: #1E5F73;
  text-align: center;
  /* font-size: 25px; */
  margin: 0 0 10px;
  margin-bottom: 20px;
}

.process__card p {
  margin: 0;
  color: #1E5F73;
  /* font-size: 18px; */
  line-height: 1.6em;
  text-align: left;
}

.process__card ul {
  color: #1E5F73;
  /* font-size: 18px; */
  line-height: 1.6em;
  text-align: left;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

  .process {
    padding: 70px 16px;
  }

  .process__list::before {
    left: 24px;
    transform: none;
  }

  .process__card {
    width: auto;
    margin-left: 70px !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 50px;
    padding: 22px 24px;
  }

  .process__card::after {
    left: -52px !important;
    transform: translateY(-50%);
  }

}

@media (max-width: 500px) {

  .process {
    padding: 0px 0px;
  }
}