.m7 button {
  opacity: .5;
	cursor: pointer;
	position: relative;
	border-radius: 50%;
  will-change: opacity;
  transition: opacity transform .4s linear;
}
.m7 button:hover,
.m7 [aria-selected="true"] {
  opacity: 1;
}
/* .m7 button:hover {
	transform: scale(1.05);
} */
.m7 button::before {
	position: absolute;
	top: 0;
	left; 0;
	border-radius: inherit;
	box-shadow: 0px 0px 6px rgba(0,0,0,.4);
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 2px solid;
	opacity: 0;
}
.m7 button:hover::before,
.m7 [aria-selected="true"]::before {
  opacity: 1;
	will-change: opacity;
  transition: opacity .4s linear;
}
.m7 blockquote {
  margin: 0 auto;
  padding: 0 60px;
  max-width: 900px;
  font-style: italic;
  position: relative;
}

.m7 blockquote>:first-child{
  left: 0;
  top: -7px;
  position: absolute;
}
.m7 blockquote>:last-child{
  position: absolute;
  right: 0;
  top: unset;
  left: unset;
  bottom: -7px;
  transform: scaleX(-1);
}