.student-results {
	padding: 60px 0 120px;
}

.student-results__title {
	max-width: 620px;
	margin: 0 auto 60px auto;
	text-align: center;
	font-weight: 400;
}

.student-result {
	display: flex;
	column-gap: 25px;
	margin-bottom: 50px;
}

.student-result:last-child {
	margin-bottom: 0;
}

.student-result:nth-child(even) {
	flex-direction: row-reverse;
}

.student-result__info,
.student-result__img {
	flex-basis: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.student-result__img img {
	border: 1px solid #5C84C5;
	box-shadow: 0px 6px 25px rgba(210, 212, 216, 0.6);
}

.student-result__info {
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.5em;
}

.student-result__author {
	margin-top: 25px;
}

.student-result__author .name {
	font-weight: 700;
	color: #5C84C5;
}


@media screen and (max-width: 768px) {
	.student-results {
		padding: 30px 0 60px;
	}
	.student-result,
	.student-result:nth-child(even) {
		flex-direction: column;
		row-gap: 25px;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
	}
	.student-result__author {
		margin-top: 10px;
	}
}