@font-face {
    font-family: Navigo;
    src: url('/fonts/Navigo-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: Navigo;
    src: url('/fonts/Navigo-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: Navigo;
    src: url('/fonts/Navigo-Medium.ttf') format('truetype');
    font-weight: 500;
}

.blog-page {
    --blog-ink: #1a251f;
    --blog-green: #016d33;
    --blog-pale: #c0dacc;
    --blog-content-max: 1440px;
    --blog-header-edge-space: 48px;
    --blog-footer-edge-space: 48px;
    margin: 0;
    min-width: 320px;
    color: var(--blog-ink);
    background: #fff;
    font-family: Navigo, sans-serif;
    font-weight: 300;
}

.blog-page *,
.blog-page *::before,
.blog-page *::after {
    box-sizing: border-box;
}

.blog-page a {
    color: inherit;
    text-decoration: none;
}

.blog-page p,
.blog-page h1,
.blog-page h2,
.blog-page h3,
.blog-page h4,
.blog-page figure,
.blog-page ul {
    margin: 0;
}

.blog-page img {
    display: block;
    max-width: 100%;
}

.blog-page main {
    width: 100%;
    max-width: var(--blog-content-max);
    margin-inline: auto;
}

.blog-header {
    position: relative;
    z-index: 2;
    height: 84px;
    border-bottom: 0;
    background: #fff;
}

.blog-header::after,
.blog-page--article .blog-footer::before {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(to bottom, rgba(192, 218, 204, .5) 0 50%, var(--blog-pale) 50% 100%);
    content: '';
}

.blog-header::after {
    bottom: 0;
}

.blog-page--article .blog-footer::before {
    top: -2px;
}

.blog-header__container,
.blog-footer__container {
    width: 100%;
    max-width: var(--blog-content-max);
    height: 100%;
    margin-inline: auto;
}

.blog-header__container {
    position: relative;
    padding-inline: var(--blog-header-edge-space);
}

.blog-footer__container {
    padding-inline: var(--blog-footer-edge-space);
}

.blog-header__logo,
.blog-header__logo img {
    width: 59px;
    height: 32px;
}

.blog-header__logo {
    position: absolute;
    top: 24px;
    left: var(--blog-header-edge-space);
    display: block;
}

.blog-header__logo picture,
.blog-footer__logo picture {
    display: block;
}

.blog-header__nav {
    position: absolute;
    top: 32px;
    right: calc(var(--blog-header-edge-space) + 21px);
}

.blog-header__nav ul,
.blog-footer__nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
}

.blog-header__nav li,
.blog-footer__nav li {
    display: flex;
}

.blog-header__nav ul {
    gap: 45px;
}

.blog-header__nav li:nth-child(5) {
    margin-left: -12px;
}

.blog-header__nav li:nth-child(1) a { width: 87px; }
.blog-header__nav li:nth-child(2) a { width: 74px; }
.blog-header__nav li:nth-child(3) a { width: 47px; }
.blog-header__nav li:nth-child(4) a { width: 58px; }
.blog-header__nav li:nth-child(5) a { width: 46px; }
.blog-header__nav li:nth-child(6) a { width: 66px; }

.blog-header__nav a,
.blog-footer__nav a {
    display: inline-flex;
    align-items: center;
    color: var(--blog-green);
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-header__nav a.is-active {
    font-weight: 500;
}

.blog-header__active-dot,
.blog-tabs__dot {
    display: inline-block;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    transform: translateY(-1px);
    border-radius: 50%;
    background: var(--blog-green);
}

.blog-header__active-dot {
    margin-right: 4px;
}

.blog-header__menu {
    display: none;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
}

.blog-header__menu img {
    width: 24px;
    height: 24px;
}

.blog-index-hero {
    position: relative;
    height: 412px;
    overflow: hidden;
    padding: 80px 48px 0;
}

.blog-index-hero__copy {
    position: relative;
    z-index: 1;
}

.blog-kicker {
    color: var(--blog-green);
    font-size: 32px;
    line-height: 32px;
}

.blog-index-hero h1 {
    max-width: 820px;
    margin-top: 8px;
    font-size: 80px;
    font-weight: 400;
    line-height: 100px;
    text-transform: uppercase;
}

.blog-index-hero__art {
    position: absolute;
    top: 0;
    right: 0;
    width: 516px;
    height: 412px;
}

.blog-index-hero__art img {
    width: auto;
    height: auto;
    max-width: none;
}

.blog-tabs {
    display: flex;
    height: 60px;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 48px 24px;
    border-bottom: 1.5px solid var(--blog-pale);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.blog-tabs::-webkit-scrollbar {
    display: none;
}

.blog-tabs a {
    display: inline-flex;
    flex: 0 0 auto;
    height: 36px;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--blog-green);
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-tabs a.is-active {
    font-weight: 500;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    min-width: 0;
    min-height: 596px;
    border-bottom: 0;
    box-shadow: inset 0 -1.5px 0 var(--blog-pale);
}

.blog-card:nth-child(3n + 1),
.blog-card:nth-child(3n + 2) {
    box-shadow: inset -1.5px 0 0 var(--blog-pale), inset 0 -1.5px 0 var(--blog-pale);
}

.blog-card__link {
    display: flex;
    min-height: 596px;
    flex-direction: column;
    gap: 48px;
    padding: 48px;
}

.blog-card__cover {
    display: flex;
    height: 232px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card[data-cover-mode="vector"] .blog-card__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.blog-card[data-cover-mode="photo"] .blog-card__image {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: initial;
}

.blog-card[data-cover-mode="photo"][data-card-order="4"] .blog-card__image {
    margin-right: auto;
}

.blog-card__info {
    display: flex;
    min-height: 220px;
    flex-direction: column;
}

.blog-card__copy {
    display: flex;
    min-height: 156px;
    flex-direction: column;
    gap: 24px;
}

.blog-card h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.blog-card__copy p {
    color: var(--blog-ink);
    opacity: .7;
    font-size: 12px;
    line-height: 16px;
}

.blog-card__meta {
    display: flex;
    min-height: 16px;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    color: var(--blog-green);
    font-size: 12px;
    line-height: 16px;
}

.blog-card__meta span:last-child {
    text-align: right;
}

.blog-footer {
    position: relative;
    min-height: 192px;
    padding-block: 48px;
    font-weight: 400;
}

.blog-footer__top,
.blog-footer__bottom {
    display: grid;
    align-items: center;
}

.blog-footer__top {
    grid-template-columns: 1fr 480px 1fr;
    min-height: 32px;
}

.blog-footer__logo,
.blog-footer__logo img {
    width: 59px;
    height: 32px;
}

.blog-footer__logo {
    display: block;
}

.blog-footer__nav {
    display: flex;
    width: 480px;
    justify-content: center;
    justify-self: center;
}

.blog-footer__nav ul {
    width: 480px;
    justify-content: flex-start;
    gap: 21.8px;
}

.blog-footer__nav li:nth-child(1) a { width: 88px; }
.blog-footer__nav li:nth-child(2) a { width: 75px; }
.blog-footer__nav li:nth-child(3) a { width: 48px; }
.blog-footer__nav li:nth-child(4) a { width: 59px; }
.blog-footer__nav li:nth-child(5) a { width: 34px; }
.blog-footer__nav li:nth-child(6) a { width: 67px; }

.blog-footer__social,
.blog-footer__social img {
    width: 32px;
    height: 32px;
}

.blog-footer__social {
    justify-self: end;
}

.blog-footer__bottom {
    grid-template-columns: 1fr max-content;
    margin-top: 48px;
    color: var(--blog-ink);
    opacity: .3;
    font-size: 12px;
    line-height: 16px;
}

.blog-footer__bottom p {
    width: 222px;
}

.blog-footer__bottom > a {
    width: 72px;
    justify-self: end;
    text-align: right;
}

.blog-breadcrumbs {
    display: flex;
    min-height: 100px;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    max-width: 1440px;
    margin-inline: auto;
    padding: 60px 280px 20px;
    color: var(--blog-green);
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
}

.blog-breadcrumbs__group {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 16px;
    min-width: 0;
}

.blog-breadcrumbs span[aria-hidden] {
    color: var(--blog-ink);
    opacity: .3;
}

.blog-breadcrumbs > span:last-child {
    overflow: hidden;
    color: var(--blog-ink);
    text-overflow: ellipsis;
}

.blog-article-head {
    max-width: 1440px;
    margin-inline: auto;
    padding: 40px 280px;
}

.blog-article-head h1 {
    max-width: 880px;
    font-size: 48px;
    font-weight: 300;
    line-height: 52px;
}

.blog-article-lead {
    max-width: 1440px;
    margin-inline: auto;
    padding: 0 280px 32px;
}

.blog-article-lead p {
    max-width: 880px;
    color: var(--blog-ink);
    opacity: .85;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.blog-article-hero {
    max-width: 1440px;
    margin-inline: auto;
    padding: 32px 280px;
}

.blog-article-hero img {
    width: 100%;
    max-width: 880px;
    height: 428px;
}

.blog-article-hero figcaption {
    max-width: 880px;
    padding: 16px 48px 0;
    color: var(--blog-green);
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

.blog-article-body {
    max-width: 880px;
    margin: 0 auto;
    padding-bottom: 80px;
    font-size: 20px;
    line-height: 28px;
}

.blog-article-body h2 {
    max-width: 648px;
    margin: 40px 0 32px;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
}

.blog-article-body h2:not(:first-child) {
    margin-top: 52px;
}

.blog-article-body h3 {
    max-width: 648px;
    margin: 44px 0 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

.blog-article-body .blog-diagram + h3 {
    margin-top: 32px;
}

.blog-article-body h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.blog-article-body p {
    margin-bottom: 12px;
}

.blog-article-body .blog-callout p {
    margin: 0;
}

.blog-article-body a {
    display: block;
    margin-bottom: 12px;
    color: var(--blog-green);
    font-weight: 400;
}

.blog-article-body p a {
    display: inline;
    margin-bottom: 0;
}

.blog-article-body ul > li a {
    display: inline;
    margin-bottom: 0;
}

.blog-article-body ul {
    padding: 0;
    list-style: none;
}

.blog-article-body li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.blog-article-body li::before {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #80b699;
    content: '';
}

.blog-article-body blockquote {
    padding: 8px 0 16px 32px;
    margin: 12px 0 0;
    border-left: 3px solid #80b699;
    font-weight: 400;
}

.blog-callout {
    padding: 32px;
    margin: 12px 0;
    background: rgba(192, 218, 204, .35);
}

.blog-callout h4 {
    margin-bottom: 12px;
    color: var(--blog-green);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.blog-callout p {
    margin: 0;
}

.blog-diagram {
    padding: 32px 0;
}

.blog-diagram img {
    width: 100%;
    height: 778px;
}

.blog-compare {
    display: grid;
    width: calc(100% + 232px);
    grid-template-columns: 648px minmax(0, 1fr);
    gap: 24px;
    margin: 0;
}

.blog-compare p {
    margin: 0;
}

.blog-compare p:last-child {
    color: var(--blog-green);
    font-weight: 400;
}

@media (max-width: 1200px) {
    .blog-page {
        --blog-header-edge-space: 20px;
        --blog-footer-edge-space: 20px;
    }

    .blog-header {
        height: 60px;
    }

    .blog-header__logo,
    .blog-header__logo img {
        width: 44px;
        height: 24px;
    }

    .blog-header__logo {
        top: 18px;
    }

    .blog-header__nav {
        top: 20px;
        right: var(--blog-header-edge-space);
        width: min(636px, calc(100% - 40px));
    }

    .blog-header__nav ul {
        gap: 53px;
    }

    .blog-header__nav li:nth-child(5) {
        margin-left: 0;
    }

    .blog-header__nav li:nth-child(1) a { width: 88px; }
    .blog-header__nav li:nth-child(2) a { width: 75px; }
    .blog-header__nav li:nth-child(3) a { width: 48px; }
    .blog-header__nav li:nth-child(4) a { width: 59px; }
    .blog-header__nav li:nth-child(5) a { width: 34px; }
    .blog-header__nav li:nth-child(6) a { width: 67px; }

    .blog-header__nav a,
    .blog-header__nav a.is-active {
        font-weight: 400;
    }

    .blog-header__active-dot {
        display: none;
    }

    .blog-index-hero {
        height: 248px;
        padding: 52px 32px 0;
    }

    .blog-kicker {
        font-size: 20px;
        line-height: 24px;
    }

    .blog-index-hero h1 {
        max-width: 704px;
        margin-top: 24px;
        font-size: 48px;
        line-height: 52px;
    }

    .blog-index-hero__art {
        width: 296px;
        height: 248px;
    }

    .blog-tabs {
        height: 52px;
        padding: 0 32px 16px;
    }

    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-card {
        min-height: 564px;
        border-bottom: 0;
        box-shadow: inset 0 -1.5px 0 var(--blog-pale);
    }

    .blog-card:nth-child(3n + 1),
    .blog-card:nth-child(3n + 2) {
        border-right: 0;
    }

    .blog-card:nth-child(odd) {
        box-shadow: inset -1.5px 0 0 var(--blog-pale), inset 0 -1.5px 0 var(--blog-pale);
    }

    .blog-card:nth-child(3),
    .blog-card:nth-child(5) {
        display: none;
    }

    .blog-card:nth-child(4) {
        box-shadow: inset -1.5px 0 0 var(--blog-pale), inset 0 -1.5px 0 var(--blog-pale);
    }

    .blog-card__link {
        min-height: 564px;
        gap: 48px;
        padding: 32px;
    }

    .blog-card__copy {
        height: 156px;
        min-height: 0;
    }

    .blog-card__cover {
        height: 232px;
    }

    .blog-footer {
        min-height: 186px;
    }

    .blog-footer__logo,
    .blog-footer__logo img {
        width: 44px;
        height: 24px;
    }

    .blog-footer__social,
    .blog-footer__social img {
        width: 24px;
        height: 24px;
    }

    .blog-footer__top {
        min-height: 24px;
    }

    .blog-footer__nav ul {
        width: 480px;
    }

    .blog-footer__bottom {
        margin-top: 50px;
    }

    .blog-breadcrumbs {
        min-height: 80px;
        padding: 40px 32px 20px;
    }

    .blog-article-head {
        padding: 40px 32px;
    }

    .blog-article-lead {
        padding: 0 32px 32px;
    }

    .blog-article-hero {
        padding: 32px;
    }

    .blog-article-hero img {
        height: 342px;
    }

    .blog-article-body {
        padding: 0 32px 60px;
    }

    .blog-diagram img {
        height: 623px;
    }

    .blog-article-body h2,
    .blog-article-body h3 {
        max-width: none;
    }

    .blog-compare {
        width: 100%;
        grid-template-columns: 520px minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .blog-page {
        --blog-header-edge-space: 16px;
        --blog-footer-edge-space: 20px;
    }

    .blog-header {
        height: 56px;
    }

    .blog-header__logo {
        top: 16px;
    }

    .blog-header__nav {
        top: 56px;
        right: 0;
        left: 0;
        width: auto;
        display: none;
        margin: 0;
        padding: 24px 20px 32px;
        border-bottom: 1.5px solid var(--blog-pale);
        background: #fff;
    }

    .blog-header.is-open .blog-header__nav {
        display: block;
    }

    .blog-header__nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blog-header__menu {
        position: absolute;
        top: 16px;
        right: var(--blog-header-edge-space);
        display: block;
        margin: 0;
    }

    .blog-index-hero {
        height: 240px;
        padding: 80px 20px 0;
    }

    .blog-kicker {
        font-size: 16px;
        line-height: 20px;
    }

    .blog-index-hero h1 {
        max-width: 280px;
        margin-top: 12px;
        font-size: 32px;
        line-height: 36px;
    }

    .blog-index-hero__art {
        right: -73px;
        width: 288px;
        height: 240px;
    }

    .blog-tabs {
        height: 52px;
        padding: 0 32px 16px 0;
    }

    .blog-tabs a {
        padding-right: 16px;
        padding-left: 16px;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .blog-card,
    .blog-card__link {
        min-height: 532px;
    }

    .blog-card:nth-child(odd) {
        border-right: 0;
    }

    .blog-card:nth-child(4) {
        border-right: 0;
    }

    .blog-card__link {
        gap: 20px;
        padding: 20px 20px 40px;
    }

    .blog-card__cover {
        height: 232px;
    }

    .blog-card__info {
        min-height: 220px;
    }

    .blog-card__copy {
        min-height: 156px;
        gap: 16px;
    }

    .blog-card h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .blog-card__copy p,
    .blog-card__meta {
        font-size: 10px;
        line-height: 16px;
    }

    .blog-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
    }

    .blog-card__meta span:last-child {
        text-align: left;
    }

    .blog-footer {
        height: 316px;
        min-height: 316px;
        padding-block: 40px;
    }

    .blog-footer__top,
    .blog-footer__bottom {
        display: block;
    }

    .blog-footer__logo,
    .blog-footer__logo img {
        width: 44px;
        height: 24px;
    }

    .blog-footer__nav {
        display: block;
        width: 100%;
        justify-self: stretch;
        margin-top: 40px;
    }

    .blog-footer__nav ul {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 20px;
        gap: 16px 32px;
    }

    .blog-footer__nav li:nth-child(1) { grid-column: 1; grid-row: 1; }
    .blog-footer__nav li:nth-child(2) { grid-column: 1; grid-row: 2; }
    .blog-footer__nav li:nth-child(3) { grid-column: 2; grid-row: 2; }
    .blog-footer__nav li:nth-child(4) { grid-column: 2; grid-row: 1; }
    .blog-footer__nav li:nth-child(5) { grid-column: 1; grid-row: 3; }
    .blog-footer__nav li:nth-child(6) { grid-column: 2; grid-row: 3; }

    .blog-footer__bottom {
        position: relative;
        margin-top: 40px;
        padding-right: 0;
    }

    .blog-footer__bottom p {
        position: absolute;
        width: 251px;
        top: 24px;
        left: 0;
        white-space: nowrap;
    }

    .blog-footer__bottom a {
        display: block;
        height: 16px;
        justify-self: start;
    }

    .blog-footer__social {
        position: absolute;
        right: var(--blog-footer-edge-space);
        top: 252px;
        width: 24px;
        height: 24px;
    }

    .blog-footer__social img {
        width: 24px;
        height: 24px;
    }

    .blog-breadcrumbs {
        min-height: 88px;
        gap: 8px;
        padding: 16px;
        font-size: 12px;
        line-height: 16px;
    }

    .blog-breadcrumbs {
        flex-direction: column;
    }

    .blog-breadcrumbs__group {
        gap: 8px;
    }

    .blog-breadcrumbs__group:last-child {
        width: 100%;
    }

    .blog-breadcrumbs__group:last-child > span:last-child {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: normal;
    }

    .blog-article-head {
        padding: 24px 16px;
    }

    .blog-article-head h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .blog-article-lead {
        padding: 0 16px 24px;
    }

    .blog-article-lead p {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-article-hero {
        padding: 24px 16px;
    }

    .blog-article-hero img {
        height: 140px;
    }

    .blog-article-hero figcaption {
        padding: 16px 0 0;
        font-size: 12px;
        line-height: 16px;
    }

    .blog-article-body {
        padding: 0 16px 40px;
        font-size: 14px;
        line-height: 20px;
    }

    .blog-article-body h2 {
        margin: 24px 0 16px;
        font-size: 20px;
        line-height: 24px;
    }

    .blog-article-body h2:not(:first-child) {
        margin-top: 36px;
    }

    .blog-article-body h3 {
        margin: 36px 0 16px;
        font-size: 16px;
        line-height: 20px;
    }

    .blog-article-body .blog-diagram + h3 {
        margin-top: 24px;
    }

    .blog-article-body p,
    .blog-article-body li {
        margin-bottom: 12px;
    }

    .blog-article-body blockquote {
        padding: 8px 0 16px 16px;
    }

    .blog-callout {
        padding: 24px;
    }

    .blog-callout h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-diagram {
        padding: 16px 0;
    }

    .blog-compare {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 12px;
    }

    .blog-article-body li {
        margin-bottom: 12px;
    }

    .blog-article-body blockquote {
        padding-left: 16px;
    }

    .blog-article-body h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-article-body .blog-diagram img {
        width: 100%;
        height: 227px;
        margin-inline: auto;
    }

    .blog-article-body p + h3,
    .blog-article-body .blog-compare + h3 {
        margin-top: 36px;
    }

    .blog-article-body .blog-compare + h3 {
        margin-top: 24px;
    }
}

@media (min-width: 761px) and (max-width: 1200px) {
    .blog-footer__bottom > a {
        transform: translateY(1px);
    }
}

@media (min-width: 1441px) {
    .blog-page .blog-article-hero {
        margin-inline: auto;
    }
}

.blog-article-hero img {
    object-fit: contain;
}

.blog-article-body .blog-diagram img.blog-article-image {
    height: auto;
}

.blog-article-body .blog-diagram-caption {
    margin: -16px 0 0;
    color: var(--blog-ink);
    opacity: .65;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

@media (max-width: 760px) {
    .blog-article-body .blog-diagram-caption {
        margin-top: -8px;
        font-size: 12px;
        line-height: 16px;
    }
}
