.specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0;
  gap: 1.75rem;
  background-image: linear-gradient(var(--klv-color-bg-deep) 0%, rgb(18, 19, 21) 100%);
  overflow: clip;
}

@media (min-width: 810px) {
  .specs {
    padding: 4.5rem 0;
    gap: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .specs {
    flex-direction: row;
    padding: 3.75rem 2.125rem;
    gap: 2.5rem;
  }
}
.specs__figure {
  width: 100%;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 420px;
  overflow: clip;
  background-image: radial-gradient(
    50% 50% at 50% 35%,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 42%,
    rgba(255, 255, 255, 0.01) 100%
  );
}

@media (min-width: 810px) {
  .specs__figure {
    padding: 42px;
    min-height: 620px;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .specs__figure {
    flex: 1 0 84px;
    width: auto;
    min-height: 660px;
  }
}
.specs__media {
  flex: none;
  display: block;
  width: 113%;
  height: 340px;
  object-fit: cover;
  object-position: 50% 50%;
}

@media (min-width: 810px) {
  .specs__media {
    height: 520px;
  }
}

@media (min-width: 1200px) {
  .specs__media {
    height: 572px;
  }
}
.specs__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1.25rem;
}

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

@media (min-width: 1200px) {
  .specs__content {
    flex: 1 0 0;
    width: auto;
    padding: 0;
  }
}

.specs__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.98em;
  letter-spacing: -0.005em;
  color: var(--klv-color-text-warm);
  text-wrap: balance;
  overflow-wrap: break-word;
}

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

.specs__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specs__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25em;
  color: color-mix(in srgb, var(--klv-color-text-warm) 74%, transparent);
}
.specs__icon {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: color-mix(in srgb, var(--klv-color-text-warm) 78%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specs__note {
  font-size: 1.125rem;
  line-height: 1.6em;
  font-style: italic;
  color: color-mix(in srgb, var(--klv-color-text-warm) 66%, transparent);
}
.js-reveal .specs__figure,
.js-reveal .specs__content {
  opacity: 0;
}

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

.js-reveal .specs__content {
  transition: opacity 800ms, transform 800ms;
  transition-timing-function: var(--klv-ease-reveal);
  transition-delay: 120ms;
  transform: translateY(38px);
}

.js-reveal .specs__figure.is-revealed,
.js-reveal .specs__content.is-revealed {
  opacity: 1;
  transform: none;
}

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