Files
chaffe-theme/src/scss/team-members.scss
2025-05-13 14:18:05 -07:00

77 lines
1.9 KiB
SCSS

.post-type-archive-team-member {
.team-members-top {
@extend .intro_block;
}
.team-members {
h2 {
@extend .goudy;
color: $c-navy;
margin-top: 6rem;
margin-bottom: 4rem;
font-size: 70px;
line-height: 70px;
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;
max-width: 593px;
padding: 1rem;
margin-bottom: 2rem;
.left {
width: calc(33% - 0.5rem);
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;
}
}
}
}
}
}
}