.home-feature-strip {
  width: 100%;
  background: linear-gradient(135deg, #07051a 0%, #0b0730 50%, #060417 100%);
  padding: 4rem 0;
  border-radius: 0px 0px 30px 30px;
}

.home-feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.home-feature-strip__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.home-feature-strip__icon {
  aspect-ratio: 1;
  width: 72px;
  flex-shrink: 0;
}

.home-feature-strip__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-feature-strip__title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.home-feature-strip__gradient-text--first {
  background: var(--gradient-feature-strip-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-feature-strip__gradient-text--second {
  background: var(--gradient-feature-strip-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-feature-strip__gradient-text--third {
  background: var(--gradient-feature-strip-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Uniform with join-us description, testimonial-quote, featured-work main description */
.home-feature-strip__desc {
  color: #cfd3ff;
  font-size: var(--font-base);
  line-height: 1.6;
}

@media (min-width: 1600px) {
  .home-feature-strip {
    padding: 5rem 0;
  }

  .home-feature-strip__grid {
    gap: 64px;
  }

  .home-feature-strip__icon {
    width: 60px;
  }

  .home-feature-strip__title {
    font-size: var(--font-2xl);
    margin-bottom: 12px;
  }
}

@media (min-width: 2000px) {
  .home-feature-strip {
    padding: 6rem 0;
  }

  .home-feature-strip__grid {
    gap: 72px;
  }

  .home-feature-strip__icon {
    width: 100px;
  }

  .home-feature-strip__title {
    font-size: var(--font-xl);
  }
}

@media (max-width: 1024px) {
  .home-feature-strip__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .home-feature-strip__item {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .home-feature-strip__item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .home-feature-strip {
    padding: 3rem 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .home-feature-strip__grid {
    gap: 28px;
  }

  .home-feature-strip__icon {
    width: 48px;
  }

  .home-feature-strip__title {
    font-size: var(--font-lg);
    margin-bottom: 8px;
  }

  .home-feature-strip__desc {
    max-width: 100%;
  }
}
