/* Review fix: official Test Touch asset is square (512×512). Keep it square in every layout. */
.test-touch-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: clamp(28px, 5vw, 56px) 0;
}

.test-touch-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(103, 189, 131, 0.24);
}

.test-touch-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: clamp(14px, 3vw, 28px);
  background: #fff;
}

.test-touch-overview.compact {
  margin-top: 26px;
}

@media (max-width: 760px) {
  .test-touch-overview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .test-touch-image {
    width: min(100%, 430px);
    justify-self: center;
  }
}
