.tech {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  background-color: rgb(5, 5, 6);
  overflow: clip;
}

@media (min-width: 810px) {
  .tech {
    padding: 3.5rem 0;
  }
}

@media (min-width: 1200px) {
  .tech {
    padding: 3.75rem 0;
  }
}
.tech__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 1.625rem;
  overflow: clip;
  background-color: var(--klv-color-surface);
}

@media (min-width: 810px) {
  .tech__card {
    padding: 2.375rem 2.125rem;
    gap: 2.125rem;
    background-color: transparent;
    background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.02) 48%,
      rgba(255, 255, 255, 0.07) 100%
    );
  }
}

@media (min-width: 1200px) {
  .tech__card {
    flex-direction: row;
    align-items: center;
    padding: 2.5rem;
  }
}
.tech__image {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 50% 50%;
}

@media (min-width: 810px) {
  .tech__image {
    height: 435px;
  }
}

@media (min-width: 1200px) {
  .tech__image {
    width: 53%;
    flex: 0 0 auto;
  }
}
.tech__text,
.tech__intro {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tech__text {
  width: 100%;
  max-width: 28.75rem;
  padding: 0 1.25rem 2.25rem;
}

@media (min-width: 810px) {
  .tech__text,
  .tech__intro {
    gap: 1.125rem;
  }
  .tech__text {
    padding: 0;
  }
}

.tech__eyebrow {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--klv-color-text-warm) 58%, transparent);
}

@media (min-width: 810px) {
  .tech__eyebrow {
    font-size: 0.75rem;
    line-height: 1em;
  }
}

.tech__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.02em;
  letter-spacing: -0.005em;
  color: var(--klv-color-text-warm);
}
@media (min-width: 810px) {
  .tech__heading {
    font-size: 2.75rem;
    line-height: 1em;
  }
}

@media (min-width: 1200px) {
  .tech__heading {
    font-size: 3.25rem;
    line-height: 0.98em;
  }
}

.tech__body {
  font-size: 0.9375rem;
  line-height: 1.55em;
  color: color-mix(in srgb, var(--klv-color-text-warm) 68%, transparent);
}

@media (min-width: 810px) {
  .tech__body {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1200px) {
  .tech__body {
    font-size: 1.125rem;
    line-height: 1.6em;
  }
}
.js-reveal .tech__card,
.js-reveal .tech__image {
  opacity: 0;
}

.js-reveal .tech__card {
  transition: opacity 850ms, transform 850ms;
  transition-timing-function: var(--klv-ease-reveal);
  transform: translateY(34px);
}

.js-reveal .tech__image {
  transition: opacity 800ms;
  transition-timing-function: var(--klv-ease-reveal);
}

.js-reveal .tech__card.is-revealed,
.js-reveal .tech__image.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .tech__card,
  .js-reveal .tech__image {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
