.ejma-teacher-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--40);
}

@media (min-width: 768px) {
	.ejma-teacher-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.ejma-teacher-grid {
		grid-template-columns: repeat(var(--ejma-teacher-cols, 5), minmax(0, 1fr));
	}
}

.ejma-teacher-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: var(--wp--preset--spacing--40);
}

.ejma-teacher-cell__photo {
	display: block;
	width: 80%;
	aspect-ratio: 1;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.2) center top / cover no-repeat;
	transition: all 0.3s ease;
}

.ejma-teacher-cell__name {
	margin-top: 1rem;
	text-align: center;
	text-transform: lowercase;
	line-height: 1.1;
	font-family: var(--wp--preset--font-family--title);
	color: var(--wp--preset--color--primary);
}
