.school-list {

}

.school-list .school-item {
	display: grid;
    grid-template-columns: 17px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none !important;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
    transition: 0.3s ease;
}

.school-list .school-logo {
	background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 17px;
    height: 27px;
    transition: 0.3s ease;
}

.school-list .school-item-name {
	font-weight: 600;
	font-size: 17px;
	color: #000;
}

.school-list .school-item:hover {
	background: #e8edf5;
}