.who-section {
  background: #080808;
}

.who-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.who-label {
  position: sticky;
  top: 140px;
}

.who-label h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  color: var(--white);
}

.who-content {
  max-width: 760px;
}

.who-content p {
  font-size: 18px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.74);
}

.who-highlight {
  margin-top: 45px;
  padding: 36px 40px;
  border-left: 4px solid var(--primary);
  background: rgba(255,200,0,.06);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
}

@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .who-label {
    position: relative;
    top: auto;
    text-align: center;
  }

  .who-content {
    margin: auto;
    text-align: center;
  }

  .who-highlight {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .who-content p {
    font-size: 16px;
  }

  .who-highlight {
    padding: 28px;
  }
}