.profile {
    list-style: none;
    padding: 0;
}

.profile li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.image-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    flex-shrink: 0;

}

.profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 600px) {
    .profile li {
        flex-direction: row;
        text-align: left;
    }

    .image-wrapper {
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .profile p {
        flex: 1;
    }
}

h4,h5,
p strong {
    margin: 0;
}

.profile>li>div>p,
.profile>li>div>h3 {
    margin: 0;
}
img{
    max-width: 100%;
    height: auto;
}

.image-top {
    object-position: top;
}

