/* === FULL REVIEW LAYOUT — V1.5.5 (Mobile fallback gradient logic) === */

/* === HERO OVERLAY QUOTE === */
.full-review-hero-magazine {
  padding: 6rem 2rem 4rem;
  margin-bottom: 0.2rem;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.753);
}

.full-review-quote-headline {
  font-style: italic;
  font-weight: 300;
}

.full-review-quote-overlay {
  font-size: 2rem;
  font-style: italic;
  color: #222;
  margin: 2rem auto;
  max-width: 90ch;
}

.full-review-meta {
  font-size: 1rem;
  color: #555;
}

/* === TIMELINE === */
.full-review-timeline-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  background: #fafafa;
}

.full-review-timeline-center::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color, #195b2c);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.full-review-step-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: flex;
  margin: 2.5rem 0;
  z-index: 1;
}

.full-review-step-card.left {
  justify-content: flex-start;
  margin-left: -25%;
}

.full-review-step-card.right {
  justify-content: flex-end;
  margin-right: -25%;
}



/* === HERO CARD STRUCTURE INSIDE TIMELINE === */
.full-review-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.616);
  /* max-width: 1200px; */
  min-width: 475px;
}



.full-review-hero-side-left,
.full-review-hero-side-right {
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.full-review-hero-side-left {
  left: 0;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background: linear-gradient(to right, #78c975, #9dc997);
}

.full-review-hero-side-right {
  right: 0;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background: linear-gradient(to left, #78c975, #9dc997);
}

.full-review-step-card.left .full-review-hero-side-left {
  display: none;
}

.full-review-step-card.right .full-review-hero-side-right {
  display: none;
}

.full-review-step-card.left .full-review-hero-card-body {
  padding-right: 3rem;
  padding-left: 1rem;
}

.full-review-step-card.right .full-review-hero-card-body {
  padding-left: 3rem;
  padding-right: 1rem;
}

/* .full-review-hero-card-body {
  padding: 1.5rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.full-review-step-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--main-text-color);
  text-decoration-line: underline;
  text-decoration-color: #195b2c;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.full-review-step-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.full-review-step-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  line-height: 1.6;
  color: #333;
}


.full-review-step-card.left .full-review-hero-card-body {
  padding: 1.5rem 3rem 1.5rem 1rem;
  /* padding-right: 3rem;
  padding-left: 1rem; */
}

.full-review-step-card.right .full-review-hero-card-body {
  padding: 1.5rem 1rem 1.5rem 3rem;
  /* padding-left: 3rem;
  padding-right: 1rem; */
}

/* === MOBILE === */
@media (max-width: 1290px) {
  .full-review-timeline-center {
    padding: 2rem 1rem;
  }

  .full-review-step-card.left,
  .full-review-step-card.right {
    margin: 2.5rem 0;
    justify-content: center;
  }

  .full-review-hero-card {
    max-width: 90%;
  }

  .full-review-hero-side-right {
    display: none !important;
  }

  .full-review-hero-side-left {
    display: block !important;
  }

  .full-review-hero-card-body {
    /* padding: 1.5rem 2rem 1.5rem 3rem; */
    text-align: left;
  }

  .full-review-step-card.left .full-review-hero-card-body,
  .full-review-step-card.right .full-review-hero-card-body {
    padding-left: 3rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .full-review-step-card.left,
  .full-review-step-card.right {
    justify-content: center;
    margin: 2rem 0;
  }

  .full-review-hero-card {
    max-width: 95%;
    border-left: 6px solid #78c975;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    min-width: unset;
  }

  .full-review-hero-side-left,
  .full-review-hero-side-right {
    display: none !important;
  }

  .full-review-hero-card-body {
    padding: 1.5rem 1.5rem;
  }
}
