/* ==========================================================================
   BLOG POST SINGLE STYLES
   File: blog-post.css
   Page: rentals.grindercrusherscreen.com/blog/{slug}/
   Scope: .bpp-page
   Prefix: bpp-

   Design system: Barlow Condensed 800 display / Barlow body / Source Serif 4
   Zero border-radius throughout
   Article container: 1100px max-width
   Outer container: 1320px max-width, 32px side padding
   ========================================================================== */


/* --------------------------------------------------------------------------
   SECTION 0: VARIABLES
   -------------------------------------------------------------------------- */

.bpp-page {
    --bpp-red: #C41820;
    --bpp-red-deep: #9E1015;
    --bpp-black: #000000;
    --bpp-white: #FFFFFF;
    --bpp-gray-95: #F5F5F5;
    --bpp-gray-92: #ECECEC;
    --bpp-gray-85: #D8D8D8;
    --bpp-gray-60: #888888;
    --bpp-gray-30: #2A2A2A;
    --bpp-line: #E2E2E2;
    --bpp-serif: 'Source Serif 4', Georgia, serif;
}


/* --------------------------------------------------------------------------
   SECTION 1: READING PROGRESS BAR
   -------------------------------------------------------------------------- */

.bpp-progress {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 70;
}

.bpp-progress-bar {
    height: 100%;
    background: var(--bpp-red);
    width: 0%;
    transition: width .05s linear;
}


/* --------------------------------------------------------------------------
   SECTION 2: BREADCRUMB
   -------------------------------------------------------------------------- */

.bpp-breadcrumb {
    background: var(--bpp-gray-95);
    border-bottom: 1px solid var(--bpp-line);
}

.bpp-breadcrumb-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bpp-gray-60);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.bpp-breadcrumb-inner a {
    color: inherit;
    text-decoration: none;
}

.bpp-breadcrumb-inner a:hover {
    color: var(--bpp-red);
}

.bpp-breadcrumb-inner .sep {
    color: var(--bpp-gray-85);
}

.bpp-breadcrumb-inner .current {
    color: var(--bpp-black);
}


/* --------------------------------------------------------------------------
   SECTION 3: ARTICLE HERO
   -------------------------------------------------------------------------- */

.bpp-hero {
    background: var(--bpp-black);
    color: var(--bpp-white);
    position: relative;
    overflow: hidden;
    padding: 64px 32px 0;
}

.bpp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.bpp-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Meta top row */
.bpp-meta-top {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.bpp-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bpp-red);
    color: var(--bpp-white);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.bpp-meta-bit {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.bpp-meta-bit::before {
    content: '\00B7';
    margin-right: 18px;
    color: var(--bpp-red);
    font-size: 18px;
    line-height: 0;
    vertical-align: middle;
}

.bpp-meta-bit--first::before {
    display: none;
}

/* H1 */
.bpp-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.94;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 24px;
    max-width: 1000px;
}

.bpp-accent {
    color: var(--bpp-red);
}

/* Deck */
.bpp-deck {
    font-family: var(--bpp-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
    margin-bottom: 48px;
}

/* Byline */
.bpp-byline {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.bpp-avatar {
    width: 56px;
    height: 56px;
    background: var(--bpp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--bpp-white);
}

.bpp-byline-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bpp-byline-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--bpp-white);
}

