.items {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.item {
    text-align: center;
    width: 250px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    height: 100%;
}

.item a {
    text-decoration: none;
    border: none;
}

.img-clip {
    height: 190px;
    width: 200px;
    overflow: hidden;
    border-radius: 10px 50px;
    border: solid;
    margin-bottom: 8px;
    background-color: white;
    transition: all 0.2s ease-in-out;
}


.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.img-clip:hover {
    border-color: lightskyblue;
    transform: scale(1.08);
}

.item img {
    width: 100%;
    height: 100%;
}

.caption {
    background: lightgoldenrodyellow;
    width: 200px;
    border-radius: 10px;
    border: solid;
    padding: 4px;
}