
.pi-bd {
    --ink: #0d0d0d;
    --body: #333333;
    --muted: #6e6e6e;
    --cream: #f2f2f2;
    --line: #dcdcdc;
    --tan: #000000;
    font-family: "Ubuntu",sans-serif;
    color: var(--body);
    line-height: 1.7;
    overflow: hidden
}

.pi-bd .pi-hero {
    --tan: #ffffff
}

.pi-bd * {
    box-sizing: border-box
}

div.pi-bd div {
    z-index: auto !important
}

.pi-bd img {
    max-width: 100%;
    display: block
}

.pi-bd p {
    margin: 0 0 18px
}

    .pi-bd p:last-child {
        margin-bottom: 0
    }

.pi-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.pi-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 500;
    margin-bottom: 22px
}

    .pi-eyebrow::before {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--tan);
        flex: none
    }

.pi-sec {
    padding: clamp(54px,7vw,90px) 0
}

/* Heading scale: h1 > post title > h2 > h3 */
.pi-h1 {
    font-size: clamp(30px,4vw,48px) !important;
    line-height: 1.12;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -.01em
}

.pi-post__title {
    font-size: clamp(26px,3.2vw,38px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 0 0 18px
}

.pi-prose h2 {
    font-size: clamp(22px,2.4vw,28px) !important;
    line-height: 1.25;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: clamp(38px,4vw,54px) 0 16px
}

.pi-prose h3 {
    font-size: clamp(18px,1.8vw,22px) !important;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    margin: 32px 0 12px
}

/* Hero */
.pi-hero {
    background-size: cover;
    background-position: center;
    min-height: clamp(260px,34vh,360px);
    display: flex;
    align-items: center;
    padding: 64px 0
}

.pi-hero__inner {
    max-width: 840px
}

.pi-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: .06em;
    color: rgb(255 255 255 / .62);
    margin: 0
}

    .pi-crumbs a {
        color: rgb(255 255 255 / .82);
        text-decoration: none;
        transition: color .25s ease
    }

        .pi-crumbs a:hover {
            color: #fff
        }

    .pi-crumbs .pi-sep {
        opacity: .45
    }

    .pi-crumbs .is-current {
        color: rgb(255 255 255 / .58)
    }

/* Featured media */
.pi-figure {
    background: var(--line);
    overflow: hidden;
    margin: 0 0 clamp(28px,3vw,40px);
    border-radius: 16px;
}

    .pi-figure img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        margin: 0 auto;
    }

/* Post meta */
.pi-post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    padding: 0 0 22px;
    margin: 0 0 clamp(26px,3vw,36px);
    border-bottom: 1px solid var(--line)
}

    .pi-post__meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted)
    }

    .pi-post__meta b {
        font-weight: 500;
        color: var(--tan);
        letter-spacing: .1em
    }

    .pi-post__meta i {
        font-size: 14px;
        color: var(--muted);
        font-style: normal
    }

    .pi-post__meta .pi-dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--line);
        flex: none;
        padding: 0
    }

/* Prose */
.pi-prose {
    font-size: 16px;
    color: var(--body)
}

    .pi-prose > p:first-of-type {
        font-size: clamp(16px,1.35vw,18px);
        color: var(--ink)
    }

    .pi-prose strong {
        font-weight: 500;
        color: var(--ink)
    }

    .pi-prose a {
        color: var(--ink);
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px
    }

        .pi-prose a:hover {
            color: var(--muted)
        }

    .pi-prose ul {
        margin: 0 0 18px;
        padding-left: 20px
    }

    .pi-prose li {
        margin-bottom: 10px
    }

        .pi-prose li::marker {
            color: var(--muted)
        }

    .pi-prose blockquote {
        margin: clamp(30px,3.4vw,44px) 0;
        padding: 4px 0 4px 26px;
        border-left: 2px solid var(--ink);
        font-size: clamp(17px,1.6vw,21px);
        line-height: 1.55;
        color: var(--ink)
    }

        .pi-prose blockquote cite {
            display: block;
            margin-top: 14px;
            font-size: 13px;
            font-style: normal;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted)
        }

/* Key points */
.pi-points {
    background: var(--cream);
    padding: clamp(26px,3vw,38px);
    margin: clamp(32px,3.6vw,46px) 0
}

    .pi-points b {
        display: block;
        font-size: 13px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--tan);
        font-weight: 500;
        margin-bottom: 16px
    }

    .pi-points ul {
        margin: 0;
        padding-left: 18px
    }

    .pi-points li {
        margin-bottom: 10px;
        font-size: 15px
    }

        .pi-points li:last-child {
            margin-bottom: 0
        }

@media (max-width:640px) {
    .pi-wrap {
        padding: 0 18px
    }

    .pi-hero {
        min-height: auto;
        padding: 50px 0
    }

    .pi-crumbs {
        font-size: 12px;
        gap: 8px
    }

    .pi-figure {
        border-radius: 10px
    }

        .pi-figure img {
            border-radius: 10px
        }

    .pi-post__meta {
        font-size: 11px;
        gap: 10px 14px
    }

    .pi-prose {
        font-size: 15px
    }
}


