/* testimonial block */
.testimonial-block {
	display: grid;
	grid-template-columns: 20% 80%;
	grid-template-rows: min-content;
	grid-column-gap: 0px;
	grid-row-gap: 15px;
}
.testimonial__body { 
	grid-area: 1 / 1 / 2 / 3;
	background-color: var(--ast-global-color-0);
	color:  var(--ast-global-color-4);
	padding:1.5em;
	border-radius: 8px;
	position:relative;
}
.testimonial__body p:last-child {
	margin-bottom: 0;
}
.testimonial__body::after {
	display: block;
	content: " ";
	width: 0;
	height: 0;
	 border-left: 0px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--ast-global-color-0);
	position:absolute;
	bottom: -18px;
	left: 18%;
}

.testimonial__picture { 
	grid-area: 2 / 1 / 3 / 2;
}
.testimonial__picture img { 
	aspect-ratio: 1 / 1;
	width: calc(100% - 15px);
	object-fit: cover;
	border-radius: 50%;
}
.testimonial__details { 
	grid-area: 2 / 2 / 3 / 3;
	line-height:1.25;
	place-self: center stretch;
}
.testimonial__name {
	font-size: 1.1em;
	font-weight: 600;
}