/* 기획서1 — index 원스톱 타임라인 (#onestop) */
:root {
  --accent: #ffd400;
  --accent-line: rgba(255, 212, 0, 0.3);
}

#onestop > .wrap > .reveal:first-child {
  text-align: center !important;
}

#onestop .process-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 0;
}

#onestop .process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 212, 0, 0.32) 6%, rgba(255, 212, 0, 0.32) 94%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

#onestop .process-step {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  margin-bottom: 40px;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  overflow: visible !important;
  text-align: left !important;
}

#onestop .process-step:last-child {
  margin-bottom: 0;
}

#onestop .process-step__card {
  width: 100%;
  max-width: 420px;
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: stretch;
  text-align: left !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#onestop .process-step__card:hover {
  border-color: rgba(255, 212, 0, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

#onestop .process-step--left .process-step__card {
  grid-column: 1;
  justify-self: end;
}

#onestop .process-step--left .process-step__marker {
  grid-column: 2;
  justify-self: center;
}

#onestop .process-step--right .process-step__marker {
  grid-column: 2;
  justify-self: center;
}

#onestop .process-step--right .process-step__card {
  grid-column: 3;
  justify-self: start;
}

#onestop .process-step__marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0a0a0b;
  border: 2px solid rgba(255, 212, 0, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

#onestop .process-step__marker span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

#onestop .process-step__img,
#onestop .process-step .section-card-img {
  width: 100%;
  height: 100% !important;
  min-height: 148px;
  object-fit: cover;
  display: block;
}

#onestop .process-step__body {
  padding: 28px 26px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#onestop .process-step__title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}

#onestop .process-step__body p {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #b8b8bd !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  #onestop .process-timeline::before {
    left: 22px;
    transform: none;
    top: 24px;
    bottom: 24px;
  }

  #onestop .process-step {
    grid-template-columns: 44px 1fr !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  #onestop .process-step__marker {
    grid-column: 1 !important;
    grid-row: 1;
    width: 44px !important;
    height: 44px !important;
    align-self: start;
    margin-top: 18px;
  }

  #onestop .process-step__marker span {
    font-size: 13px !important;
  }

  #onestop .process-step__card {
    grid-column: 2 !important;
    grid-row: 1;
    max-width: none !important;
    display: block !important;
    grid-template-columns: unset !important;
  }

  #onestop .process-step__body {
    padding: 24px 22px !important;
  }

  #onestop .process-step__title {
    font-size: 20px !important;
  }

  #onestop .process-step__body p {
    font-size: 17px !important;
  }

  #onestop .process-step .section-card-img,
  #onestop .process-step__img {
    height: 160px !important;
    min-height: 0 !important;
    width: 100%;
  }
}
