/* .text-bubble {
	background: #3be578;
	color: #000;
	font-size: 32px;
	font-weight: bold;
	padding: 8px 16px;
	border-radius: 12px;
	display: inline;
	line-height: 1.6;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.text-bubble span {
	position: relative;
	z-index: 2;
}

.text-bubble::after {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  width: 24px;
  height: calc(100% - 30px);
  background: #68e083;
  border-radius: 30px;
  z-index: 0;
} */

.text-bubble.has-quotes span {
	position: relative;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.text-bubble.has-quotes span::before {
  content: "“";
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  font-size: inherit;
  line-height: 1;
  transform: translateX(-100%);
  z-index: 1;
}

.text-bubble.has-quotes span::after {
  content: "”";
  position: absolute;
  right: 0.5rem;
  bottom: 0.25rem;
  font-size: inherit;
  line-height: 1;
  transform: translateX(100%);
  z-index: 1;

/* .text-bubble {
  position: relative;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.text-bubble > span {
  display: inline;
  background: #68e083;
  color: #000;
  padding: 0.2em 0.7em;
  border-radius: 30px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.text-bubble::after {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  width: 24px;
  height: calc(100% - 30px);
  background: #68e083;
  border-radius: 30px;
  z-index: -1;
}

.text-bubble .bubble-text-wrapper {
  position: relative;
  display: inline;
}

.text-bubble .has-quotes .bubble-text-wrapper::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  line-height: 1;
  transform: translateX(-100%);
  z-index: 1;
}

.text-bubble .has-quotes .bubble-text-wrapper::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: inherit;
  line-height: 1;
  transform: translateX(100%);
  z-index: 1;
} */