Pods items
/*************************/
/** 5. Team grid widget **/
/*************************/
.teammember{
display: flex;
margin-bottom: var(--spacing-m);
flex-direction: column;
a {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
&__image {
position: relative;
padding-bottom: 100%;
margin-bottom: var(--spacing-s)!important;
img {
position: absolute;
object-fit: cover;
height: 100%;
width: 100%;
}
}
&__title {
margin: 0;
font-weight: bold;
}
&__function {
margin: 0;
opacity: .6;
}
&__location {
color: var(--color-primary);
}
&__btn {
margin-top: auto;
justify-content: center;
color: white;
transition: .2s;
&:hover {
transform: translateY(2px);
filter: brightness(.9);
}
}
}