.his-teachers {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.his-teacher-card {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.his-teacher-card__media {
	width: 200px;
	flex: 0 0 200px;
}

.his-teacher-card__img {
	width: 200px;
	height: 200px;
	border-radius: 13px;
	object-fit: cover;
	display: block;
	background: #f2f2f2;
}

.his-teacher-card__img--placeholder {
	border: 1px solid #F9F9F9;
}

.his-teacher-card__title {
	margin: 0 0 10px;
	font-weight: 800;
	line-height: 1.3em;
	font-size: 1.6rem;
}

.his-teacher-card__meta {
	margin: 5px 0;
	display: flex;
	gap: 5px;
	font-size: 1.2rem;
}

.his-teacher-card__label {
	font-weight: 700;
}

.his-teacher-card__value {
	font-weight: 400;
}

.his-teacher-card__desc {
	margin-top: 20px;
	font-size: 1rem;
	line-height: 1.3em;
}

.his-teacher-card__contacts {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
}

.his-teacher-card__contact {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 1rem;
}

.his-teacher-card__icon {
	width: 15px;
	display: inline-flex;
	justify-content: center;
}

.his-teacher-card__link {
	text-decoration: none !important;
	color: inherit;
}

.his-teacher-card__link:hover {
	color: inherit;
}

@media (max-width: 767px) {
	.his-teachers {
		gap: 60px;
	}

	.his-teacher-card {
		flex-direction: column;
		gap: 20px;
	}

	.his-teacher-card__media {
		width: 100%;
		flex-basis: 100%;
	}

	.his-teacher-card__content {
		text-align: center;
	}

	.his-teacher-card__img {
		width: 100%;
		height: auto;
	}

	.his-teacher-card__meta {
		flex-direction: column;
	}

	.his-teacher-card__contacts {
		justify-content: center;
	}
}