.avtop_block {
	display: flex;
}
.avtop_block  .img {
	width: 200px;
}
.avtop_block  .img img {
	border-radius: 50%;
}
.avtop_block  .text_avtor {
	width: calc(100% - 200px);
}
.avtop_block  .text_avtor .title{
	font-size: 23px;
    font-weight: bold;
    margin-bottom: 8px;
	color: var(--main-color);;
}
.avtop_block  .text_avtor .name {
	font-weight: bold;
  	margin-bottom: 8px;
}
.avtop_block  .text_avtor .text{
	font-size: 16px;
}
.avtop_block  .text_avtor a{
	font-size: 20px;
  	font-weight: 600;
}
@media screen and (max-width: 600px){
	.avtop_block {
		flex-direction:column;
		gap: 20px;
	}
	.avtop_block  .text_avtor, 
	.avtop_block  .img{
		width: 100%;
	}
	.avtop_block .img img {
		margin: 0 auto;
		display: block;
	}
	.avtop_block .text_avtor a {
		display: block;
	}
}