.bpp-byline-role {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.bpp-byline-spacer {
    flex: 1;
    min-width: 16px;
}

/* Share buttons */
.bpp-share {
    display: flex;
    gap: 8px;
}

.bpp-share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: var(--bpp-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    outline: none;
    font-family: inherit;
    padding: 0;
}

.bpp-share-btn:hover {
    background: var(--bpp-red);
    border-color: var(--bpp-red);
}

.bpp-share-btn.bpp-copied {
    background: var(--bpp-red);
    border-color: var(--bpp-red);
    color: var(--bpp-white);
}

.bpp-share--dark .bpp-share-btn.bpp-copied {
    background: var(--bpp-black);
    border-color: var(--bpp-black);
    color: var(--bpp-white);
}

.bpp-share--dark .bpp-share-btn {
    border-color: var(--bpp-black);
    color: var(--bpp-black);
}

.bpp-share--dark .bpp-share-btn:hover {
    background: var(--bpp-black);
    color: var(--bpp-white);
}


/* --------------------------------------------------------------------------
   SECTION 4: COVER IMAGE
   -------------------------------------------------------------------------- */

.bpp-cover-wrap {
    position: relative;
    max-width: 1100px;
    margin: 56px auto 0;
}

.bpp-cover {
    background: #0a0a0a;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border: 1.5px solid var(--bpp-gray-30);
    position: relative;
    transform: translateY(60px);
}

.bpp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bpp-cover svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bpp-cover-cap {
    background: var(--bpp-black);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 16px;
    border-top: 1px solid var(--bpp-gray-30);
    transform: translateY(60px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}


/* --------------------------------------------------------------------------
   SECTION 5: ARTICLE BODY
   -------------------------------------------------------------------------- */

.bpp-body {
    padding: 120px 32px 96px;
    background: var(--bpp-white);
}

.bpp-body--no-cover {
    padding-top: 64px;
}

.bpp-body-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
}


/* --------------------------------------------------------------------------
   SECTION 6: TABLE OF CONTENTS
   -------------------------------------------------------------------------- */

.bpp-toc {
    position: sticky;
    top: 110px;
    align-self: start;
}

.bpp-toc-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bpp-red);
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--bpp-black);
    margin-bottom: 14px;
}

.bpp-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bpp-toc li {
    counter-increment: toc;
}

.bpp-toc a {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--bpp-gray-30);
    border-left: 2px solid transparent;
    padding-left: 10px;
    line-height: 1.35;
    transition: color .15s, border-color .15s;
    text-decoration: none;
}

.bpp-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: var(--bpp-gray-85);
    font-size: 14px;
}

.bpp-toc a:hover,
.bpp-toc a.active {
    color: var(--bpp-black);
    border-color: var(--bpp-red);
}

.bpp-toc a.active::before {
    color: var(--bpp-red);
}


/* --------------------------------------------------------------------------
   SECTION 7: ARTICLE TYPOGRAPHY
   -------------------------------------------------------------------------- */

.bpp-page article {
    font-family: var(--bpp-serif);
    font-size: 19px;
    line-height: 1.65;
    color: #1a1a1a;
    counter-reset: section;
}

.bpp-page article > * {
    margin: 0;
}

.bpp-page article > * + * {
    margin-top: 1.4em;
}

.bpp-page article > h2 + *,
.bpp-page article > h3 + * {
    margin-top: 0.6em;
}

.bpp-page article p {
    text-wrap: pretty;
}

.bpp-page article p > strong {
    font-weight: 600;
}

.bpp-page article a {
    color: var(--bpp-red);
    border-bottom: 1px solid currentColor;
    text-decoration: none;
}

.bpp-page article a:hover {
    color: var(--bpp-red-deep);
}

/* H2 (auto-numbered) */
.bpp-page article h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin-top: 2.2em;
    padding-top: 28px;
    border-top: 1.5px solid var(--bpp-black);
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.bpp-page article h2::before {
    content: counter(section, decimal-leading-zero);
    counter-increment: section;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: var(--bpp-red);
    font-size: 0.5em;
    letter-spacing: 0.08em;
    padding-top: 4px;
}

/* H3 */
.bpp-page article h3 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.005em;
    margin-top: 1.6em;
}

/* Drop cap (lede paragraph) */
.bpp-page article > p.lede {
    font-size: 22px;
    line-height: 1.5;
    color: #111;
}

.bpp-page article > p.lede::first-letter {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 78px;
    line-height: 0.85;
    float: left;
    padding: 6px 12px 0 0;
    color: var(--bpp-red);
    text-transform: uppercase;
}

/* Lists */
.bpp-page article ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bpp-page article ul li {
    position: relative;
    padding-left: 28px;
}

.bpp-page article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 14px;
    height: 2px;
    background: var(--bpp-red);
}


/* --------------------------------------------------------------------------
   SECTION 8: PULL QUOTE
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-pull {
    margin: 2.4em -32px !important;
    padding: 40px 32px;
    background: var(--bpp-gray-95);
    border-left: 6px solid var(--bpp-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--bpp-black);
    text-wrap: balance;
}

.bpp-pull cite {
    display: block;
    margin-top: 18px;
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bpp-gray-60);
}


/* --------------------------------------------------------------------------
   SECTION 9: CALLOUT
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-callout {
    background: var(--bpp-black);
    color: var(--bpp-white);
    padding: 32px;
    margin: 2.4em 0 !important;
}

.bpp-callout-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bpp-red);
    margin-bottom: 12px;
}

.bpp-callout h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
}

.bpp-callout p {
    font-family: var(--bpp-serif);
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

.bpp-callout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.bpp-callout-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bpp-callout-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    color: var(--bpp-white);
}

.bpp-callout-stat-num .red {
    color: var(--bpp-red);
}

.bpp-callout-stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}


/* --------------------------------------------------------------------------
   SECTION 10: FIGURES
   -------------------------------------------------------------------------- */

