83 lines
2.1 KiB
SCSS
83 lines
2.1 KiB
SCSS
.post-type-archive-team-member {
|
|
.team-members-top {
|
|
@extend .intro_block;
|
|
}
|
|
|
|
.team-members {
|
|
h2 {
|
|
@extend .goudy;
|
|
@extend .headline-lg;
|
|
color: $c-navy;
|
|
margin-top: 6rem;
|
|
width: 100%;
|
|
max-width: 956px;
|
|
}
|
|
|
|
.team-members-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
.team-member {
|
|
border: 1px solid $c-borderGrey;
|
|
border-radius: 10px;
|
|
width: calc(50% - 1rem);
|
|
max-width: 593px;
|
|
padding: 1rem;
|
|
margin-bottom: 2rem;
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.left {
|
|
width: 175px;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
|
|
a {
|
|
display: block;
|
|
font-size: 16px;
|
|
color: $c-textGrey;
|
|
|
|
&:nth-of-type(3) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
.name {
|
|
font-weight: bold;
|
|
margin: 0;
|
|
color: $c-navy;
|
|
font-size: 26px;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.position {
|
|
color: $c-navy;
|
|
}
|
|
|
|
.excerpt {
|
|
p {
|
|
display: inline;
|
|
}
|
|
|
|
a {
|
|
color: $c-navy;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|