/* =============================================================
   SECTION: AFFILIATE START BANNER
   ============================================================= */
.aff-start {
  margin-top: 48px;
}

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

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

.aff-start__card {
  position: relative;
  background-color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px;
  box-sizing: border-box;
  overflow: hidden;

  /* Mobile background: top right corner */
  background-image: url('../img/aff-start-bg-mob.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 150px;
}

.aff-start__content {
  display: flex;
  flex-direction: column;
  /* Push text content down on mobile so it doesn't overlap the person */
  padding-top: 140px;
}

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

.aff-start__text {
  font-size: 14px;
  line-height: 150%;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 580px;
}

.aff-start__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aff-start__btn {
  width: 100%;
  text-decoration: none !important;
}

/* Tablet view */
@media (min-width: 768px) {
  .aff-start__card {
    padding: 40px;
    background-size: 60%;
    background-position: right top;
  }

  .aff-start__content {
    padding-top: 0;
    /* Text left, image top right */
    padding-right: 220px;
  }

  .aff-start__title {
    font-size: 32px;
  }

  .aff-start__text {
    font-size: 15px;
  }

  .aff-start__buttons {
    flex-direction: row;
    gap: 16px;
  }

  .aff-start__btn {
    width: auto;
  }
}

/* Desktop view */
@media (min-width: 1220px) {
  .aff-start__card {
    padding: 50px 80px;
    background-image: url('../img/aff-start-bg.png');
    background-position: right center;
    background-size: contain;
  }

  .aff-start__content {
    padding-right: 480px;
  }

  .aff-start__title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .aff-start__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}