.bpp-page article figure {
    margin: 2.2em 0 !important;
}

.bpp-page article figure svg {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bpp-gray-95);
    border: 1.5px solid var(--bpp-black);
}

.bpp-page article figure img {
    width: 100%;
    height: auto;
    display: block;
}

.bpp-page article figcaption {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: var(--bpp-gray-60);
    padding: 12px 0 0;
    display: flex;
    gap: 10px;
}

.bpp-page article figcaption .label {
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bpp-red);
    white-space: nowrap;
    font-size: 13px;
    padding-top: 2px;
}


/* --------------------------------------------------------------------------
   SECTION 11: DATA TABLE
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-data-table {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow-x: auto;
    display: block;
}

@media (min-width: 721px) {
    .bpp-page article .bpp-data-table {
        display: table;
    }
}

.bpp-page article .bpp-data-table th {
    background: var(--bpp-black);
    color: var(--bpp-white);
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 14px;
}

.bpp-page article .bpp-data-table th.num,
.bpp-page article .bpp-data-table td.num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.bpp-page article .bpp-data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--bpp-line);
    color: var(--bpp-black);
}

.bpp-page article .bpp-data-table tr:last-child td {
    border-bottom: 1.5px solid var(--bpp-black);
    font-weight: 700;
    background: var(--bpp-gray-95);
}

.bpp-page article .bpp-data-table .delta-good {
    color: var(--bpp-red);
    font-weight: 700;
}


/* --------------------------------------------------------------------------
   SECTION 12: KEYTERM
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-keyterm {
    background: #FFF6CC;
    padding: 1px 6px;
    font-weight: 600;
}


/* --------------------------------------------------------------------------
   SECTION 13: AUTHOR BIO
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-author-bio {
    margin: 64px 0 0 !important;
    background: var(--bpp-gray-95);
    padding: 32px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: start;
    border-top: 4px solid var(--bpp-red);
}

.bpp-author-bio-avatar {
    width: 96px;
    height: 96px;
    background: var(--bpp-black);
    color: var(--bpp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
}

.bpp-author-bio-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bpp-red);
    margin-bottom: 8px;
}

.bpp-author-bio h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1;
}

.bpp-author-bio p {
    font-family: var(--bpp-serif);
    font-size: 16px;
    line-height: 1.55;
    color: var(--bpp-gray-30);
    margin: 0 0 14px;
}

.bpp-author-bio .links {
    display: flex;
    gap: 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bpp-author-bio .links a {
    color: var(--bpp-black);
    border-bottom: 1px solid var(--bpp-black);
    padding-bottom: 2px;
    text-decoration: none;
}

.bpp-author-bio .links a:hover {
    color: var(--bpp-red);
    border-color: var(--bpp-red);
}


/* --------------------------------------------------------------------------
   SECTION 14: INLINE CTA STRIP
   -------------------------------------------------------------------------- */

.bpp-page article .bpp-article-cta {
    margin: 56px 0 0 !important;
    background: var(--bpp-red);
    color: var(--bpp-white);
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.bpp-article-cta-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}

.bpp-article-cta h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 36px);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.bpp-article-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bpp-article-cta-btns .btn-light {
    background: var(--bpp-white);
    color: var(--bpp-black);
}

.bpp-article-cta-btns .btn-light:hover {
    background: var(--bpp-gray-92);
}


/* --------------------------------------------------------------------------
   SECTION 15: TAGS / SHARE FOOTER
   -------------------------------------------------------------------------- */

