.online-course-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 2em;
}

.online-course-boxes a {
	display: block;
	width: 48%;
	background-color: #4c2683;
	border-radius: 6px;
	color: #fff;
	outline: 4px solid #fff;
}

.online-course-boxes a:hover,
.online-course-boxes a:focus {
	text-decoration: none;
	background-color: #563398;
	outline: 4px solid #f68b1f;
}

.online-course-boxes img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0px !important;
}

.online-course-boxes a span.title {
	display: block;
	padding: 0.8em 0.8em;
}

.other-programs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 2em;
}

.other-programs a {
	display: block;
	background-color: #f68b1f;
	color: #111;
	text-align: center;
	padding: 1em;
	border-radius: 6px;
}

.other-programs a span.browse {
	display: inline-block;
	margin: auto;
	background-color: #fff;
	border: 2px solid #ccc;
	text-transform: uppercase;
	padding: 0.2em 0.8em;
	margin-top: 0.5em;
	font-weight: 200;
}

.other-programs a:hover,
.other-programs a:focus {
	text-decoration: none;
}

.other-programs a:hover span.browse,
.other-programs a:focus span.browse {
	background-color: #f3f3f3;
	text-decoration: none;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.online-course-boxes a {
		width: 32%;
	}
	
	.other-programs a {
		width: 32.2%;
	}
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.online-course-boxes a {
		width: 24%;
	}

}