/* Card wrapper */
.impact-card {
  position: relative;
  overflow: hidden;
}

/* Decorative quote mark */
.impact-card::before {
  content: "“";
  position: absolute;
  top: 5px;
  left: 8px;
	font-size: 190px;  
	transform: rotate(8deg);
	line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.07); /* for dark cards */
  pointer-events: none;
  z-index: 0;
}

/* Ensure block content sits above the decorative quote */
.impact-card > * {
  position: relative;
  z-index: 1;
}
