/* ============================================================
   BLOG INDEX + BLOG DETAILS — 2025 magazine redesign
   Scoped to .blogPage2025 and .blogDetailsPage2025
   ============================================================ */
.blogPage2025,
.blogDetailsPage2025 {
    --bp-cream:      var(--rd-cream, #f5f1e8);
    --bp-cream-2:    var(--rd-cream-2, #ece5d2);
    --bp-cream-3:    var(--rd-cream-3, #faf6ec);
    --bp-green:      var(--rd-green, #1f3d2e);
    --bp-green-2:    var(--rd-green-2, #2c5141);
    --bp-green-3:    var(--rd-green-3, #80956d);
    --bp-orange:     var(--rd-orange, #f08a3a);
    --bp-orange-2:   var(--rd-orange-2, #e6712b);
    --bp-gold:       var(--rd-gold, #d4a849);
    --bp-ink:        #1a2521;
    --bp-muted:      #6b7568;
    --bp-line:       #e3ddc9;
    --bp-line-2:     #d8d0b3;
    --bp-shadow-sm:  0 4px 14px rgba(20,40,30,.06);
    --bp-shadow-md:  0 14px 38px rgba(20,40,30,.10);
    --bp-shadow-lg:  0 28px 70px rgba(20,40,30,.14);
    --bp-radius-sm:  14px;
    --bp-radius:     20px;
    --bp-radius-lg:  28px;
    --bp-serif:      'Times New Roman', Georgia, serif;
}
/* .blogPage2025.mainContent + .bp-wrap moved to redesign-components.css (SHARED PRIMITIVES). */
.blogPage2025 .bp-dot { color: var(--bp-line-2); margin: 0 2px; }

/* ============================================================
   Section heads (eyebrow + serif title)
   ============================================================ */
.blogPage2025 .bp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px;
}
.blogPage2025 .bp-section-eyebrow,
.blogPage2025 .bp-side-eyebrow,
.blogPage2025 .bp-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bp-green);
    margin-bottom: 8px;
}
.blogPage2025 .bp-section-eyebrow::before,
.blogPage2025 .bp-side-eyebrow::before,
.blogPage2025 .bp-cta-eyebrow::before {
    content: '✦';
    color: var(--bp-orange);
}
.blogPage2025 .bp-section-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 38px;
    line-height: 1.05;
    color: var(--bp-green);
    margin: 0;
    letter-spacing: -0.01em;
}
.blogPage2025 .bp-section-title em {
    font-style: italic;
    color: var(--bp-orange);
    font-weight: 500;
}

/* ============================================================
   HERO SECTION — page intro + magazine featured card
   ============================================================ */
.blogPage2025 .bp-hero-section {
    padding: 32px 0 24px;
    background:
        radial-gradient(circle at 90% -10%, rgba(212,168,73,0.12), transparent 50%),
        radial-gradient(circle at -10% 110%, rgba(31,61,46,0.08), transparent 55%),
        linear-gradient(180deg, var(--bp-cream-3) 0%, transparent 60%);
}
.blogPage2025 .bp-page-head {
    text-align: center;
    max-width: 760px;
    margin: 14px auto 36px;
}
.blogPage2025 .bp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bp-cream-2);
    border: 1px solid var(--bp-line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--bp-green);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.blogPage2025 .bp-eyebrow::before {
    content: '✦';
    color: var(--bp-orange);
}
.blogPage2025 .bp-page-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 64px;
    line-height: 1.04;
    color: var(--bp-green);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.blogPage2025 .bp-page-title em {
    font-style: italic;
    color: var(--bp-orange);
    font-weight: 500;
}
.blogPage2025 .bp-page-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--bp-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ---- Magazine hero (latest article) ---- */
.blogPage2025 .bp-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-md);
    text-decoration: none !important;
    color: inherit;
    margin-top: 8px;
}
@media (max-width: 991px) {
    .blogPage2025 .bp-hero { grid-template-columns: 1fr; }
}
.blogPage2025 .bp-hero-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bp-cream-3);
}
.blogPage2025 .bp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogPage2025 .bp-hero-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--bp-orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(230,113,43,0.35);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.blogPage2025 .bp-hero-body {
    padding: 44px 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.blogPage2025 .bp-hero-tag {
    display: inline-flex;
    width: max-content;
    background: var(--bp-cream-2);
    color: var(--bp-green);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.blogPage2025 .bp-hero-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.1;
    color: var(--bp-green);
    margin: 0;
    letter-spacing: -0.01em;
}
.blogPage2025 .bp-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--bp-muted);
    font-weight: 500;
}
.blogPage2025 .bp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bp-green);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: max-content;
    margin-top: 6px;
    box-shadow: 0 10px 22px rgba(31,61,46,0.18);
}
.blogPage2025 .bp-hero-cta:hover { background: var(--bp-green-2); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.blogPage2025 .bp-stats-section { padding: 16px 0 28px; }
.blogPage2025 .bp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: var(--bp-green);
    color: #fff;
    border-radius: var(--bp-radius);
    padding: 22px 28px;
    box-shadow: var(--bp-shadow-md);
    position: relative;
    overflow: hidden;
}
.blogPage2025 .bp-stats::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,73,0.30), transparent 60%);
    pointer-events: none;
}
@media (max-width: 767px) { .blogPage2025 .bp-stats { grid-template-columns: repeat(2, 1fr); } }
.blogPage2025 .bp-stat { position: relative; padding: 4px 0; }
.blogPage2025 .bp-stat + .bp-stat { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 22px; }
@media (max-width: 767px) { .blogPage2025 .bp-stat + .bp-stat { border-left: 0; padding-left: 0; } }
.blogPage2025 .bp-stat-value {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: var(--bp-gold);
    margin-bottom: 4px;
}
.blogPage2025 .bp-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   FEATURED COLLAGE (1 big + 2 small)
   ============================================================ */
