/* ─── Shared page container ─── */
.blog-show-body__inner {
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   HERO — full-width image with text overlay
   ============================================================ */
.blog-show-hero {
    position: relative;
    width: 100%;
    /* Breathing room below the breadcrumb (which sits directly above the hero) */
    margin-top: 2rem;
}

.blog-show-hero__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 8;
    overflow: hidden;
}

.blog-show-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* All-sides blend — top/bottom/left/right fade into page background #070019 */
.blog-show-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        /* left edge */
        linear-gradient(to right,  #070019 0%, rgba(7, 0, 25, 0) 16%),
        /* right edge */
        linear-gradient(to left,   #070019 0%, rgba(7, 0, 25, 0) 16%),
        /* top edge */
        linear-gradient(to bottom, #070019 0%, rgba(7, 0, 25, 0) 20%),
        /* bottom — heavier for text legibility */
        linear-gradient(to top,    #070019 0%, rgba(7, 0, 25, 0.6) 30%, rgba(7, 0, 25, 0) 60%);
    pointer-events: none;
}

/* Text content pinned to bottom-left, aligned with body container */
.blog-show-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    /* cap the text block width so it doesn't span the full page */
    box-sizing: border-box;
}

/* Inner text is left-anchored and limited in width */
.blog-show-hero__content > * {
    max-width: 50rem;
}

.blog-show-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.blog-show-hero__category {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(76, 215, 196, 1);
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(76, 215, 196, 0.5);
    border-radius: 999px;
    background: rgba(7, 0, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.blog-show-hero__date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.blog-show-hero__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.blog-show-hero__subtitle {
    font-size: 0.9375rem;
    color: rgba(207, 201, 230, 0.8);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.blog-show-hero__author {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.blog-show-hero__avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.blog-show-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.blog-show-hero__author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.blog-show-hero__author-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   BODY: ARTICLE + SIDEBAR
   ============================================================ */
.blog-show-body {
    padding: 3.5rem 0 5rem;
}

.blog-show-body__inner {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   MAIN COLUMN: article + related  (70%)
   ============================================================ */
.blog-show-main {
    flex: 0 0 68%;
    min-width: 0;
}

.blog-show-content {
    min-width: 0;
    color: rgba(207, 201, 230, 0.85);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.blog-show-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 3rem 0 1rem;
    line-height: 1.3;
    scroll-margin-top: 5.5rem;
}

.blog-show-content h2:first-child {
    margin-top: 0;
}

.blog-show-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 0.75rem;
    line-height: 1.4;
    scroll-margin-top: 5.5rem;
}

.blog-show-content p {
    margin: 0 0 1.25rem;
}

.blog-show-content p:last-child {
    margin-bottom: 0;
}

.blog-show-content ul,
.blog-show-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-show-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.blog-show-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: rgba(76, 215, 196, 0.7);
}

.blog-show-content ol li {
    list-style: decimal;
    padding-left: 0.25rem;
}

.blog-show-content ol li::marker {
    color: rgba(158, 107, 255, 0.8);
    font-weight: 700;
    font-size: 0.875em;
}

/* Code block — console-style window (targets the raw <pre><code> the provider/seeder emit) */
.blog-show-content pre {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    padding: 1.25rem 1.375rem;
    margin: 0 0 1.5rem;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    color: #e6edf3;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.82rem;
    line-height: 1.7;
}

.blog-show-content pre code {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #e6edf3;
    white-space: pre;
    background: none;
    padding: 0;
    border: 0;
}

/* Inline code */
.blog-show-content :not(pre) > code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.85em;
    color: #e6edf3;
    background: rgba(110, 118, 129, 0.25);
    padding: 0.15em 0.4em;
    border-radius: 0.3rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Inline links inside article body (kept by the sanitizer; styled so they read as links) */
.blog-show-content a {
    color: rgba(76, 215, 196, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(76, 215, 196, 0.4);
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
    word-break: break-word;
}

.blog-show-content a:hover {
    color: rgba(76, 215, 196, 1);
    text-decoration-color: rgba(76, 215, 196, 0.9);
}

/* Blockquote */
.blog-show-blockquote {
    border-left: 3px solid rgba(76, 215, 196, 0.55);
    margin: 0 0 1.5rem;
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: rgba(207, 201, 230, 0.65);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
}

/* Figure */
.blog-show-figure {
    margin: 0 0 1.5rem;
}

.blog-show-figure img {
    width: 100%;
    border-radius: 0.75rem;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-show-figure figcaption {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    font-style: italic;
}

/* Tags */
.blog-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-show-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(207, 201, 230, 0.65);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.blog-show-tag:hover,
.blog-show-tag:focus-visible {
    color: #fff;
    background: rgba(158, 107, 255, 0.16);
    border-color: rgba(158, 107, 255, 0.5);
}

/* ============================================================
   SIDEBAR  (30%)
   ============================================================ */
.blog-show-sidebar {
    flex: 0 0 calc(32% - 2.5rem);
    width: calc(32% - 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 6rem;
}

/* Shared card base */
.blog-show-sidebar__card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%),
        rgba(14, 8, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
    padding: 1.25rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.blog-show-sidebar__label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 0.875rem;
}

/* ── "On this page" card: header (label + progress ring) ── */
.blog-show-toc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.blog-show-toc-card__header .blog-show-sidebar__label {
    margin: 0;
}

.blog-show-progress {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.blog-show-progress__svg {
    width: 100%;
    height: 100%;
    /* Start the arc at 12 o'clock and sweep clockwise */
    transform: rotate(-90deg);
}

.blog-show-progress__track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.blog-show-progress__bar {
    fill: none;
    stroke: rgba(76, 215, 196, 0.9);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.blog-show-progress__pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-variant-numeric: tabular-nums;
}

/* ── Table of contents ── */
.blog-show-toc-card__nav {
    /* Long TOCs stay contained; the card scrolls internally rather than the page */
    max-height: calc(100vh - 12rem);
    overflow-y: auto;
}

.blog-show-toc-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.blog-show-toc-card__item--h3 {
    padding-left: 0.875rem;
}

.blog-show-toc-card__link {
    display: block;
    padding: 0.375rem 0.625rem;
    border-left: 2px solid transparent;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(207, 201, 230, 0.6);
    text-decoration: none;
    border-radius: 0 0.375rem 0.375rem 0;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.blog-show-toc-card__item--h3 .blog-show-toc-card__link {
    font-size: 0.78125rem;
    color: rgba(207, 201, 230, 0.48);
}

.blog-show-toc-card__link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.04);
}

.blog-show-toc-card__link--active {
    color: rgba(76, 215, 196, 0.95);
    border-left-color: rgba(76, 215, 196, 0.7);
    background: rgba(76, 215, 196, 0.06);
}

/* ── Subscribe card ── */
.blog-show-subscribe-card__heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.375rem;
    letter-spacing: -0.01em;
}

.blog-show-subscribe-card__desc {
    font-size: 0.78125rem;
    color: rgba(207, 201, 230, 0.6);
    line-height: 1.55;
    margin: 0 0 0.875rem;
}

.blog-show-subscribe-card__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-show-subscribe-card__input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5625rem 0.875rem;
    font-size: 0.8125rem;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.blog-show-subscribe-card__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.blog-show-subscribe-card__input:focus {
    border-color: rgba(76, 215, 196, 0.45);
}

.blog-show-subscribe-card__btn {
    width: 100%;
    padding: 0.5625rem 1rem;
    background: rgba(76, 215, 196, 0.12);
    border: 1px solid rgba(76, 215, 196, 0.35);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(76, 215, 196, 0.9);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-show-subscribe-card__btn:hover {
    background: rgba(76, 215, 196, 0.2);
    border-color: rgba(76, 215, 196, 0.55);
}

.blog-show-subscribe-card__microcopy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin: 0.375rem 0 0;
}

/* ── Share card ── */
.blog-show-share-card__buttons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.blog-show-share-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem; /* 44px — WCAG touch-target minimum */
    height: 2.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.blog-show-share-card__btn:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.blog-show-share-card__btn--copied {
    color: rgba(76, 215, 196, 0.9) !important;
    border-color: rgba(76, 215, 196, 0.4) !important;
    background: rgba(76, 215, 196, 0.06) !important;
}

/* ============================================================
   RELATED ARTICLES — feature-card style, at the end of the article
   ============================================================ */
.blog-show-related {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-show-related__heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1.25rem;
}

.blog-show-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.blog-show-related__card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
    cursor: pointer;
}

.blog-show-related__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-show-related__card:hover .blog-show-related__image {
    transform: scale(1.04);
}

.blog-show-related__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(8, 4, 26, 0.93) 0%, rgba(8, 4, 26, 0.0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 1.25rem 1.25rem 1.125rem;
}

.blog-show-related__category {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(192, 132, 252, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.blog-show-related__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   PREVIOUS / NEXT PAGER
   ============================================================ */
.blog-show-pager {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-show-pager__link {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-width: 16rem;
    padding: 0.625rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.blog-show-pager__link:hover {
    border-color: rgba(76, 215, 196, 0.35);
    background: rgba(76, 215, 196, 0.05);
    transform: translateY(-2px);
}

.blog-show-pager__link--next {
    text-align: right;
    align-items: flex-end;
}

.blog-show-pager__dir {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(76, 215, 196, 0.85);
}

/* The fuller "Previous post" / "Next post" label only shows on mobile, where titles are hidden */
.blog-show-pager__dir-full {
    display: none;
}

.blog-show-pager__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Centered layout — a lone neighbour just centres itself, no placeholder needed */
.blog-show-pager__spacer {
    display: none;
}

/* ============================================================
   CTA — send-off to the main product site
   ============================================================ */
.blog-show-cta {
    position: relative;
    overflow: hidden;
    margin-top: 3.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(158, 107, 255, 0.22);
    border-radius: 1.25rem;
    background:
        linear-gradient(160deg, rgba(76, 215, 196, 0.08) 0%, rgba(158, 107, 255, 0.12) 100%),
        rgba(14, 8, 40, 0.5);
    text-align: center;
}

.blog-show-cta__glow {
    position: absolute;
    top: -40%;
    left: 50%;
    width: 22rem;
    height: 22rem;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(76, 215, 196, 0.18) 0%, rgba(76, 215, 196, 0) 65%);
    pointer-events: none;
}

.blog-show-cta > *:not(.blog-show-cta__glow) {
    position: relative;
}

.blog-show-cta__eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(76, 215, 196, 0.9);
    margin: 0 0 0.625rem;
}

.blog-show-cta__heading {
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 0.625rem;
}

.blog-show-cta__text {
    font-size: 0.9375rem;
    color: rgba(207, 201, 230, 0.75);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.blog-show-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(76, 215, 196, 1) 0%, rgba(158, 107, 255, 1) 100%);
    color: #0b0620;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(76, 215, 196, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-show-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(158, 107, 255, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 72rem) {
    .blog-show-hero__image-wrap {
        aspect-ratio: 16 / 7;
    }

    .blog-show-sidebar {
        flex: 0 0 calc(36% - 2.5rem);
        width: calc(36% - 2.5rem);
    }

    .blog-show-main {
        flex: 1;
    }
}

@media (max-width: 56rem) {
    .blog-show-body__inner {
        flex-direction: column;
    }

    .blog-show-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }

    .blog-show-main {
        flex: none;
        width: 100%;
    }

    .blog-show-hero__image-wrap {
        aspect-ratio: 4 / 3;
    }

    /* The "On this page" card (TOC + progress) is a reading aid tied to the sticky
       sidebar — pointless once it drops below the article on mobile. Share card stays. */
    .blog-show-toc-card {
        display: none;
    }

    /* Sidebar now spans full width — keep the share card compact and centred, not stretched */
    .blog-show-share-card {
        align-self: center;
        width: fit-content;
        text-align: center;
    }
}

@media (max-width: 40rem) {
    .blog-show-hero__image-wrap {
        aspect-ratio: 3 / 4;
    }

    .blog-show-hero__content {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .blog-show-hero__content > * {
        max-width: 100%;
    }

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

    /* Keep both neighbours on one compact row: drop the titles, swap in the fuller labels */
    .blog-show-pager__title,
    .blog-show-pager__dir-short {
        display: none;
    }

    .blog-show-pager__dir-full {
        display: inline;
    }

    .blog-show-pager__link,
    .blog-show-pager__link--next {
        align-items: center;
        text-align: center;
    }

    .blog-show-cta {
        padding: 2rem 1.25rem;
    }

    .blog-show-body {
        padding: 2rem 0 3.5rem;
    }

    .blog-show-content {
        font-size: 1rem;
    }

    .blog-show-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .blog-show-content pre {
        padding: 1rem;
        border-radius: 0.5rem;
    }
}
