.blog-detail-page {
    --blog-ink: #25251f;
    --blog-muted: #73766a;
    --blog-line: #e9e6dd;
    --blog-paper: #fffefa;
    --blog-cream: #f7f5ef;
    --blog-olive: #6f7251;
    --blog-gold: #e4c97a;
    background: #fff;
    color: var(--blog-ink);
    overflow: hidden;
}

.blog-reading-progress {
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .35);
    pointer-events: none;
}

.blog-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blog-gold);
    transition: width .1s linear;
}

.blog-detail-hero {
    position: relative;
    padding: 26px 0 116px;
    background: linear-gradient(135deg, #f8f6ef 0%, #fdfcf9 58%, #f1eee5 100%);
    border-bottom: 1px solid var(--blog-line);
}

.blog-detail-hero::before,
.blog-detail-hero::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(111, 114, 81, .13);
    border-radius: 50%;
    pointer-events: none;
}

.blog-detail-hero::before {
    top: -170px;
    right: -120px;
    width: 370px;
    height: 370px;
}

.blog-detail-hero::after {
    bottom: -110px;
    left: -115px;
    width: 220px;
    height: 220px;
}

.blog-detail-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1080px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 74px;
    overflow: hidden;
    color: var(--blog-muted);
    font-size: 12px;
    white-space: nowrap;
}

.blog-breadcrumb a {
    color: var(--blog-muted);
    text-decoration: none;
    transition: color .2s;
}

.blog-breadcrumb a:hover {
    color: var(--blog-olive);
}

.blog-breadcrumb .current {
    max-width: 310px;
    overflow: hidden;
    color: var(--blog-olive);
    font-weight: 600;
    text-overflow: ellipsis;
}

.blog-breadcrumb .separator {
    color: #b7b7ab;
    font-size: 16px;
    line-height: 1;
}

.blog-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--blog-olive);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.blog-kicker::before {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--blog-gold);
    content: "";
}

.blog-detail-hero h1 {
    max-width: 930px;
    margin: 0 0 22px;
    color: var(--blog-ink);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.blog-hero-excerpt {
    max-width: 700px;
    margin: 0;
    color: #686b61;
    font-size: 17px;
    line-height: 1.75;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 31px;
    color: var(--blog-muted);
    font-size: 12px;
}

.blog-meta-author {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blog-ink);
    font-weight: 600;
}

.blog-meta-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blog-olive);
    color: #fff;
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 15px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-meta-item i {
    color: var(--blog-gold);
    font-size: 14px;
}

.blog-meta-divider {
    width: 1px;
    height: 19px;
    background: #d9d6cb;
}

.blog-featured {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: -76px auto 0;
    padding: 0 20px;
}

.blog-featured-frame {
    position: relative;
    padding: 10px;
    background: var(--blog-paper);
    border: 1px solid var(--blog-line);
    box-shadow: 0 24px 55px rgba(48, 48, 36, .12);
}

.blog-featured-frame::after {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
    content: "";
    pointer-events: none;
}

.blog-featured img {
    display: block;
    width: 100%;
    max-height: 620px;
    aspect-ratio: 16 / 8.3;
    object-fit: cover;
}

.blog-featured-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 8.3;
    background: linear-gradient(135deg, #efede3, #fbfaf5);
    color: var(--blog-gold);
    font-size: 48px;
}

.blog-featured-caption {
    display: flex;
    justify-content: space-between;
    padding: 11px 4px 1px;
    color: #8b8d83;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-detail-main {
    padding: 86px 0 100px;
    background: var(--blog-paper);
}