.blogPage2025 .bp-featured-section { padding: 28px 0 8px; }
.blogPage2025 .bp-feature {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto;
    gap: 18px;
}
@media (max-width: 991px) { .blogPage2025 .bp-feature { grid-template-columns: 1fr; } }
.blogPage2025 .bp-card {
    position: relative;
    display: block;
    border-radius: var(--bp-radius);
    overflow: hidden;
    color: #fff;
    text-decoration: none !important;
    box-shadow: var(--bp-shadow-md);
}
.blogPage2025 .bp-card figure { margin: 0; height: 100%; }
.blogPage2025 .bp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogPage2025 .bp-card--main { min-height: 460px; }
.blogPage2025 .bp-card--main figure,
.blogPage2025 .bp-card--main img { min-height: 460px; }
.blogPage2025 .bp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,30,22,0) 30%, rgba(20,30,22,0.78) 100%);
    pointer-events: none;
}
.blogPage2025 .bp-card-cap {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
}
.blogPage2025 .bp-card-tag {
    display: inline-flex;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.18);
}
.blogPage2025 .bp-card-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    font-size: 20px;
}
.blogPage2025 .bp-card--main .bp-card-title { font-size: 32px; }
.blogPage2025 .bp-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.04em;
}
.blogPage2025 .bp-card-arrow { font-size: 18px; color: var(--bp-gold); }
.blogPage2025 .bp-side {
    display: grid;
    gap: 18px;
    grid-template-rows: 1fr 1fr;
}
.blogPage2025 .bp-side .bp-card { min-height: 220px; }
.blogPage2025 .bp-side .bp-card figure,
.blogPage2025 .bp-side .bp-card img { min-height: 220px; }
.blogPage2025 .bp-card:hover .bp-card-title { color: var(--bp-gold); }

/* ============================================================
   ARCHIVE — tabs + grid + sidebar
   ============================================================ */
