.page-enten-reise {
  --reise-orange: #e98a16;
  --reise-orange-dark: #bf6510;
  --reise-brown: #402719;
  --reise-cream: #fff8ed;
  --reise-line: rgba(64, 39, 25, .16);
}

.enten-reise-main {
  padding-bottom: 72px;
}

.page-enten-reise .section {
  margin: 0;
  padding: 62px 0;
}

.reise-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  gap: 52px;
  align-items: center;
}

.reise-intro__copy h2,
.reise-route h2,
.reise-distance h2,
.reise-final h2 {
  margin: 8px 0 20px;
  color: var(--reise-brown);
  line-height: 1.13;
}

.reise-intro__copy .lead {
  font-size: 1.1rem;
  line-height: 1.75;
}

.reise-intro__copy p {
  color: var(--muted);
  line-height: 1.75;
}

.reise-intro__fact {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(233, 138, 22, .25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(233, 138, 22, .2), transparent 42%),
    var(--reise-cream);
  box-shadow: 0 20px 48px rgba(64, 39, 25, .09);
}

.reise-intro__fact-icon {
  display: block;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.reise-intro__fact strong {
  display: block;
  margin-bottom: 10px;
  color: var(--reise-brown);
  font-size: 1.35rem;
  line-height: 1.25;
}

.reise-intro__fact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.reise-route {
  border-top: 1px solid var(--reise-line);
}

.reise-route .section__head {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.reise-route .section__sub {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.reise-timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.reise-timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 27px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--reise-orange),
    rgba(233, 138, 22, .18)
  );
}

.reise-stop {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.reise-stop:last-child {
  margin-bottom: 0;
}

.reise-stop__marker {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.reise-stop__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--reise-orange);
  color: #fff;
  box-shadow: 0 7px 18px rgba(191, 101, 16, .24);
  font-size: .82rem;
  font-weight: 900;
}

.reise-stop__card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid var(--reise-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(64, 39, 25, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.reise-stop__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(64, 39, 25, .09);
}

.reise-stop__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--reise-cream);
  font-size: 2rem;
}

.reise-stop__place {
  display: block;
  margin-bottom: 5px;
  color: var(--reise-orange-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reise-stop h3 {
  margin: 0 0 10px;
  color: var(--reise-brown);
  font-size: 1.28rem;
  line-height: 1.25;
}

.reise-stop p {
  margin: 0;
  color: var(--muted);
  line-height: 1.67;
}

.reise-stop__aside {
  margin-top: 12px !important;
  padding: 13px 16px;
  border-left: 4px solid var(--reise-orange);
  border-radius: 0 12px 12px 0;
  background: var(--reise-cream);
  color: var(--reise-brown) !important;
  font-style: italic;
}

.reise-stop--sea .reise-stop__card {
  border-color: rgba(63, 137, 178, .28);
  background:
    linear-gradient(135deg, rgba(225, 244, 252, .55), rgba(255, 255, 255, .95));
}

.reise-stop--arrival .reise-stop__card {
  border-color: rgba(233, 138, 22, .3);
  background:
    linear-gradient(135deg, var(--reise-cream), rgba(255, 255, 255, .96));
}

.reise-distance {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  margin-top: 10px !important;
  padding: 52px !important;
  border-radius: 30px;
  background: var(--reise-brown);
  color: #fff;
}

.reise-distance__map {
  position: relative;
  min-height: 190px;
}

.reise-distance__line {
  position: absolute;
  top: 50%;
  right: 38px;
  left: 38px;
  height: 4px;
  border-top: 4px dashed rgba(255, 255, 255, .52);
  transform: translateY(-50%);
}

.reise-distance__dot {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 6px solid var(--reise-orange);
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.reise-distance__dot--bali {
  left: 20px;
}

.reise-distance__dot--kandel {
  right: 20px;
}

.reise-distance__ship {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
}

.reise-distance__copy .kicker {
  color: #ffbf68;
}

.reise-distance__copy h2 {
  color: #fff;
}

.reise-distance__copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.reise-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 28px !important;
  padding-bottom: 0 !important;
}

.reise-final > div {
  max-width: 760px;
}

.reise-final p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reise-final .btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .reise-intro,
  .reise-distance {
    grid-template-columns: 1fr;
  }

  .reise-intro {
    gap: 30px;
  }

  .reise-distance {
    gap: 28px;
  }

  .reise-distance__map {
    min-height: 135px;
  }

  .reise-final {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .enten-reise-main {
    padding-bottom: 46px;
  }

  .page-enten-reise .section {
    padding: 42px 0;
  }

  .reise-intro__fact {
    padding: 26px;
    border-radius: 22px;
  }

  .reise-route .section__head {
    margin-bottom: 34px;
    text-align: left;
  }

  .reise-timeline::before {
    left: 19px;
  }

  .reise-stop {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }

  .reise-stop__marker {
    padding-top: 18px;
  }

  .reise-stop__marker span {
    width: 40px;
    height: 40px;
    border-width: 4px;
    font-size: .68rem;
  }

  .reise-stop__card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .reise-stop__icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    font-size: 1.7rem;
  }

  .reise-stop h3 {
    font-size: 1.12rem;
  }

  .reise-distance {
    padding: 30px 22px !important;
    border-radius: 24px;
  }

  .reise-distance__map {
    min-height: 110px;
  }

  .reise-distance__ship {
    width: 58px;
    height: 58px;
    font-size: 1.75rem;
  }

  .reise-final {
    gap: 25px;
  }

  .reise-final .btn {
    width: 100%;
    justify-content: center;
  }
}
