.steps {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
li.step + .step {
	margin-top: 1em;
}
li.step {
	position: relative;
	padding: 1em 1em 1em 2em !important;
	border-radius: 0.5em;
	background-color: #298fc2;
	color: #fff;
	font-size: 1.5em;
	line-height: 1.1;
}
li.step::after {
	position: absolute;
	top: 1em;
	left: 0.8em;
	font-weight: bold;
}
li.step:nth-child(1)::after {
	content: "1";
}
li.step:nth-child(2)::after {
	content: "2";
}
li.step:nth-child(3)::after {
	content: "3";
}
li.step .step__link {
	color: white;
}

.classes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	grid-gap: 2em;
}
.class {
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 1em 1em 0 1em;
	border-radius: 4px;
	background-color: #eaf4f9;
}
.class__title {
	font-size: 1.2em;
	font-weight: bold;
}
.class__details > * + * {
	margin-top: 1em;
}
.class__description {
	font-style: italic;
}
.class__instructor-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.class__fees {
	margin-top: auto;
}
.class__fees,
.class__fee-member,
.class__fee-nonmember {
	display: flex;
	align-items: center;
}
.class__fee-member {
	font-weight: bold;
}
.class__fee-nonmember {
	margin-left: 3em;
	font-size: 0.9em;
}
.badge {
	margin-left: 1em;
}
.class__fee-member .badge {
	background-color: #298fc2;
}

.conservatory-classes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.conservatory-class {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 16px 30px;
    border-radius: 4px;
    background-color: #eaf4f9;
}
.conservatory-class h4 {
    margin-bottom: 4px;
}
.class-instructor-short-bio {
    font-size: 90%;
}
.class-fees {
    margin-bottom: 2em;
}
.class-fees,
.class-fee-members,
.class-fee-non-members {
    display: flex;
    align-items: center;
}
.class-fee-members {
    font-weight: bold;
}
.class-fee-non-members {
    margin-left: 2em;
    font-size: 0.9em;
}
.badge {
    margin-left: 1em;
}
.class-fee-members .bg-secondary {
    background-color: #298fc2 !important;
}
