.city-quote {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 5vw, 4rem);
  text-align: left;
  background: #fff;
}

.city-quote__text {
  margin: 0;
  width: min(100%, 72rem);
  text-align: center;
}

.city-quote__text p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--ds-font-accent, "Poppins", sans-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: #696b7e;
}

.city-quote__text p::before {
  content: "“";
  flex: 0 0 auto;
  color: #43b653;
  font-family: Georgia, serif;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 0.55;
  transform: translateY(0.15rem);
}

.city-quote__text p::after {
  content: none;
}

@media (max-width: 640px) {
  .city-quote {
    padding: 1.25rem 1rem;
  }

  .city-quote__text p {
    gap: 0.4rem;
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .city-quote__text p::before {
    font-size: 2.2rem;
  }
}
