div.writers {
	width: calc(100% - 20px);
	display: block;
	position: relative;
	margin: 0 auto 20px auto;
	padding: 30px;
	border-radius: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
}

@media screen and (max-width: 768px) {
	div.writers {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		padding: 10px;
		gap: 10px;
	}
}

div.writer {
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	height: 100%;
}

div.writer:last-of-type {
	margin-bottom: 0;
}

div.writer img {
	height: 200px;
	width: 160px;
	margin: 0 auto 10px auto;
	display: block;
	position: relative;
	margin: 0 auto 30px auto;
	border-radius: 20px;
}

p.writerText {
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 20px auto;
	width: 100%;
}

div.writer h3 {
	font-size: 2em;
	margin-bottom: 10px;
	text-align: center;
}

div.writer h4 {
	font-size: 1.3em;
	margin-bottom: 20px;
	text-align: center;
}

div.featuredCourse {
	border-radius: 5px;
	padding: 10px;
	width: 100%;
	max-width: 900px;
	position: relative;
	margin: auto;
	transition: transform 0.2s linear;
}

div.featuredCourse img {
	width: 60px;
	height: 60px;
	float: left;
	margin: 0 10px 0 0;
}

div.featuredCourse p {
	font-weight: 700;
	clear: initial;
	font-size: 1em;
	text-align: left;
	margin: auto;
	width: auto;
	max-width: none;
}

h2.contentHeading {
	font-size: 1.7em;
	line-height: 1.5em;
	text-align: center;
	margin: 60px auto 30px auto;
}

img.sfcEndorsed {
	width: 100%;
	max-width: 350px;
	height: auto;
	margin: 30px auto;
	display: block;
	position: relative;
	padding: 20px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 1);
}

p.contentText {
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 30px auto;
	width: 100%;
	max-width: 850px;
}

div.writer div.featuredCourse h3 {
	font-size: 1.5em;
	text-align: left;
}

div.featuredCourse.business {
	background-color: #f3b8bb;
}

div.featuredCourse.business * {
	color: #c52126;
}

div.featuredCourse.teaching {
	background-color: #b0c9e7;
}

div.featuredCourse.teaching * {
	color: #1f5aa5;
}

div.featuredCourse.childcare {
	background-color: #f3dbb9;
}

div.featuredCourse.childcare * {
	color: #f08c00;
}

div.featuredCourse.care {
	background-color: #cdafd4;
}

div.featuredCourse.care * {
	color: #64358b;
}

div.featuredCourse.general {
	background-color: #b7d8ad;
}

div.featuredCourse.general * {
	color: #28a737;
}

@media screen and (min-width: 1024px) {
	div.featuredCourse:hover {
		transform: scale(1.05);
		cursor: pointer;
	}
}