This commit is contained in:
2025-05-07 15:24:57 -07:00
parent 980a2a3313
commit 14cd88faff
4 changed files with 56 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
@import "flex-multiblock-callout";
@import "flex-5050-cta";
@import "flex-grid-callout";
@import "flex-3-column-callouts";
@import "team-members";
@import "team-member";

View File

@@ -0,0 +1,30 @@
.flex_3_column_callouts {
.callout {
padding: 3rem 3rem 5rem 4rem;
line-height: 37px;
p.headline {
font-size: 30px;
font-weight: 600;
}
&:first-of-type {
background-color: $c-navy;
color: $c-white;
}
&:nth-of-type(2) {
background-color: $c-offWhite;
color: $c-navy;
img {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
}
&:last-of-type {
background-color: $c-charcoal;
color: $c-white;
}
}
}