/* Course cards: مدرس on the right, avatars grouped on the left (RTL). */
.sw_tech_box.dl-card-teachers {
	direction: rtl;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
	text-align: right;
}
.sw_tech_box.dl-card-teachers > h4 {
	margin: 0;
	flex: 0 0 auto;
	order: 0;
}
.dl-card-teachers__photos {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	min-width: 0;
}
.sw_tech_box.dl-card-teachers .teacher-avatar-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 36px;
	display: block;
}
@media (max-width: 767px) {
	.sw_tech_box.dl-card-teachers .teacher-avatar-img {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}
}
@media (max-width: 479px) {
	.sw_tech_box.dl-card-teachers {
		gap: 8px;
	}
	.dl-card-teachers__photos {
		gap: 4px;
	}
}