.blogPage2025 .bp-archive-section { padding: 44px 0 24px; }
/* ---- Archive header (with search) ---- */
.blogPage2025 .bp-archive-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(31,61,46,0.16);
}
.blogPage2025 .bp-archive-head .bp-section-eyebrow { display: inline-flex; align-items: center; gap: 6px; }
.blogPage2025 .bp-section-spark { color: var(--bp-orange); font-size: 12px; }
.blogPage2025 .bp-archive-head .bp-section-sub {
    margin: 8px 0 0;
    font-family: 'Georgia','Times New Roman',serif;
    font-style: italic;
    font-size: 14px;
    color: var(--bp-muted);
    max-width: 480px;
    line-height: 1.55;
}
.blogPage2025 .bp-archive-search {
    position: relative;
    flex: 0 0 320px;
    max-width: 100%;
}
.blogPage2025 .bp-archive-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bp-muted);
    font-size: 13px;
    pointer-events: none;
}
.blogPage2025 .bp-archive-search-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--bp-line);
    border-radius: 999px;
    padding: 12px 18px 12px 42px;
    font-size: 13.5px;
    color: var(--bp-green);
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.blogPage2025 .bp-archive-search-input::placeholder { color: var(--bp-muted); }
.blogPage2025 .bp-archive-search-input:focus {
    outline: none;
    border-color: var(--bp-green);
    background: var(--bp-cream-3,#faf6ec);
    box-shadow: 0 0 0 4px rgba(31,61,46,0.08);
}
@media (max-width: 767px) {
    .blogPage2025 .bp-archive-search { flex: 1 1 100%; }
}

/* ============================================================
   TAB STRIP v4 — bare buttons (no tray wrapper)
   Buttons sit directly inside .blogpageTab as siblings of .tabcontent.
   We keep .blogpageTab as a normal block so the tab content grids
   below still render, and just give the buttons their own inline-flex
   layout with a flush bottom rule for definition.
   ============================================================ */
.blogPage2025 .blogpageTab {
    position: relative;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--bp-line);
}
.blogPage2025 .blogpageTab > .bp-tab { margin: 0 8px 8px 0; }

.blogPage2025 .bp-tab,
button.blogPage2025 .bp-tab {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 10px !important;
    padding: 10px 18px !important;
    flex: 0 0 auto;
    border: 1.5px solid var(--bp-line) !important;
    background: #fff !important;
    color: var(--bp-green) !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}
.blogPage2025 .bp-tab::after {
    content: "";
    position: absolute;
    left: 18px; right: 18px;
    bottom: -1px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--bp-orange,#f08a3a) 0%, var(--bp-gold,#d4a849) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
    opacity: 0;
}
.blogPage2025 .bp-tab:hover {
    border-color: var(--bp-green,#1f3d2e) !important;
    background: var(--bp-cream-3,#faf6ec) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31,61,46,0.10);
}
.blogPage2025 .bp-tab:hover::after {
    opacity: 0.7;
    transform: scaleX(1);
}

.blogPage2025 .bp-tab.active {
    background: linear-gradient(135deg, var(--bp-green,#1f3d2e) 0%, var(--bp-green-2,#2c5141) 100%) !important;
    color: #fff !important;
    border-color: var(--bp-green,#1f3d2e) !important;
    box-shadow: 0 14px 28px rgba(31,61,46,0.26) !important;
    transform: translateY(-1px);
}
.blogPage2025 .bp-tab.active::after {
    opacity: 1;
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--bp-gold,#d4a849) 0%, var(--bp-orange,#f08a3a) 100%);
    height: 3px;
    border-radius: 3px;
}

/* Pulsing dot on each chip */
.blogPage2025 .bp-tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bp-orange,#f08a3a);
    box-shadow: 0 0 0 3px rgba(240,138,58,0.16);
    transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
    flex-shrink: 0;
}
.blogPage2025 .bp-tab:hover .bp-tab-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(240,138,58,0.22);
}
.blogPage2025 .bp-tab.active .bp-tab-dot {
    background: var(--bp-gold,#d4a849);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.30);
    animation: bp-tab-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes bp-tab-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.30); }
    50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0.18); }
}
@media (prefers-reduced-motion: reduce) {
    .blogPage2025 .bp-tab.active .bp-tab-dot { animation: none; }
}

