.quote-card {
  display: flex;
  justify-content: center;
  height: 100%;
}
.quote-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: white;
  padding: 32px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}
/* --- Portrait --- */
.quote-card__portrait-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.quote-card__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* --- Speech bubble --- */
.quote-card__bubble {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	height: calc(100% - 28px);
	width: 100%;
}
.quote-card__bubble-arrow {
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 28px solid var(--formoline-aqua-4);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.quote-card__bubble-body {
  background: var(--formoline-aqua-4);
  border-radius: 0;
  padding: 32px 28px 40px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
	height: calc(100% - 28px);
}
/* --- Text --- */
.quote-card__text {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--formoline-aqua-2) !important;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
/* --- Question mark icon --- */
.quote-card__questionmark {
  flex-shrink: 0;
  width: 56px;
  height: auto;
  display: block;
  align-self: center;
}
/* --- Responsive --- */
@media (max-width: 1199px) {
	.quote-card {
		height: auto;
	}
	.quote-card__bubble-body{
		height: fit-content;
		padding:32px;
	}
}
@media (max-width: 575px) {
  .quote-card__inner {
    padding: 24px 16px;
  }
  .quote-card__portrait-wrapper {
    width: 200px;
    height: 200px;
  }
	/*
  .quote-card__bubble {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
	*/
  .quote-card__text {
    font-size: 18px;
  }
  .quote-card__bubble-body {
    padding: 24px 20px 32px 20px;
  }
  .quote-card__questionmark {
    width: 44px;
  }
}