.fellows-list {
    margin-left: -15px;
    margin-right: -15px;
}

.fellows {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.fellow {
    flex: 1 0 calc(25% - 10px);
    max-width: calc(25% - 10px);
    background-color:#ffffff;
    border: 1px solid #f0f0f0;
    margin: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align:center;
}

.fellow img {
    width: 100%;
    height: auto; /* Change this to '100%' if you want the image to cover the whole area */
    object-fit: cover; /* Makes the image cover the available space, might crop it */
}

.fellow h3,
.fellow div {
    padding: 10px;
}

.fellows .fellow h3 {
	font-size:1.1rem;
	font-weight:600;
	padding-bottom:0;
	margin-block-end:0;
	}
	
.fellows .fellow {
	padding-top:0;
	font-size:.9rem;}

@media (max-width: 1024px) {
    .fellow {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .fellow {
        flex: 0 0 calc(100% - 10px);
        max-width: calc(100% - 10px);
    }
}
