.rankings {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1em;
}
.ranking {
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 1.5em;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	width: 50%;
}
.ranking h3 {
	color: #f68b1f;
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 0px;
}
.ranking.first,
.ranking.third,
.ranking.fifth {
	border-right: 1px solid #ccc;
}
.pathways-profile {
    background-color: #4c2683;
	color: #ffffff;
	margin-bottom: 1em;
	border-radius: 6px;
}
.pathways-profile p {
    margin-bottom: 0;
}
.main-content .wysiwyg .pathways-profile img {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 300px;
}
.pathways-profile-text {
	padding: 1em;
}

.pathways-profile h3 {
	color: #f68b1f;
	font-size: 110%;
}

.pathways-profile h4 {
	color: #f68b1f;
	font-size: 90%;
}

.mentors {
    margin-bottom: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    row-gap: 2rem;
    column-gap: 1rem;
}

.mentors .mentor {
    text-align: center;
    font-size: 90%;
    overflow-wrap: break-word;
}

.mentors .mentor img {
    display: block;
    max-width: 150px;
}

.tuition-and-fees-chart {
    background-color: #4C2683;
    background-image: url('../images/bg-olmsted.jpg');
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
    color: white;
    padding: 1em 2em;
    margin-bottom: 1em;
}
.tuition-and-fees-chart h3 {
    color: #F68B1F;
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-weight: 400 !important;
    font-style: italic;
    text-align: center;
    font-size: 230%;
    margin-bottom: 0.2em;
    text-transform: uppercase;
}
.tuition-and-fees-chart h4 {
    font-style: italic;
    font-weight: normal;
    text-align: center;
}
.tuition-and-fees-chart table {
    margin-bottom: 1em;
    width: 100%;
    text-transform: uppercase;
}
.tuition-and-fees-chart table td,
.tuition-and-fees-chart table th {
    padding: 0.25em;
    color: #F68B1F;
    font-weight: bold;
}
.tuition-and-fees-chart table th {
    color: white;
    font-weight: normal;
    border-bottom: 1px solid #F68B1F;
}
.tuition-and-fees-chart table td span {
    color: white;
}
.tuition-and-fees-chart .fineprint {
    text-align: center;
    margin-bottom: 0.5em;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .pathways-profile {
        display: grid;
        grid-template-columns: 30% 1fr;
        gap: 20px;
    }
    .main-content .wysiwyg .pathways-profile img {
        max-width: none;
        margin-bottom: 0;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .pathways-profile {
        grid-template-columns: 20% 1fr;
    }
    
    .tuition-and-fees-chart table {
        font-size: 170%;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .pathways-profile {
    }
}