.blog-detail-main .container {
    max-width: 1200px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.blog-layout--solo {
    grid-template-columns: 54px minmax(0, 720px);
    justify-content: center;
}

.blog-share-rail {
    position: sticky;
    top: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.blog-share-rail > span:first-child {
    color: #9a9b91;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.blog-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--blog-line);
    border-radius: 50%;
    background: #fff;
    color: var(--blog-olive);
    cursor: pointer;
    transition: all .2s;
}

.blog-share-button:hover,
.blog-share-button:focus-visible {
    border-color: var(--blog-olive);
    background: var(--blog-olive);
    color: #fff;
    transform: translateY(-2px);
}

.blog-share-status {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    padding: 5px 8px;
    border: 1px solid var(--blog-line);
    background: #fff;
    color: var(--blog-olive);
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity .2s;
}

.blog-share-status.is-visible {
    opacity: 1;
}

.blog-article {
    min-width: 0;
    max-width: 720px;
}

.blog-richtext {
    overflow-wrap: break-word;
    color: #45463f;
    font-family: var(--font-worksans, "Work Sans", sans-serif);
    font-size: 16px;
    line-height: 1.9;
}

.blog-richtext p {
    margin: 0 0 20px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

.blog-richtext a {
    color: var(--blog-olive);
    text-decoration: underline;
    text-decoration-color: rgba(111, 114, 81, .35);
    text-underline-offset: 3px;
}

.blog-richtext a:hover {
    color: #4f5337;
}

.blog-richtext h2,
.blog-richtext h3,
.blog-richtext h4 {
    margin: 34px 0 14px;
    color: var(--blog-ink);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-weight: 600;
    line-height: 1.25;
}

.blog-richtext h2 {
    font-size: 29px;
}

.blog-richtext h3 {
    font-size: 23px;
}

.blog-richtext h4 {
    font-size: 19px;
}

.blog-richtext ul,
.blog-richtext ol {
    margin: 0 0 22px;
    padding-left: 23px;
}

.blog-richtext li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.blog-richtext blockquote {
    margin: 28px 0;
    padding: 22px 25px;
    border-left: 3px solid var(--blog-gold);
    background: var(--blog-cream);
    color: var(--blog-ink);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.blog-richtext img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 2px;
}

.blog-richtext table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.blog-richtext th,
.blog-richtext td {
    padding: 10px;
    border: 1px solid var(--blog-line);
    text-align: left;
}

.blog-lead {
    padding-bottom: 39px;
    margin-bottom: 41px;
    border-bottom: 1px solid var(--blog-line);
}

.blog-lead > p:first-child::first-letter {
    float: left;
    margin: 7px 10px 0 0;
    color: var(--blog-olive);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 58px;
    font-weight: 600;
    line-height: .75;
}

.blog-section {
    position: relative;
    margin: 0 0 46px;
    padding: 0 0 45px;
    border-bottom: 1px solid var(--blog-line);
    scroll-margin-top: 105px;
}

.blog-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 17px;
}

.blog-section-number {
    display: inline-flex;
    flex: 0 0 33px;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--blog-olive);
    color: #fff;
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 15px;
}

.blog-section h2 {
    margin: 0;
    color: var(--blog-ink);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.25;
}

.blog-article-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 51px;
    padding-top: 26px;
    border-top: 1px solid var(--blog-line);
}

.blog-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 11px 18px;
    border: 1px solid var(--blog-olive);
    border-radius: 2px;
    background: var(--blog-olive);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: all .2s;
}

.blog-action:hover {
    border-color: #555a3c;
    background: #555a3c;
    color: #fff;
    transform: translateY(-2px);
}

.blog-action--light {
    border-color: var(--blog-line);
    background: transparent;
    color: var(--blog-ink);
}

.blog-action--light:hover {
    border-color: var(--blog-olive);
    background: transparent;
    color: var(--blog-olive);
}

.blog-sidebar {
    position: sticky;
    top: 94px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.blog-side-card {
    padding: 22px;
    border: 1px solid var(--blog-line);
    background: #fff;
}

.blog-side-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--blog-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-side-title::before {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--blog-gold);
    content: "";
}

.blog-toc {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
}

.blog-toc li {
    position: relative;
    margin: 0;
    border-top: 1px solid #f0eee7;
    counter-increment: toc;
}

.blog-toc li:first-child {
    border-top: 0;
}

.blog-toc a {
    display: flex;
    gap: 10px;
    padding: 11px 0;
    color: var(--blog-muted);
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s;
}

.blog-toc a::before {
    color: var(--blog-gold);
    content: counter(toc, decimal-leading-zero);
    font-size: 10px;
    font-weight: 700;
}

.blog-toc a:hover {
    color: var(--blog-olive);
}

