/* --- APPLE-THEMED THE ROUTE SPECIFIC STYLES --- */

.route-timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 20px 0;
}

/* Thin vertical connector line */
.route-track-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #D2D2D7;
  z-index: 1;
}

.route-step {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
}

.route-step:last-child {
  margin-bottom: 0;
}

/* Subway Station Bubble sign */
.route-station-hub {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--text-charcoal);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}

.route-station-hub .num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-charcoal);
}

.route-step:hover .route-station-hub {
  border-color: var(--apple-blue);
  background-color: var(--soft-gray);
  transform: scale(1.05);
}

.route-content-box {
  background-color: var(--white);
  border: var(--border-light);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.2s ease;
}

.route-step:hover .route-content-box {
  transform: translateX(4px);
}

.route-content-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 8px;
}

.route-content-box p {
  font-size: 15px;
  color: #6E6E73;
  margin-bottom: 12px;
}

/* Detail info text */
.step-sandbox-info {
  background-color: var(--soft-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #6E6E73;
}
.step-sandbox-info span {
  font-weight: bold;
  color: var(--apple-blue);
}
@media (max-width: 500px) {
  .route-step {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .route-track-line {
    display: none;
  }
}
