.other-programs {}

.other-programs__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.other-programs__title {
	font-weight: 600;
	font-size: 48px;
	color: #0A0A0A;
}

.program-list__item {
	width: 340px;
	min-height: 390px;
	border-radius: 24px;
	background: #F5F5F5;
	padding: 10px;
	margin-right: 20px;
}

.program-list__item-image {
	width: 100%;
	padding-top: 80%;
	border-radius: 24px;
	margin-bottom: 20px;
}

.program-list__item-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 1;
	color: #0A0A0A;
	padding: 0 5px;
	margin-bottom: 20px;
}

.program-list__item-footer {
	padding: 0 5px;
	font-weight: 600;
	font-size: 16px;	
}

.program-list__item-price {
	color: #0A0A0A;
}

@media (max-width: 1100px) {
	.other-programs__title {
		font-size: 32px;
	}
	
	.program-list__item {
		padding: 5px;
	}
	
	.program-list__item,
	.program-list__item-image {
		border-radius: 16px;
	}
	
	.program-list__item-title,
	.program-list__item-footer {
		font-size: 16px;
		padding: 0 10px;
	}
}