.blogPage2025 .bp-tab-label {
    line-height: 1;
    font-family: var(--bp-serif,'Times New Roman',Georgia,serif);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.005em;
}

.blogPage2025 .bp-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(31,61,46,0.08);
    color: var(--bp-green,#1f3d2e);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: var(--bp-sans, inherit);
    transition: background .15s ease, color .15s ease;
}
.blogPage2025 .bp-tab:hover .bp-tab-count {
    background: rgba(31,61,46,0.14);
}
.blogPage2025 .bp-tab.active .bp-tab-count {
    background: rgba(255,255,255,0.22);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

@media (max-width: 767px) {
    .blogPage2025 .bp-tabs { padding: 12px 12px 10px; }
    .blogPage2025 .bp-tab { padding: 9px 14px !important; }
    .blogPage2025 .bp-tab-label { font-size: 13px; }
}

/* ---- Article card upgrades (zoom on hover) ---- */
.blogPage2025 .bp-article-media img { transition: transform .5s ease; }
.blogPage2025 .bp-article:hover .bp-article-media img { transform: scale(1.06); }
.blogPage2025 .bp-article-read span { transition: transform .15s ease; }
.blogPage2025 .bp-article:hover .bp-article-read span { transform: translateX(4px); }

/* ---- Empty state (search yields no results) ---- */
.blogPage2025 .bp-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 24px;
    background: var(--bp-cream-3,#faf6ec);
    border: 1px dashed var(--bp-line);
    border-radius: 18px;
    color: var(--bp-muted);
}
.blogPage2025 .bp-empty i {
    font-size: 28px;
    color: var(--bp-orange);
    margin-bottom: 12px;
}
.blogPage2025 .bp-empty h4 {
    font-family: var(--bp-serif);
    color: var(--bp-green);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
}
.blogPage2025 .bp-empty h4 span { color: var(--bp-orange); font-style: italic; }
.blogPage2025 .bp-empty p { margin: 0; font-size: 13.5px; }
.blogPage2025 .bp-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 1199px) { .blogPage2025 .bp-main { grid-template-columns: 1fr; } }

/* ---- Tab strip ---- */
.blogPage2025 .bp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.blogPage2025 .bp-tab {
    background: #fff;
    border: 1px solid var(--bp-line);
    color: var(--bp-green);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    line-height: 1;
}
.blogPage2025 .bp-tab:hover {
    background: var(--bp-cream-2);
    border-color: var(--bp-green-3);
}
.blogPage2025 .bp-tab.active {
    background: var(--bp-green);
    color: #fff;
    border-color: var(--bp-green);
    box-shadow: 0 6px 14px rgba(31,61,46,0.18);
}

