.quadrant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em;
}

.quadrant {
  flex: 1 1 calc(50% - 1em);  /* 2 columns with space between */
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5em;
  border-radius: 6px;
  box-sizing: border-box;
  color: #222;
  font-size: 1.05em;
  line-height: 1.5;
  min-height: 150px;
}

@media (max-width: 700px) {
  .quadrant {
    flex: 1 1 100%;
  }
}

.quadrant-text {
  position: relative;
  padding-left: 1.5em; /* space for the quote */
}

.quadrant-text::before {
  content: '“';        /* left double curly quote */
  position: absolute;
  left: 0;
  top: 0em;          /* lift it slightly to align better */
  font-size: 3em;
  line-height: 1;
  color: #A60321;
  font-family: serif;
  font-weight: bold;
  font-style: italic;  /* make the quote italic */
  transform: translateX(-0.1em);
}

