/*
 *  Styles for the modules on the team page
 */

/* Generic wrapper */
.wazoku-team-item {
    margin: 1.5% 0;
    clear: right;
    height: 320px;
}

.wazoku-team-content {
    position: relative;
}

/* Suppressing link appearences as items are links */
.wazoku-team-item a:hover {
    text-decoration: none;
}

/* Team images */
.wazoku-team-img, .wazoku-team-hover {
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.wazoku-team-img {
    z-index: 999;
}

/* Swapping team image */
.wazoku-team-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Member name and role */
.wazoku-team-name, .wazoku-team-role {
    text-align: center;
}

/* Positioning for member name */
.wazoku-team-name {
    margin: 1em 0 0.25em 0;
}

/* Member role */
.wazoku-team-role {
    color: #676767;
}

@media screen and (max-width: 992px) {
    .wazoku-team-item {
        height: initial;
    }
}