.card {
    display: flex;
    flex-direction: column;
    color: #444;
    text-align: center;
    padding: 1em;
    border-bottom: 1px solid #FAAA1E;
}

.card:last-child {
    border-bottom: none;
}

.profile-image {
    height: 200px;
    width: 200px;
}

.profile-name {
    font-size: 1.5rem;
    line-height: 1.1;
    color: #FAAA1E;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-name::after {
    content: "";
    display: block;
    height: 1px;
    width: 2em;
    background: #FAAA1E;
    margin: .7em auto .5em;
    opacity: 0.35;
}

.profile-position {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 1em;
}

.profile-body {
    font-weight: 300;
    opacity: .8;
    margin-bottom: 0px;
}