.blog-recent-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-recent-item {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--blog-ink);
    text-decoration: none;
}

.blog-recent-thumb {
    display: flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--blog-cream);
    color: var(--blog-gold);
}

.blog-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.blog-recent-item:hover .blog-recent-thumb img {
    transform: scale(1.06);
}

.blog-recent-copy {
    min-width: 0;
}

.blog-recent-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--blog-ink);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-recent-copy time {
    display: block;
    margin-top: 5px;
    color: #9a9b91;
    font-size: 10px;
}

.blog-cta-card {
    padding: 25px 22px;
    border: 1px solid #ded9c9;
    background: var(--blog-cream);
}

.blog-cta-card h3 {
    margin: 0 0 7px;
    color: var(--blog-ink);
    font-family: var(--font-playfair, "Playfair Display", serif);
    font-size: 23px;
    font-weight: 600;
}

.blog-cta-card p {
    margin: 0 0 16px;
    color: var(--blog-muted);
    font-size: 12px;
    line-height: 1.6;
}

.blog-cta-card .blog-action {
    width: 100%;
}

@media (max-width: 991px) {
    .blog-detail-hero {
        padding-bottom: 80px;
    }

    .blog-breadcrumb {
        margin-bottom: 55px;
    }

    .blog-layout {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 22px;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .blog-cta-card {
        grid-column: 1 / -1;
    }

    .blog-detail-main {
        padding-top: 64px;
    }
}

@media (max-width: 767px) {
    .blog-detail-hero {
        padding: 20px 0 62px;
    }

    .blog-detail-hero::before {
        top: -165px;
        right: -170px;
        width: 300px;
        height: 300px;
    }

    .blog-detail-hero::after {
        bottom: -130px;
        left: -150px;
    }

    .blog-breadcrumb {
        margin-bottom: 42px;
        font-size: 11px;
    }

    .blog-breadcrumb .current {
        max-width: 150px;
    }

    .blog-kicker {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .blog-detail-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
        letter-spacing: -.04em;
    }

    .blog-hero-excerpt {
        font-size: 15px;
        line-height: 1.65;
    }

    .blog-meta-row {
        gap: 11px 15px;
        margin-top: 24px;
        font-size: 11px;
    }

    .blog-meta-divider {
        display: none;
    }

    .blog-featured {
        margin-top: -42px;
        padding: 0 13px;
    }

    .blog-featured-frame {
        padding: 6px;
    }

    .blog-featured img,
    .blog-featured-placeholder {
        aspect-ratio: 4 / 3;
    }

    .blog-featured-caption {
        padding: 9px 2px 0;
        font-size: 9px;
    }

    .blog-detail-main {
        padding: 48px 0 70px;
    }

    .blog-layout {
        display: flex;
        flex-direction: column;
        gap: 29px;
    }

    .blog-share-rail {
        position: static;
        order: 0;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--blog-line);
    }

    .blog-share-rail > span:first-child {
        margin-right: 3px;
        writing-mode: initial;
        transform: none;
    }

    .blog-share-status {
        top: calc(100% + 8px);
        left: 0;
        transform: none;
    }

    .blog-article {
        order: 1;
        width: 100%;
    }

    .blog-sidebar {
        display: flex;
        order: 2;
        width: 100%;
    }

    .blog-richtext {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-richtext h2,
    .blog-section h2 {
        font-size: 25px;
    }

    .blog-richtext h3 {
        font-size: 21px;
    }

    .blog-richtext blockquote {
        padding: 18px;
        font-size: 18px;
    }

    .blog-lead {
        padding-bottom: 30px;
        margin-bottom: 31px;
    }

    .blog-lead > p:first-child::first-letter {
        font-size: 50px;
    }

    .blog-section {
        margin-bottom: 36px;
        padding-bottom: 35px;
    }

    .blog-section-heading {
        gap: 11px;
    }

    .blog-section-number {
        flex-basis: 29px;
        width: 29px;
        height: 29px;
        font-size: 13px;
    }

    .blog-article-end {
        align-items: stretch;
        flex-direction: column;
        margin-top: 38px;
    }

    .blog-action {
        width: 100%;
    }

    .blog-side-card {
        padding: 20px;
    }
}