/* ---- Article grid ---- */
.blogPage2025 .bp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
@media (max-width: 991px) { .blogPage2025 .bp-grid { grid-template-columns: 1fr; } }
.blogPage2025 .bp-article {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--bp-shadow-sm);
}
.blogPage2025 .bp-article:hover {
    border-color: var(--bp-green-3);
    box-shadow: var(--bp-shadow-md);
}
.blogPage2025 .bp-article-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bp-cream-3);
}
.blogPage2025 .bp-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogPage2025 .bp-article-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--bp-green);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.blogPage2025 .bp-article-body {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blogPage2025 .bp-article-date {
    font-size: 12px;
    color: var(--bp-muted);
    letter-spacing: 0.04em;
    font-weight: 600;
}
.blogPage2025 .bp-article-body h5 {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    color: var(--bp-green);
    margin: 0;
    letter-spacing: -0.005em;
    flex: 1;
}
.blogPage2025 .bp-article:hover .bp-article-body h5 { color: var(--bp-orange); }
.blogPage2025 .bp-article-read {
    margin-top: 8px;
    font-size: 12px;
    color: var(--bp-green);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blogPage2025 .bp-article-read span { color: var(--bp-orange); font-size: 15px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.blogPage2025 .bp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}
@media (max-width: 1199px) {
    .blogPage2025 .bp-sidebar { position: static; }
}
.blogPage2025 .bp-side-card {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 22px 22px 20px;
    box-shadow: var(--bp-shadow-sm);
}
.blogPage2025 .bp-side-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    color: var(--bp-green);
    margin: 0 0 8px;
}
.blogPage2025 .bp-side-title em {
    font-style: italic;
    color: var(--bp-orange);
    font-weight: 500;
}
.blogPage2025 .bp-side-sub {
    font-size: 13px;
    color: var(--bp-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}

/* Newsletter sidebar — accent treatment */
.blogPage2025 .bp-newsletter {
    background: linear-gradient(160deg, var(--bp-cream-2) 0%, var(--bp-cream-3) 100%);
    border-color: var(--bp-line-2);
    position: relative;
    overflow: hidden;
}
.blogPage2025 .bp-newsletter::before {
    content: '✦';
    position: absolute;
    right: 14px;
    top: 10px;
    color: var(--bp-gold);
    font-size: 22px;
    opacity: 0.6;
}
.blogPage2025 .bp-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}
.blogPage2025 .bp-newsletter-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--bp-line);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13px;
    color: var(--bp-ink);
    outline: 0;
}
.blogPage2025 .bp-newsletter-input:focus { border-color: var(--bp-green); }
.blogPage2025 .bp-newsletter-btn {
    background: var(--bp-green);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(31,61,46,0.18);
}
.blogPage2025 .bp-newsletter-btn:hover { background: var(--bp-green-2); }

