.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;
}

/* 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;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .pathways-profile {
    }
}