/* === Newcomer Steps Section === */

.newcomer-steps-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fafafa;
}

.newcomer-steps-section__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.newcomer-steps-section__bg {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  object-fit: cover;
  opacity: 0.4;
  transform: rotate(-30deg);
  transform-origin: center center;
}

.newcomer-steps__inner {
  position: relative;
  z-index: 2;
}

.newcomer-steps__title {
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  color: #33302E;
  margin-top: 0;
  margin-bottom: 30px;
}

.newcomer-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1290px;
  margin: 0 auto;
}

/* --- Step Card --- */

.step-card {
  position: relative;
}

.step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--color-orange-light);
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
  margin-left: 20px;
}

.step-card__box {
  background: #fff;
  border: 1px solid #EBECF0;
  border-radius: 16px;
  padding: 40px 20px 20px;
}

.step-card__title {
  font-size: 20px;
  line-height: 1.5;
  color: #33302E;
  margin-top: 0;
  margin-bottom: 15px;
}

.step-card__content {
  margin-bottom: 15px;
}

.step-card__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #33302E;
  margin-bottom: 12px;
}

.step-card__list {
  margin: 0;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #33302E;
}

.step-card__list li {
  margin-bottom: 4px;
}

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

.step-card__list--ordered {
  list-style-type: decimal;
}

.step-card__note {
  font-size: 16px;
  line-height: 1.5;
  color: #33302E;
  margin-bottom: 0;
}

/* === Tablet (768px+) === */

@media (min-width: 768px) {
  .newcomer-steps-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .newcomer-steps__title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .newcomer-steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .step-card__badge {
    font-size: 24px;
    margin-bottom: -26px;
  }

  .step-card__box {
    padding: 50px 30px 30px;
  }

  .step-card__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .step-card__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .step-card__content {
    margin-bottom: 20px;
  }
}

/* === Desktop (1200px+) === */

@media (min-width: 1200px) {
  .newcomer-steps-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .newcomer-steps__title {
    font-size: 52px;
    margin-bottom: 50px;
  }

  .newcomer-steps__grid {
    gap: 30px;
  }
}
