.techboi-slide {
  position: relative;
  width: 100vw;
  left: calc(-50vw + 50%);
  padding: 150px 0;
}

.techboi-slide-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.techboi-slide-supertitle {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0.42rem 0.6rem;
  font-size: 14px;
  background: var(--color-gray-light);
  color: var(--color-default);
  border-radius: var(--size-border-radius-small);
}

.techboi-slide-title {
  margin-bottom: 35px;
}

.techboi-slide-text {
  max-width: 100%;
}

.techboi-slide-text ul {
  margin-top: 15px;
}

.techboi-slide-image img {
  border-radius: var(--size-border-radius);
}

.techboi-slide-image {
  order: 1;
}

.techboi-slide-content {
  order: 2;
}

@media (min-width: 1000px) {
  .techboi-slide-inner {
    flex-direction: row;
  }

  .techboi-slide-content {
    width: 60%;
  }

  .techboi-slide-text {
    max-width: 80%;
  }

  .techboi-slide-image {
    width: 40%;
    order: 2;
  }
}
