.subsite-quote {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1216px) / 2));
  color: #e8edf6;
  background: #0a1120;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.subsite-quote__image {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
}

.subsite-quote__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.subsite-quote__image span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 17, 32, 0.7)),
    linear-gradient(270deg, #0a1120, transparent 32%);
}

.subsite-quote__content {
  padding: 80px 0;
}

.subsite-quote__content > svg {
  color: rgba(111, 162, 255, 0.4);
}

.subsite-quote blockquote {
  margin: 20px 0 0;
  color: #fff;
  font: 500 clamp(24px, 2.4vw, 30px) / 1.3 "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.subsite-quote__byline {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid #1b5bff;
}

.subsite-quote__byline strong {
  color: #fff;
  font-size: 15px;
}

.subsite-quote__byline p {
  margin: 5px 0 0;
  color: #6fa2ff;
  font: 500 10.5px / 1.5 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .subsite-quote {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 20px;
  }

  .subsite-quote__image {
    min-height: 380px;
  }

  .subsite-quote__image span {
    background: linear-gradient(180deg, transparent 55%, #0a1120);
  }

  .subsite-quote__content {
    padding: 48px 0 68px;
  }
}
