.lazyloaded {
	opacity: 1;
	transition: opacity 400ms;
	transition-delay: 0ms;
}

.board {
    margin: 0 auto;
    text-align: center;
    line-height: 1.15;
    box-sizing: border-box;
    max-width: var(--wp--style--global--wide-size);
}

.board-member {
    width: 200px;
    height: 260px;
    position: relative;
    display: inline-block
}

.board-member, *, ::before, ::after {
	box-sizing: inherit;
}

.board-member .board-text {
    position: absolute;
    bottom: 0;
    background: #db4525;
    color: #fff;
    width: 100%;
    padding: 1em;
    text-align: center;
    height: auto;
    will-change: height;
    transition: height 0.5s ease;
    height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.board-member .board-text h4 {
    font-size: 0.75em;
    font-family: "Encode Sans Expanded", sans-serif;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.board-member .board-text p {
    margin: 5px 0 0;
    line-height: 1.2;
    font-size: 0.65em
}

.board-member .board-text h4,
.board-member .board-text p {
    color: #fff
}

@media only screen and (max-width: 432px){

    .board-member {
        width: 160px;
        height: 220px;
    }
}