/* Tag cloud */
.blogPage2025 .bp-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.blogPage2025 .bp-tag-pill {
    background: var(--bp-cream-3);
    border: 1px solid var(--bp-line);
    color: var(--bp-green);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.blogPage2025 .bp-tag-pill:hover {
    background: var(--bp-green);
    color: #fff;
    border-color: var(--bp-green);
}

/* Social rows */
.blogPage2025 .bp-social-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}
.blogPage2025 .bp-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--bp-line);
    background: var(--bp-cream-3);
    text-decoration: none !important;
    color: var(--bp-ink);
}
.blogPage2025 .bp-social-row:hover { border-color: var(--bp-green-3); }
.blogPage2025 .bp-social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.blogPage2025 .bp-social-icon--fb { background: #1877f2; }
.blogPage2025 .bp-social-icon--tw { background: #1da1f2; }
.blogPage2025 .bp-social-icon--yt { background: #ff0000; }
.blogPage2025 .bp-social-icon--ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.blogPage2025 .bp-social-text { flex: 1; line-height: 1.2; }
.blogPage2025 .bp-social-text strong {
    display: block;
    font-size: 13px;
    color: var(--bp-green);
    font-weight: 700;
}
.blogPage2025 .bp-social-text span {
    font-size: 11px;
    color: var(--bp-muted);
}
.blogPage2025 .bp-social-cta {
    background: var(--bp-green);
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Sponsor banner */
.blogPage2025 .bp-side-banner {
    display: block;
    border-radius: var(--bp-radius);
    overflow: hidden;
    box-shadow: var(--bp-shadow-sm);
}
.blogPage2025 .bp-side-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   FULL-WIDTH CTA STRIP
   ============================================================ */
.blogPage2025 .bp-cta-strip { padding: 36px 0 64px; }
.blogPage2025 .bp-cta-inner {
    background:
        radial-gradient(circle at 88% -10%, rgba(212,168,73,0.30), transparent 55%),
        radial-gradient(circle at -10% 110%, rgba(255,255,255,0.06), transparent 50%),
        linear-gradient(135deg, var(--bp-green) 0%, var(--bp-green-2) 100%);
    color: #fff;
    border-radius: var(--bp-radius-lg);
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--bp-shadow-lg);
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .blogPage2025 .bp-cta-inner { grid-template-columns: 1fr; padding: 36px 28px; }
}
.blogPage2025 .bp-cta-inner::after {
    content: '✦';
    position: absolute;
    bottom: -20px;
    right: 28px;
    font-size: 160px;
    color: rgba(212,168,73,0.10);
    pointer-events: none;
    line-height: 1;
}
.blogPage2025 .bp-cta-copy { z-index: 1; position: relative; }
.blogPage2025 .bp-cta-eyebrow { color: var(--bp-gold); }
.blogPage2025 .bp-cta-eyebrow::before { color: var(--bp-gold); }
.blogPage2025 .bp-cta-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.blogPage2025 .bp-cta-title em {
    font-style: italic;
    color: var(--bp-gold);
    font-weight: 500;
}
.blogPage2025 .bp-cta-sub {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0;
}
.blogPage2025 .bp-cta-form {
    display: flex;
    align-items: stretch;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    border-radius: 999px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
    z-index: 1;
}
.blogPage2025 .bp-cta-input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    outline: 0;
    min-width: 0;
}
.blogPage2025 .bp-cta-input::placeholder { color: rgba(255,255,255,0.55); }
.blogPage2025 .bp-cta-btn {
    background: var(--bp-gold);
    color: #1c1208;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(212,168,73,0.30);
}
.blogPage2025 .bp-cta-btn:hover { background: #c89738; }

/* ============================================================
   Responsive trims
   ============================================================ */
@media (max-width: 991px) {
    .blogPage2025 .bp-page-title { font-size: 44px; }
    .blogPage2025 .bp-hero-body { padding: 28px 26px; }
    .blogPage2025 .bp-hero-title { font-size: 26px; }
    .blogPage2025 .bp-card--main .bp-card-title { font-size: 24px; }
    .blogPage2025 .bp-cta-title { font-size: 28px; }
    .blogPage2025 .bp-section-title { font-size: 30px; }
}
@media (max-width: 575px) {
    .blogPage2025 .bp-wrap { padding: 0 16px; }
    .blogPage2025 .bp-page-title { font-size: 36px; }
}

/* ============================================================

/* ============================================================
   BLOG DETAILS — 2025 redesign
   Scoped to .blogPage2025.blog-details-page
   ============================================================ */
.blogPage2025.blog-details-page { background: transparent; }
.blogPage2025.blog-details-page .bp-wrap {
    max-width: 1200px;
}

/* ---- HERO ---- */
.blogPage2025 .bd-hero-section {
    padding: 26px 0 28px;
    background:
        radial-gradient(circle at 90% -10%, rgba(212,168,73,0.10), transparent 50%),
        radial-gradient(circle at -10% 110%, rgba(31,61,46,0.06), transparent 55%),
        linear-gradient(180deg, var(--bp-cream-3) 0%, transparent 65%);
}
.blogPage2025 .bd-breadcrumb {
    display: inline-flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bp-muted);
    margin: 6px 0 18px;
}
.blogPage2025 .bd-breadcrumb a {
    color: var(--bp-green);
    text-decoration: none !important;
}
.blogPage2025 .bd-breadcrumb a:hover { color: var(--bp-orange); }

.blogPage2025 .bd-hero-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 32px;
}
.blogPage2025 .bd-hero-title {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 52px;
    line-height: 1.08;
    color: var(--bp-green);
    margin: 14px 0 16px;
    letter-spacing: -0.015em;
}
.blogPage2025 .bd-hero-deck {
    font-size: 18px;
    line-height: 1.55;
    color: var(--bp-muted);
    margin: 0 auto 22px;
    max-width: 680px;
    font-style: italic;
}
.blogPage2025 .bd-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.blogPage2025 .bd-tag {
    background: var(--bp-cream-2);
    color: var(--bp-green);
    border: 1px solid var(--bp-line);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.blogPage2025 .bd-meta-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--bp-muted);
    font-weight: 500;
}
.blogPage2025 .bd-meta-author { color: var(--bp-green); font-weight: 700; }

