.author-container{
	position: relative;
}
.author-container:after{
	position: absolute;   
	content: "";
    background: var(--blue);
    height: 5px;
    width: 100px;
    bottom: -3px;
    left: 220px;
}
.opinions-author {
    background: url(../images/opinions-bg.jpg) left top no-repeat;
    background-size: cover;
	padding: 20px;
	width: 200px;
	height: fit-content;
}
.opinions-author img{
	display: block;
	/*border-radius: 100%;*/
}
.author-summary{
	width: calc(100% - 220px);
    line-height: 1.65;
    letter-spacing: 0.4px;
}
.author-summary p{
    margin-bottom: 1.429em;
}
.author-summary p:last-child{
	margin-bottom: 0;
}
.author-summary h2{
	font-size: 16px;
	margin-top: 5px;
}
/* =Responsive 
-----------------------------------------------------*/
@media screen and (max-width:560px) {
	.opinions-author, .author-summary{
		width: 100%;
	}
	.opinions-author{
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.author-container:after {
    	left: 0;
	}
}