.truth-remains {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: 8vw;
  align-items: center;
  background: #000;
  position: relative;
  overflow: hidden;
}

.truth-remains::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  right: -10vw;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 229, 224, .1), transparent 68%);
  pointer-events: none;
}

.truth-remains-copy { position: relative; z-index: 1; }
.truth-remains h2 { font-size: clamp(4rem, 6.4vw, 7rem); }
.truth-remains h2 em { color: var(--teal); font-weight: 500; }
.truth-remains-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0;
  color: #aeb9bc;
  font-size: 1rem;
  line-height: 1.8;
}
.truth-remains .actions { margin-top: 34px; }
.truth-remains .text-link { padding: 15px 8px; }
.truth-remains-art {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 1px solid rgba(216, 179, 106, .28);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .7), 0 0 70px rgba(82, 229, 224, .08);
}
.truth-remains-art img { display: block; width: 100%; height: auto; }

@media (max-width: 900px) {
  .truth-remains { grid-template-columns: 1fr; gap: 55px; }
  .truth-remains-art { width: min(100%, 560px); justify-self: center; }
}

@media (max-width: 620px) {
  .truth-remains { padding-top: 75px; padding-bottom: 75px; }
  .truth-remains h2 { font-size: 3.55rem; }
  .truth-remains .actions { align-items: stretch; }
  .truth-remains .button { width: 100%; }
  .truth-remains .text-link { text-align: center; }
}