.blogPage2025 .bd-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    justify-content: center;
}
.blogPage2025 .bd-share-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bp-muted);
    margin-right: 4px;
}
.blogPage2025 .bd-share-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bp-line);
    color: var(--bp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 13px;
    padding: 0;
}
.blogPage2025 .bd-share-btn:hover {
    background: var(--bp-green);
    color: #fff;
    border-color: var(--bp-green);
}

/* ---- COVER ---- */
.blogPage2025 .bd-cover {
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-md);
    background: #fff;
    border: 1px solid var(--bp-line);
}
.blogPage2025 .bd-cover .referSlider,
.blogPage2025 .bd-cover .singleSlider,
.blogPage2025 .bd-cover .sliderCommonStyle { padding: 0 !important; margin: 0 !important; }
.blogPage2025 .bd-cover .slideItem,
.blogPage2025 .bd-cover .referEarnSlider {
    padding: 0 !important;
    margin: 0 !important;
}
.blogPage2025 .bd-cover img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

/* ---- BODY ---- */
.blogPage2025 .bd-body-section { padding: 36px 0 20px; }
.blogPage2025 .bd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 991px) { .blogPage2025 .bd-layout { grid-template-columns: 1fr; gap: 32px; } }

.blogPage2025 .bd-body {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius-lg);
    padding: 48px 56px;
    box-shadow: var(--bp-shadow-sm);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17.5px;
    line-height: 1.78;
    color: #2c2c2c;
}
@media (max-width: 575px) { .blogPage2025 .bd-body { padding: 28px 22px; font-size: 16px; } }

.blogPage2025 .bd-body p {
    margin: 0 0 20px;
}
.blogPage2025 .bd-body p.bd-has-dropcap::first-letter,
.blogPage2025 .bd-body > p:first-of-type::first-letter {
    font-family: var(--bp-serif);
    font-size: 64px;
    font-weight: 600;
    color: var(--bp-orange);
    float: left;
    line-height: 0.9;
    padding: 6px 12px 0 0;
    margin-top: 4px;
}
.blogPage2025 .bd-body h1,
.blogPage2025 .bd-body h2,
.blogPage2025 .bd-body h3,
.blogPage2025 .bd-body h4 {
    font-family: var(--bp-serif);
    color: var(--bp-green);
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.blogPage2025 .bd-body h2 { font-size: 30px; }
.blogPage2025 .bd-body h3 { font-size: 24px; }
.blogPage2025 .bd-body h4 { font-size: 20px; }
.blogPage2025 .bd-body em {
    color: var(--bp-orange);
    font-style: italic;
}
.blogPage2025 .bd-body strong { color: var(--bp-ink); }
.blogPage2025 .bd-body a {
    color: var(--bp-green);
    text-decoration: underline;
    text-decoration-color: var(--bp-orange);
    text-underline-offset: 3px;
}
.blogPage2025 .bd-body a:hover { color: var(--bp-orange); }
.blogPage2025 .bd-body ul,
.blogPage2025 .bd-body ol {
    margin: 0 0 22px;
    padding-left: 22px;
}
.blogPage2025 .bd-body li { margin-bottom: 8px; }
.blogPage2025 .bd-body blockquote {
    margin: 32px 0;
    padding: 22px 28px;
    border-left: 4px solid var(--bp-orange);
    background: var(--bp-cream-3);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 19px;
    color: var(--bp-green);
}
.blogPage2025 .bd-body img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--bp-radius);
    margin: 28px 0;
    display: block;
}
.blogPage2025 .bd-body hr {
    border: 0;
    border-top: 1px solid var(--bp-line);
    margin: 36px 0;
}

