.bp-layout {
background: var(--c-surface);
    padding: 3rem 0 5rem;
}

.bp-layout__inner {
display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: start;
}

@media (min-width: 1024px) {
  .bp-layout__inner {
grid-template-columns: 1fr 320px;
        gap: 3rem;
}
}

.bp {
background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 2.4rem 2rem 2rem;
    color: #1f2937;
}

.bp__head {
margin-bottom: 1.8rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.bp__head-meta {
display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem .65rem;
    margin-bottom: .75rem;
    font-size: .82rem;
    color: #475569;
    font-weight: 500;
}

.bp__head-sep {
width: 3px; height: 3px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
    display: inline-block;
}

.bp__meta-item {
display: inline-flex;
    align-items: center;
    gap: .35rem;
    line-height: 1;
}

.bp__meta-item svg {
flex-shrink: 0;
    display: block;
    color: #475569;
}

.bp__title {
margin: 0 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.03em;
    color: #0a0f1a;
}

.bp__cover {
margin: 0 0 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 16 / 9;
}

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

.bp-share__copied-text {
font-size: .72rem;
    font-weight: 700;
    color: var(--c-red, #9b111e);
    margin-left: .35rem;
    transition: opacity .2s ease;
}

.bp-share__copy.is-copied {
color: var(--c-red, #9b111e);
    border-color: var(--c-red, #9b111e);
}

.bp__content {
color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.82;
}

.bp__content > p {
margin: 0 0 1.3rem;
}

.bp__content > p strong {
color: var(--c-coal); font-weight: 600;
}

.bp__lead {
font-size: 1.16rem;
    line-height: 1.6;
    color: var(--c-coal);
    font-weight: 400;
    margin: 0 0 1.8rem !important;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -.005em;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--c-border);
}

.bp__content h2 {
font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-coal);
    margin: 2.4rem 0 .85rem;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.bp__foot {
margin-top: 2.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-share {
display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    align-self: flex-start;
}

.bp-share__label {
font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #334155;
}

.bp-share__icons {
display: flex; gap: .35rem; flex-wrap: wrap;
}

.bp-share__icons a,
.bp-share__copy {
width: 30px; height: 30px;
    display: grid; place-items: center;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 50%;
    transition: background .2s ease, color .2s ease;
    cursor: pointer;
}

.bp-share__icons a:hover,
.bp-share__copy:hover {
background: #e2e8f0; color: var(--c-coal);
}

.bp-share__copy.is-copied {
background: rgba(155,17,30,.08); color: var(--c-red);
}

.bp-sidebar {
position: sticky;
    top: calc(var(--header-stick-total) + 1.5rem);
}

.bp-related {
display: flex;
    flex-direction: column;
}

.bp-related__heading {
font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #0f172a;
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--c-red, #ef4444);
    line-height: 1.25;
}

.bp-related__list {
list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.bp-related__item {
margin: 0;
}

.bp-related__link {
display: grid;
    grid-template-columns: 76px 1fr auto;
    align-items: center;
    gap: .85rem .65rem;
    padding: .65rem .45rem .65rem .35rem;
    margin-inline: -.35rem;
    border-radius: 12px;
    color: #1e293b;
    text-decoration: none;
    transition:
        background .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.bp-related__link:hover {
background: rgba(255, 255, 255, .72);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .06), 0 8px 24px -12px rgba(15, 23, 42, .12);
    transform: translateX(2px);
}

.bp-related__link:focus-visible {
outline: 2px solid var(--c-red, #ef4444);
    outline-offset: 2px;
}

.bp-related__thumb {
flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
    display: block;
}

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

.bp-related__thumb--fallback {
display: grid;
    place-items: center;
    color: #94a3b8;
}

.bp-related__body {
min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    align-self: stretch;
}

.bp-related__name {
font-family: 'Space Grotesk', sans-serif;
    font-size: .91rem;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -.02em;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-related__meta {
display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem .5rem;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.bp-related__sep {
width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.bp-related__time {
display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.bp-related__time svg {
flex-shrink: 0;
    opacity: .85;
}

.bp-related__date {
white-space: nowrap;
}

.bp-related__chev {
display: grid;
    place-items: center;
    color: #cbd5e1;
    transition: color .18s ease, transform .18s ease;
}

.bp-related__link:hover .bp-related__chev {
color: var(--c-red, #ef4444);
    transform: translateX(2px);
}

.bp-related__empty {
font-family: 'Inter', sans-serif;
    font-size: .86rem;
    color: #64748b;
    margin: .25rem 0 1rem;
    line-height: 1.5;
}

.bp-related__cta {
display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin-top: .25rem;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--c-red, #ef4444);
    text-decoration: none;
    transition: gap .22s ease, color .18s ease;
}

.bp-related__cta:hover {
gap: .7rem;
    color: #b91c1c;
}

@media (min-width: 720px) {
  .bp {
padding: 3rem 2.8rem 2.4rem;
}
}

@media (max-width: 1023px) {
  .bp-sidebar {
position: static;
}
  .bp__head-meta {
font-size: .875rem;
        gap: .45rem .85rem;
}
  .bp__meta-item svg {
width: 15px;
        height: 15px;
}
  .bp-share {
flex-wrap: wrap;
        row-gap: .65rem;
        padding: .6rem .85rem;
}
  .bp-share__label {
font-size: .78rem;
}
  .bp-share__icons {
gap: .5rem;
}
  .bp-share__icons a,
    .bp-share__copy {
width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
}
  .bp-related__heading {
font-size: 1rem;
        margin-bottom: .85rem;
        padding-bottom: .65rem;
}
  .bp-related__link {
grid-template-columns: 68px 1fr auto;
        gap: .65rem .5rem;
        padding: .55rem .35rem;
}
  .bp-related__thumb,
    .bp-related__thumb--fallback {
width: 68px;
        height: 68px;
        border-radius: 9px;
}
  .bp-related__chev {
display: none;
}
  .bp-related__name {
font-size: .9rem;
        -webkit-line-clamp: 3;
}
  .bp-related__meta {
font-size: .7rem;
        letter-spacing: .03em;
}
}