.bpp-foot {
    max-width: 1100px;
    margin: 64px auto 0;
    padding: 32px 32px 0;
    border-top: 1.5px solid var(--bpp-black);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.bpp-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bpp-tag {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 12px;
    border: 1.5px solid var(--bpp-black);
    color: var(--bpp-black);
    text-decoration: none;
    display: inline-block;
}

.bpp-tag:hover {
    background: var(--bpp-black);
    color: var(--bpp-white);
}


/* --------------------------------------------------------------------------
   SECTION 16: RELATED POSTS
   -------------------------------------------------------------------------- */

.bpp-related {
    padding: 80px 32px 96px;
    background: var(--bpp-gray-95);
}

.bpp-related-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.bpp-related-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.bpp-related-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    line-height: 1;
}

.bpp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

/* Post cards */
.bpp-card {
    display: flex;
    flex-direction: column;
    transition: transform .15s;
    background: var(--bpp-white);
    border: 1.5px solid var(--bpp-black);
    text-decoration: none;
    color: inherit;
}

.bpp-card:hover {
    transform: translateY(-3px);
}

.bpp-card-cover {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: var(--bpp-black);
}

.bpp-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bpp-card-cover svg {
    width: 100%;
    height: 100%;
}

.bpp-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--bpp-red);
    color: var(--bpp-white);
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bpp-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bpp-card-meta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bpp-gray-60);
    display: flex;
    gap: 12px;
    align-items: center;
}

.bpp-card-meta .dot {
    color: var(--bpp-red);
    font-size: 16px;
    line-height: 0;
}

.bpp-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    text-wrap: balance;
}

.bpp-card:hover h4 {
    color: var(--bpp-red);
}

.bpp-card p {
    font-family: var(--bpp-serif);
    font-size: 14px;
    line-height: 1.55;
    color: var(--bpp-gray-30);
    margin: 0;
}

.bpp-card .bpp-card-link {
    margin-top: 6px;
    padding-top: 12px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--bpp-line);
    color: inherit;
}

.bpp-card .bpp-card-link::after {
    content: '\2192';
    transition: transform .15s;
}

.bpp-card:hover .bpp-card-link::after {
    transform: translateX(4px);
    color: var(--bpp-red);
}


/* --------------------------------------------------------------------------
   SECTION 17: NEWSLETTER
   -------------------------------------------------------------------------- */

.bpp-newsletter {
    background: var(--bpp-black);
    color: var(--bpp-white);
    padding: 64px 32px;
}

.bpp-newsletter-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.bpp-newsletter h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 14px;
}

.bpp-newsletter h2 .accent {
    color: var(--bpp-red);
}

.bpp-newsletter p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 540px;
    opacity: 0.85;
    margin: 0;
}

.bpp-newsletter-form {
    display: flex;
    gap: 0;
    background: var(--bpp-white);
    padding: 6px;
}

.bpp-newsletter-form input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--bpp-black);
}

.bpp-newsletter-form button {
    background: var(--bpp-red);
    color: var(--bpp-white);
    border: none;
    padding: 0 28px;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}

.bpp-newsletter-form button:hover {
    background: var(--bpp-red-deep);
}

.bpp-newsletter-foot {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 12px;
    letter-spacing: 0.04em;
}


/* --------------------------------------------------------------------------
   SECTION 18: STICKY MOBILE CTA
   -------------------------------------------------------------------------- */

.bpp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: var(--bpp-black);
    padding: 12px 16px;
    border-top: 4px solid var(--bpp-red);
    gap: 10px;
}

.bpp-sticky-cta .btn {
    flex: 1;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */


/* --------------------------------------------------------------------------
   At 980px: body grid collapses, TOC unsticks, related grid to 2-col,
   newsletter to 1-col
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {

    .bpp-body-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bpp-article {
        max-width: 720px;
    }

    .bpp-toc {
        position: static;
    }

    .bpp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bpp-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .bpp-page article .bpp-pull {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* --------------------------------------------------------------------------
   At 720px: stacked layouts, sticky CTA appears, author bio to 1-col,
   callout grid to 1-col, article CTA to 1-col
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {

    .bpp-sticky-cta {
        display: flex;
    }

    .bpp-page {
        padding-bottom: 84px;
    }

    .bpp-page article .bpp-author-bio {
        grid-template-columns: 1fr;
    }

    .bpp-callout-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bpp-page article .bpp-article-cta {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------------------------------------------------
   At 640px: related grid to 1-col
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {

    .bpp-related-grid {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------------------------------------------------
   At 560px: smallest adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 560px) {

    .bpp-hero {
        padding: 48px 20px 0;
    }

    .bpp-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bpp-foot {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bpp-related {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bpp-newsletter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bpp-breadcrumb-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}
