/* =============================================================
   SECTION: REGISTRATION STEPS
   ============================================================= */
.aff-reg {
  margin-top: 48px;
}

@media (min-width: 768px) {
  .aff-reg {
    margin-top: 64px;
  }
}

@media (min-width: 1240px) {
  .aff-reg {
    margin-top: 100px;
  }
}

.aff-reg__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 120%;
  color: var(--color-white);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .aff-reg__title {
    font-size: 28px;
  }
}

@media (min-width: 1240px) {
  .aff-reg__title {
    font-size: 38px;
    margin-bottom: 16px;
  }
}

.aff-reg__subtitle {
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 24px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .aff-reg__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* Steps Grid */
.aff-reg__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aff-reg__col-left,
.aff-reg__col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aff-reg__logo-wrapper {
  display: none;
}

@media (min-width: 1220px) {
  .aff-reg__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .aff-reg__col-left {
    height: 100%;
  }

  .aff-reg__col-left .reg-step:last-child {
    flex-grow: 1;
  }

  .aff-reg__col-left,
  .aff-reg__col-right {
    gap: 20px;
  }

  .aff-reg__logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    min-height: 80px;
  }

  .aff-reg__logo {
    max-width: 100%;
    height: auto;
  }
}

/* Step Card */
.reg-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 24px;
  box-sizing: border-box;
  font-weight: 100;
}

@media (min-width: 768px) {
  .reg-step {
    gap: 5px;
    padding: 5px 20px 20px 20px;
  }
}

.reg-step__num {
  height: auto;
  flex-shrink: 0;
}

.reg-step__content {
  flex: 1;
  padding-top: 20px;
}

.reg-step__text {
  font-size: 14px;
  line-height: 151%;
  color: var(--color-text);
  font-weight: 100;
}

.reg-step__text strong {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .reg-step__text {
    font-size: 16px;
  }
}

/* Step 02 List */
.reg-step__list {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

.reg-step__list li {
  font-size: 13px;
  line-height: 151%;
  color: var(--color-text);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .reg-step__list li {
    font-size: 16px;
  }
}

.aff-reg__footer-text {
  font-size: 15px;
  line-height: 150%;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .aff-reg__footer-text {
    font-size: 16px;
    margin-top: 32px;
  }
}