/* Footer of article: author byline + back link */
.blogPage2025 .bd-footer-meta {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--bp-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.blogPage2025 .bd-footer-author { display: flex; align-items: center; gap: 14px; }
.blogPage2025 .bd-footer-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bp-green);
    color: var(--bp-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 22px;
}
.blogPage2025 .bd-footer-author strong {
    display: block;
    font-family: var(--bp-serif);
    font-size: 16px;
    color: var(--bp-green);
}
.blogPage2025 .bd-footer-author span {
    font-size: 12px;
    color: var(--bp-muted);
    font-family: 'Inter', system-ui, sans-serif;
}
.blogPage2025 .bd-back-link {
    color: var(--bp-green);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
}
.blogPage2025 .bd-back-link:hover { color: var(--bp-orange); }

/* ---- ASIDE ---- */
.blogPage2025 .bd-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 96px;
}
@media (max-width: 991px) {
    .blogPage2025 .bd-aside { position: static; }
}
.blogPage2025 .bd-aside-card {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    padding: 20px 20px 18px;
    box-shadow: var(--bp-shadow-sm);
}
.blogPage2025 .bd-toc-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}
.blogPage2025 .bd-toc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bp-cream-3);
    border: 1px solid var(--bp-line);
    color: var(--bp-green);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}
.blogPage2025 .bd-toc-btn:hover {
    background: var(--bp-green);
    color: #fff;
    border-color: var(--bp-green);
}
.blogPage2025 .bd-toc-btn i { font-size: 11px; opacity: 0.8; }

/* Related list */
.blogPage2025 .bd-related-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blogPage2025 .bd-related-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px;
    margin: -8px;
    border-radius: 14px;
    text-decoration: none !important;
    color: inherit;
}
.blogPage2025 .bd-related-row:hover { background: var(--bp-cream-3); }
.blogPage2025 .bd-r-img {
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bp-cream-3);
}
.blogPage2025 .bd-r-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blogPage2025 .bd-r-text { flex: 1; min-width: 0; }
.blogPage2025 .bd-r-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bp-orange);
    margin-bottom: 3px;
}
.blogPage2025 .bd-r-text h5 {
    font-family: var(--bp-serif);
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.25;
    color: var(--bp-green);
    margin: 0 0 4px;
}
.blogPage2025 .bd-related-row:hover h5 { color: var(--bp-orange); }
.blogPage2025 .bd-r-text p {
    font-size: 11px;
    color: var(--bp-muted);
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Newsletter aside (reuses .bp-newsletter-* tokens already defined above) */
.blogPage2025 .bd-newsletter {
    background: linear-gradient(160deg, var(--bp-cream-2) 0%, var(--bp-cream-3) 100%);
    border-color: var(--bp-line-2);
    position: relative;
    overflow: hidden;
}
.blogPage2025 .bd-newsletter::before {
    content: '✦';
    position: absolute;
    right: 14px;
    top: 10px;
    color: var(--bp-gold);
    font-size: 22px;
    opacity: 0.6;
}

/* ---- MORE FROM JOURNAL ---- */
.blogPage2025 .bd-more-section { padding: 32px 0 12px; }
.blogPage2025 .bd-more-section .bp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 991px) { .blogPage2025 .bd-more-section .bp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) { .blogPage2025 .bd-more-section .bp-grid { grid-template-columns: 1fr; } }
.blogPage2025 .bd-more-link {
    color: var(--bp-green);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    letter-spacing: 0.02em;
}
.blogPage2025 .bd-more-link:hover { color: var(--bp-orange); }

/* Responsive trims */
@media (max-width: 991px) {
    .blogPage2025 .bd-hero-title { font-size: 38px; }
}
@media (max-width: 575px) {
    .blogPage2025 .bd-hero-title { font-size: 30px; }
    .blogPage2025 .bd-body p.bd-has-dropcap::first-letter,
    .blogPage2025 .bd-body > p:first-of-type::first-letter { font-size: 48px; }
}
