/* ── Product feature module (two-up) ─────────────────────────────────────── */

.product-feature {
  background: var(--almost-black);
  padding: 40px 38px 140px;
}

.product-feature__inner {
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 0 30px;
}

.product-feature__heading {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 56px;
}

.product-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-feature__col {
  display: flex;
  flex-direction: column;
}

/* Image frame — orange corner brackets, matching the site's card motif */
.product-feature__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin-bottom: 32px;
}

.product-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.product-feature__corner {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--orange);
  display: block;
  z-index: 1;
}

.product-feature__corner--tl { top: -8px;    left: -8px;  }
.product-feature__corner--tr { top: -8px;    right: -8px; }
.product-feature__corner--bl { bottom: -8px; left: -8px;  }
.product-feature__corner--br { bottom: -8px; right: -8px; }

.product-feature__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 18px;
}

.product-feature__desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
}

.product-feature__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: auto;
}
