:root {
  --wow-theme-primary: #111;       /* default */
  --wow-theme-secondary: #fff;  /* default */
}

#wow-embed,
.wow-embed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.wow-member {
    cursor: pointer;
    text-align: center;
}

.image-top img {
    object-position: top; //center
}

.wow-member img,
.wow-member .img-empty {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
    background-color: #f0f0f0;
}

.wow-member-name {
    color: var(--wow-theme-primary);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.wow-member-role {
    color: var(--wow-theme-secondary);
    background-color: var(--wow-theme-primary);
    display: inline-block;
    padding: 0.35rem 0.95rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .wow-member img,
    .wow-member .img-empty {
        width: 180px;
        height: 180px;
    }
}
