/* Source module 10 */
/* X-TechWork blog editorial layout */
.tech-blog-page {
    --blog-font: Roboto, "Helvetica Neue", Arial, sans-serif;
    --blog-ink: #173f55;
    --blog-deep: #092638;
    --blog-muted: #5e7180;
    --blog-red: #d9142f;
    --blog-line: #d9e4eb;
    --blog-soft: #eef4f7;
    --blog-paper: #ffffff;
    background: var(--blog-paper);
    color: var(--blog-ink);
    font-family: var(--blog-font);
}

.blog-editorial-hero {
    padding: 148px 0 82px;
    background:
        linear-gradient(90deg, rgba(238, 244, 247, .92) 0%, rgba(255, 255, 255, .92) 56%, rgba(238, 244, 247, .70) 100%),
        radial-gradient(circle at 78% 18%, rgba(217, 20, 47, .08), transparent 34%);
}

.blog-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: end;
}

.blog-editorial-copy {
    max-width: 620px;
    padding-bottom: 14px;
}

.blog-kicker,
.blog-section-heading span,
.blog-meta-line {
    display: inline-flex;
    color: var(--blog-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-editorial-copy h1 {
    margin: 18px 0 24px;
    color: var(--blog-deep);
    font-family: var(--blog-font);
    font-size: clamp(44px, 5.4vw, 76px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.blog-editorial-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--blog-muted);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.62;
}

.blog-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
    color: var(--blog-ink);
    font-size: 15px;
    font-weight: 600;
}

.blog-topic-row span {
    position: relative;
    padding-left: 14px;
}

.blog-topic-row span::before {
    position: absolute;
    left: 0;
    top: .68em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blog-red);
    content: "";
}

.blog-featured-story {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1fr);
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--blog-line);
    background: var(--blog-paper);
    color: var(--blog-ink);
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.blog-featured-story:hover {
    border-color: rgba(217, 20, 47, .28);
    color: var(--blog-ink);
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(9, 38, 56, .14);
}

.blog-featured-media {
    min-height: 100%;
    overflow: hidden;
    background: var(--blog-soft);
}

.blog-featured-media img,
.blog-index-thumb img,
.blog-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-media img,
.blog-index-thumb img {
    transition: transform .42s ease;
}

.blog-featured-story:hover .blog-featured-media img,
.blog-index-item:hover .blog-index-thumb img {
    transform: scale(1.045);
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 54px);
}

.blog-featured-body strong {
    display: block;
    margin: 16px 0 14px;
    color: var(--blog-deep);
    font-size: clamp(30px, 3.3vw, 44px);
    font-weight: 500;
    line-height: 1.12;
}

.blog-featured-body em,
.blog-index-main em {
    color: var(--blog-muted);
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    color: var(--blog-red);
    font-size: 15px;
    font-weight: 700;
}

.blog-index-section,
.blog-related-section {
    padding: 82px 0;
    background: var(--blog-paper);
}

.blog-index-section {
    border-top: 1px solid var(--blog-line);
}

.blog-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
}

.blog-section-heading h2 {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--blog-deep);
    font-family: var(--blog-font);
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    line-height: 1.12;
}

.blog-index-list {
    border-top: 1px solid var(--blog-line);
}

.blog-index-item {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 230px;
    gap: clamp(24px, 4vw, 58px);
    align-items: center;
    min-height: 230px;
    padding: 28px 0;
    border-bottom: 1px solid var(--blog-line);
    color: var(--blog-ink);
    text-decoration: none;
}

.blog-index-item:hover {
    color: var(--blog-ink);
    text-decoration: none;
}

.blog-index-date {
    color: var(--blog-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.blog-index-main {
    display: block;
    max-width: 760px;
}

.blog-index-main strong {
    display: block;
    margin: 10px 0 12px;
    color: var(--blog-deep);
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 500;
    line-height: 1.18;
}

.blog-index-thumb {
    display: block;
    height: 150px;
    overflow: hidden;
    background: var(--blog-soft);
}

.blog-article-hero {
    padding: 136px 0 64px;
    background:
        linear-gradient(180deg, var(--blog-soft) 0%, #fff 74%);
}

.blog-article-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, .85fr);
    gap: clamp(42px, 6vw, 78px);
    align-items: center;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--blog-muted);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.blog-back-link:hover {
    color: var(--blog-red);
    text-decoration: none;
}

.blog-article-copy h1 {
    margin: 18px 0 22px;
    color: var(--blog-deep);
    font-family: var(--blog-font);
    font-size: clamp(42px, 5.4vw, 76px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.blog-article-copy > p {
    max-width: 720px;
    margin: 0 0 30px;
    color: var(--blog-muted);
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.62;
}

.blog-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--blog-muted);
}

.blog-author-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--blog-deep);
    color: #fff;
    font-weight: 700;
}

.blog-author-row strong,
.blog-author-row em {
    display: block;
    font-style: normal;
}

.blog-author-row strong {
    color: var(--blog-deep);
    font-weight: 700;
}

.blog-article-image {
    height: clamp(360px, 38vw, 560px);
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(9, 38, 56, .14);
}

.blog-article-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 780px);
    gap: clamp(46px, 6vw, 84px);
    align-items: start;
    padding-top: 74px;
    padding-bottom: 96px;
}

.blog-article-toc {
    position: sticky;
    top: 112px;
    padding-top: 4px;
}

.blog-article-toc strong {
    display: block;
    margin-bottom: 15px;
    color: var(--blog-deep);
    font-size: 15px;
    font-weight: 700;
}

.blog-article-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--blog-line);
    color: var(--blog-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color .18s ease, padding-left .18s ease;
}

.blog-article-toc a:hover {
    color: var(--blog-red);
    padding-left: 4px;
}

.blog-article-body {
    color: var(--blog-ink);
    font-family: var(--blog-font);
    font-size: 18px;
    line-height: 1.82;
}

.blog-article-body .blog-intro {
    margin-bottom: 34px;
    color: var(--blog-deep);
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 400;
    line-height: 1.58;
}

.blog-article-body h2 {
    margin: 52px 0 18px;
    color: var(--blog-deep);
    font-family: var(--blog-font);
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.18;
}

.blog-article-body p {
    margin: 0 0 27px;
    color: #334b5a;
}

.blog-article-body ul {
    margin: 0 0 30px;
    padding-left: 0;
    list-style: none;
}

.blog-article-body li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 24px;
    color: #334b5a;
}

.blog-article-body li::before {
    position: absolute;
    left: 0;
    top: .78em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blog-red);
    content: "";
}

.blog-article-body pre {
    margin: 34px 0;
    padding: 26px;
    overflow: auto;
    border-radius: 0;
    background: #092638;
    color: #eef7fb;
    font-size: 15px;
    line-height: 1.68;
}

.blog-source-note {
    margin-top: 52px !important;
    padding-top: 24px;
    border-top: 1px solid var(--blog-line);
    color: var(--blog-muted) !important;
    font-size: 15px;
}

.blog-source-note a {
    color: var(--blog-red);
    font-weight: 700;
}

.blog-related-section {
    background: var(--blog-soft);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--blog-line);
}

.blog-related-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 28px;
    border-right: 1px solid var(--blog-line);
    border-bottom: 1px solid var(--blog-line);
    background: rgba(255, 255, 255, .72);
    color: var(--blog-ink);
    text-decoration: none;
    transition: background .22s ease, transform .22s ease;
}

.blog-related-card:hover {
    background: #fff;
    color: var(--blog-ink);
    text-decoration: none;
    transform: translateY(-3px);
}

.blog-related-card span {
    color: var(--blog-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-related-card strong {
    color: var(--blog-deep);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.22;
}

.blog-related-card em {
    color: var(--blog-muted);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .blog-editorial-grid,
    .blog-article-head {
        grid-template-columns: 1fr;
    }

    .blog-featured-story {
        grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr);
    }

    .blog-index-item {
        grid-template-columns: 120px minmax(0, 1fr) 190px;
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .blog-editorial-hero {
        padding-top: 126px;
    }

    .blog-featured-story,
    .blog-index-item,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-featured-media {
        min-height: 320px;
    }

    .blog-index-thumb {
        width: 100%;
        height: 230px;
    }

    .blog-index-date {
        order: 3;
    }

    .blog-article-toc {
        position: static;
        display: none;
    }

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

@media (max-width: 640px) {
    .blog-editorial-hero,
    .blog-article-hero {
        padding-top: 112px;
        padding-bottom: 54px;
    }

    .blog-editorial-copy h1,
    .blog-article-copy h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .blog-featured-body {
        padding: 28px 24px;
    }

    .blog-index-item {
        min-height: 0;
        padding: 26px 0;
    }

    .blog-index-thumb {
        height: 210px;
    }

    .blog-article-image {
        height: 300px;
    }

    .blog-article-layout {
        padding-top: 52px;
        padding-bottom: 72px;
    }

    .blog-article-body {
        font-size: 16px;
        line-height: 1.74;
    }
}

/* Source module 11 */
/* X-TechWork blog landing refinement */
:root {
    --xtech-site-font: Roboto, "Helvetica Neue", Arial, sans-serif;
}

html,
body,
.tech-body,
.tech-body button,
.tech-body input,
.tech-body textarea,
.tech-body select {
    font-family: var(--xtech-site-font) !important;
}

.tech-blog-page {
    --blog-font: var(--xtech-site-font);
    --blog-ink: #12394f;
    --blog-deep: #08283b;
    --blog-muted: #647889;
    --blog-red: #e31837;
    --blog-line: #dce7ee;
    --blog-soft: #f4f8fb;
    background: #fff;
    color: var(--blog-ink);
    font-family: var(--blog-font) !important;
}

.blog-magazine-hero {
    padding: 132px 0 76px;
    background:
        linear-gradient(135deg, #f6fafc 0%, #ffffff 48%, #f1f6f9 100%);
}

.blog-magazine-intro {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(260px, 420px);
    gap: clamp(32px, 6vw, 90px);
    align-items: end;
    margin-bottom: 46px;
}

.blog-kicker,
.blog-section-label,
.blog-section-heading span,
.blog-meta-line {
    display: inline-flex;
    color: var(--blog-red);
    font-family: var(--blog-font) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.35;
    text-transform: uppercase;
}

.blog-magazine-intro h1 {
    margin: 16px 0 0;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(42px, 4.7vw, 68px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.blog-magazine-intro p {
    max-width: 420px;
    margin: 0;
    color: var(--blog-muted);
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.62;
}

.blog-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
    min-height: 430px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 57, 79, .14);
    color: var(--blog-ink);
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(8, 40, 59, .10);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-spotlight:hover {
    color: var(--blog-ink);
    text-decoration: none;
    transform: translateY(-4px);
    border-color: rgba(227, 24, 55, .34);
    box-shadow: 0 30px 86px rgba(8, 40, 59, .14);
}

.blog-spotlight-media {
    display: block;
    min-height: 430px;
    overflow: hidden;
    background: var(--blog-soft);
}

.blog-spotlight-media img,
.blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.blog-spotlight:hover .blog-spotlight-media img,
.blog-card-item:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 4.4vw, 58px);
}

.blog-spotlight-content .blog-meta-line {
    margin-top: 18px;
}

.blog-spotlight-content strong {
    display: block;
    margin: 14px 0 14px;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.11;
    letter-spacing: 0;
}

.blog-spotlight-content em {
    display: block;
    color: var(--blog-muted);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.62;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 26px;
    color: var(--blog-red);
    font-size: 14px;
    font-weight: 800;
}

.blog-card-section {
    padding: 76px 0 96px;
    background: #fff;
}

.blog-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.blog-section-heading h2 {
    margin: 6px 0 0;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card-item {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18, 57, 79, .13);
    background: #fff;
    color: var(--blog-ink);
    text-decoration: none;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-card-item:hover {
    color: var(--blog-ink);
    text-decoration: none;
    transform: translateY(-5px);
    border-color: rgba(227, 24, 55, .26);
    box-shadow: 0 22px 54px rgba(8, 40, 59, .11);
}

.blog-card-media {
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--blog-soft);
}

.blog-card-content {
    display: flex;
    min-height: 270px;
    flex: 1;
    flex-direction: column;
    padding: 28px 28px 24px;
}

.blog-card-content strong {
    display: block;
    margin: 11px 0 12px;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(22px, 1.8vw, 27px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: 0;
}

.blog-card-content em {
    display: block;
    color: var(--blog-muted);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.58;
}

.blog-card-date {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    color: #7b8d9b;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .blog-magazine-intro,
    .blog-spotlight {
        grid-template-columns: 1fr;
    }

    .blog-magazine-intro p {
        max-width: 680px;
    }

    .blog-spotlight-media {
        min-height: 360px;
    }

    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .blog-magazine-hero {
        padding: 112px 0 58px;
    }

    .blog-magazine-intro {
        gap: 18px;
        margin-bottom: 34px;
    }

    .blog-magazine-intro h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
    }

    .blog-spotlight-media {
        min-height: 260px;
    }

    .blog-spotlight-content {
        padding: 28px 24px;
    }

    .blog-spotlight-content strong {
        font-size: clamp(27px, 8vw, 34px);
    }

    .blog-card-section {
        padding: 58px 0 78px;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card-content {
        min-height: 0;
        padding: 24px;
    }
}

/* Source module 12 */
/* X-TechWork blog hero final balance */
.blog-landing-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 82px;
    background:
        linear-gradient(135deg, rgba(244, 248, 251, .98) 0%, rgba(255, 255, 255, .96) 52%, rgba(236, 244, 248, .98) 100%);
}

.blog-landing-hero::before {
    position: absolute;
    inset: auto -8% -30% 42%;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(227, 24, 55, .10), rgba(18, 57, 79, .08) 42%, transparent 68%);
    content: "";
    pointer-events: none;
}

.blog-landing-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
    gap: clamp(34px, 5.4vw, 76px);
    align-items: center;
    min-height: clamp(520px, 64vh, 700px);
}

.blog-landing-copy {
    max-width: 560px;
}

.blog-landing-copy h1 {
    margin: 18px 0 20px;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(40px, 4.15vw, 62px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0;
}

.blog-landing-copy p {
    max-width: 500px;
    margin: 0;
    color: var(--blog-muted);
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 400;
    line-height: 1.65;
}

.blog-topic-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.blog-topic-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(18, 57, 79, .14);
    background: rgba(255, 255, 255, .72);
    color: var(--blog-ink);
    font-size: 13px;
    font-weight: 700;
}

.blog-hero-feature {
    display: grid;
    grid-template-columns: minmax(230px, .92fr) minmax(0, .82fr);
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(18, 57, 79, .14);
    background: rgba(255, 255, 255, .92);
    color: var(--blog-ink);
    text-decoration: none;
    box-shadow: 0 26px 72px rgba(8, 40, 59, .13);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-hero-feature:hover {
    border-color: rgba(227, 24, 55, .30);
    color: var(--blog-ink);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 34px 88px rgba(8, 40, 59, .17);
}

.blog-hero-image {
    display: block;
    min-height: 430px;
    overflow: hidden;
    background: #dfeaf0;
}

.blog-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.blog-hero-feature:hover .blog-hero-image img {
    transform: scale(1.04);
}

.blog-hero-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 3.4vw, 44px);
}

.blog-hero-feature-copy strong {
    display: block;
    margin: 14px 0 12px;
    color: var(--blog-deep);
    font-family: var(--blog-font) !important;
    font-size: clamp(28px, 2.45vw, 38px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
}

.blog-hero-feature-copy em {
    display: block;
    margin-bottom: 22px;
    color: var(--blog-muted);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.62;
}

.blog-hero-feature-copy .blog-meta-line {
    margin-top: auto;
    color: var(--blog-red);
}

.blog-card-section {
    padding-top: 76px;
}

@media (max-width: 1120px) {
    .blog-landing-shell,
    .blog-hero-feature {
        grid-template-columns: 1fr;
    }

    .blog-landing-shell {
        min-height: 0;
    }

    .blog-landing-copy {
        max-width: 780px;
    }

    .blog-hero-image {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .blog-landing-hero {
        padding: 112px 0 58px;
    }

    .blog-landing-shell {
        gap: 30px;
    }

    .blog-landing-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .blog-hero-image {
        min-height: 250px;
    }

    .blog-hero-feature-copy {
        padding: 25px 22px;
    }

    .blog-hero-feature-copy strong {
        font-size: clamp(25px, 7.5vw, 32px);
    }
}

/* Source module 13 */
/* X-TechWork blog article responsive hardening */
.tech-blog-article-page,
.tech-blog-article-page * {
    min-width: 0;
}

.tech-blog-article-page .tech-container {
    width: min(1180px, calc(100% - 40px));
}

.tech-blog-article-page .blog-article-hero {
    padding: clamp(112px, 10vw, 136px) 0 clamp(44px, 5vw, 66px);
}

.tech-blog-article-page .blog-article-head {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, .76fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.tech-blog-article-page .blog-article-copy {
    max-width: 760px;
}

.tech-blog-article-page .blog-article-copy h1 {
    max-width: 760px;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.07;
    overflow-wrap: anywhere;
}

.tech-blog-article-page .blog-article-copy > p {
    max-width: 680px;
    font-size: clamp(16px, 1.45vw, 21px);
}

.tech-blog-article-page .blog-author-row {
    flex-wrap: wrap;
}

.tech-blog-article-page .blog-author-row > span:last-child {
    min-width: 0;
}

.tech-blog-article-page .blog-article-image {
    width: 100%;
    height: clamp(280px, 34vw, 460px);
}

.tech-blog-article-page .blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-blog-article-page .blog-article-layout {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 780px);
    gap: clamp(34px, 5vw, 72px);
    justify-content: center;
    padding-top: clamp(46px, 6vw, 76px);
    padding-bottom: clamp(64px, 7vw, 98px);
}

.tech-blog-article-page .blog-article-body {
    width: 100%;
    max-width: 780px;
    font-size: clamp(16px, 1.25vw, 18px);
    overflow-wrap: anywhere;
}

.tech-blog-article-page .blog-article-body .blog-intro {
    font-size: clamp(20px, 2vw, 26px);
}

.tech-blog-article-page .blog-article-body h2 {
    font-size: clamp(26px, 3vw, 38px);
    overflow-wrap: anywhere;
}

.tech-blog-article-page .blog-article-body p,
.tech-blog-article-page .blog-article-body li {
    overflow-wrap: anywhere;
}

.tech-blog-article-page .blog-article-body pre {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: pre;
}

.tech-blog-article-page .blog-article-body pre code {
    display: block;
    min-width: max-content;
    font-size: inherit;
}

.tech-blog-article-page .blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    border-left: 1px solid var(--blog-line);
}

.tech-blog-article-page .blog-related-card {
    min-height: 190px;
}

@media (max-width: 1024px) {
    .tech-blog-article-page .blog-article-head {
        grid-template-columns: 1fr;
    }

    .tech-blog-article-page .blog-article-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 900px) {
    .tech-blog-article-page .blog-article-layout {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .tech-blog-article-page .blog-article-toc {
        display: none;
    }

    .tech-blog-article-page .blog-article-body {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .tech-blog-article-page .tech-container {
        width: min(100% - 30px, 1180px);
    }

    .tech-blog-article-page .blog-article-hero {
        padding-top: 104px;
        padding-bottom: 38px;
    }

    .tech-blog-article-page .blog-article-head {
        gap: 28px;
    }

    .tech-blog-article-page .blog-article-copy h1 {
        margin: 14px 0 16px;
        font-size: clamp(30px, 9.6vw, 42px);
        line-height: 1.1;
    }

    .tech-blog-article-page .blog-article-copy > p {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.58;
    }

    .tech-blog-article-page .blog-author-avatar {
        width: 42px;
        height: 42px;
    }

    .tech-blog-article-page .blog-article-image {
        aspect-ratio: 4 / 3;
        box-shadow: 0 16px 34px rgba(9, 38, 56, .12);
    }

    .tech-blog-article-page .blog-article-layout {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .tech-blog-article-page .blog-article-body {
        font-size: 16px;
        line-height: 1.72;
    }

    .tech-blog-article-page .blog-article-body .blog-intro {
        margin-bottom: 28px;
        font-size: 19px;
        line-height: 1.54;
    }

    .tech-blog-article-page .blog-article-body h2 {
        margin: 38px 0 14px;
        font-size: clamp(24px, 7.4vw, 32px);
    }

    .tech-blog-article-page .blog-article-body p {
        margin-bottom: 22px;
    }

    .tech-blog-article-page .blog-article-body ul {
        margin-bottom: 24px;
    }

    .tech-blog-article-page .blog-article-body pre {
        margin: 26px 0;
        padding: 18px;
        font-size: 13px;
        line-height: 1.58;
    }

    .tech-blog-article-page .blog-related-section {
        padding: 56px 0;
    }

    .tech-blog-article-page .blog-related-card {
        min-height: 0;
        padding: 24px;
    }
}

/* Source module 14 */
/* X-TechWork Blog-Design port */
.xb-blog-page {
    --xb-bg: #fbfaf7;
    --xb-ink: #1d1d22;
    --xb-muted: #696763;
    --xb-border: #ddd8cf;
    --xb-soft: #f0ede7;
    --xb-dark: #1d1d22;
    --xb-red: #e31837;
    --xb-sans: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
    --xb-serif: "Playfair Display", Georgia, serif;
    background: var(--xb-bg);
    color: var(--xb-ink);
    font-family: var(--xb-sans) !important;
}

.xb-blog-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.xb-blog-home {
    padding: clamp(112px, 10vw, 148px) 0 96px;
    background: var(--xb-bg);
}

.xb-featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    margin-bottom: 78px;
}

.xb-featured-media,
.xb-post-card-media,
.xb-related-image,
.xb-article-hero-media {
    display: block;
    overflow: hidden;
    background: var(--xb-soft);
}

.xb-featured-media {
    height: clamp(390px, 42vw, 520px);
    border-radius: 8px;
    order: 1;
}

.xb-featured-copy {
    order: 2;
}

.xb-featured-media img,
.xb-post-card-media img,
.xb-related-image img,
.xb-article-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.xb-featured-post:hover .xb-featured-media img,
.xb-post-card:hover .xb-post-card-media img,
.xb-related-card:hover .xb-related-image img {
    transform: scale(1.045);
}

.xb-post-category {
    display: block;
    margin-bottom: 15px;
    color: var(--xb-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.xb-featured-copy a,
.xb-post-card-copy,
.xb-related-card,
.xb-back-link {
    color: inherit;
    text-decoration: none;
}

.xb-featured-copy h1,
.xb-article-header h1,
.xb-subscribe-inner h2 {
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-weight: 700;
    letter-spacing: 0;
}

.xb-featured-copy h1 {
    max-width: 620px;
    margin: 0 0 20px;
    font-size: clamp(36px, 4.15vw, 60px);
    line-height: 1.03;
}

.xb-featured-copy p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--xb-muted);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.7;
}

.xb-author-line,
.xb-post-card-footer,
.xb-article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--xb-muted);
}

.xb-author-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--xb-dark);
    color: var(--xb-bg);
    font-size: 14px;
    font-weight: 800;
}

.xb-author-line strong,
.xb-post-card-footer strong,
.xb-article-author strong,
.xb-author-line em,
.xb-post-card-footer em,
.xb-article-author em {
    display: block;
    font-style: normal;
}

.xb-author-line strong,
.xb-post-card-footer strong,
.xb-article-author strong {
    color: var(--xb-ink);
    font-size: 14px;
    font-weight: 700;
}

.xb-author-line em,
.xb-post-card-footer em,
.xb-article-author em {
    color: var(--xb-muted);
    font-size: 12px;
    line-height: 1.4;
}

.xb-category-bar {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    margin-bottom: 48px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--xb-border);
    scrollbar-width: none;
}

.xb-category-bar::-webkit-scrollbar {
    display: none;
}

.xb-category-bar button {
    position: relative;
    flex: 0 0 auto;
    padding: 0 0 10px;
    border: 0;
    background: transparent;
    color: var(--xb-muted);
    font-family: var(--xb-sans) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    cursor: pointer;
    transition: color .18s ease;
}

.xb-category-bar button::after {
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    height: 2px;
    background: var(--xb-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    content: "";
}

.xb-category-bar button:hover,
.xb-category-bar button.is-active {
    color: var(--xb-ink);
}

.xb-category-bar button.is-active::after {
    transform: scaleX(1);
}

.xb-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 34px;
}

.xb-post-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
}

.xb-post-card[hidden],
.xb-featured-post[hidden] {
    display: none !important;
}

.xb-post-card-media {
    aspect-ratio: 4 / 3;
    margin-bottom: 22px;
    border-radius: 5px;
}

.xb-post-card h2 {
    margin: 0 0 12px;
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-size: clamp(23px, 2.1vw, 30px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    transition: color .18s ease;
}

.xb-post-card:hover h2,
.xb-featured-copy a:hover h1 {
    color: #5e5a54;
}

.xb-post-card p {
    display: -webkit-box;
    margin: 0 0 24px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--xb-muted);
    font-size: 15px;
    line-height: 1.65;
}

.xb-post-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(221, 216, 207, .72);
}

.xb-subscribe-section {
    padding: clamp(70px, 8vw, 96px) 0;
    background: var(--xb-dark);
    color: var(--xb-bg);
    text-align: center;
}

.xb-subscribe-inner {
    max-width: 820px;
}

.xb-subscribe-inner h2 {
    margin: 0 auto 18px;
    color: var(--xb-bg);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.xb-subscribe-inner p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(251, 250, 247, .74);
    font-size: 18px;
    line-height: 1.65;
}

.xb-subscribe-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 4px;
    background: var(--xb-bg);
    color: var(--xb-dark);
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.xb-subscribe-inner a:hover {
    background: #fff;
    color: var(--xb-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.xb-reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    height: 4px;
    pointer-events: none;
}

.xb-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--xb-ink);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.xb-post-article {
    padding-bottom: 0;
    background: var(--xb-bg);
}

.xb-article-header {
    padding: clamp(112px, 10vw, 148px) 0 42px;
}

.xb-article-header-inner {
    max-width: 820px;
}

.xb-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--xb-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease;
}

.xb-back-link:hover {
    color: var(--xb-ink);
    text-decoration: none;
}

.xb-back-link i {
    transition: transform .18s ease;
}

.xb-back-link:hover i {
    transform: translateX(-3px);
}

.xb-article-header h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 1.04;
}

.xb-article-header > .xb-blog-container > p {
    margin: 0 0 36px;
    color: var(--xb-muted);
    font-family: var(--xb-serif) !important;
    font-size: clamp(21px, 2.2vw, 29px);
    font-style: italic;
    line-height: 1.42;
}

.xb-article-author {
    padding: 20px 0;
    border-top: 1px solid var(--xb-border);
    border-bottom: 1px solid var(--xb-border);
}

.xb-article-read-time {
    margin-left: auto;
    color: var(--xb-muted);
    font-size: 14px;
    font-weight: 700;
}

.xb-article-hero-media {
    aspect-ratio: 16 / 9;
    max-width: 1120px;
    margin-bottom: clamp(54px, 6vw, 78px);
    border-radius: 12px;
}

.xb-article-layout {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 760px);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
    justify-content: center;
    padding-bottom: clamp(76px, 8vw, 112px);
}

.xb-article-toc {
    position: sticky;
    top: 104px;
    padding-top: 4px;
}

.xb-article-toc strong {
    display: block;
    margin-bottom: 14px;
    color: var(--xb-ink);
    font-family: var(--xb-sans) !important;
    font-size: 14px;
    font-weight: 800;
}

.xb-article-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--xb-border);
    color: var(--xb-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color .18s ease, padding-left .18s ease;
}

.xb-article-toc a:hover {
    color: var(--xb-ink);
    padding-left: 4px;
    text-decoration: none;
}

.xb-article-body {
    max-width: 760px;
    color: var(--xb-ink);
    font-family: var(--xb-sans) !important;
    font-size: clamp(18px, 1.55vw, 21px);
    line-height: 1.78;
    overflow-wrap: anywhere;
}

.xb-article-body .blog-intro {
    margin: 0 0 32px;
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-size: clamp(23px, 2.2vw, 30px);
    line-height: 1.5;
}

.xb-article-body h2 {
    margin: 52px 0 18px;
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 700;
    line-height: 1.16;
}

.xb-article-body p {
    margin: 0 0 28px;
    color: rgba(29, 29, 34, .9);
}

.xb-article-body ul {
    margin: 0 0 30px;
    padding-left: 0;
    list-style: none;
}

.xb-article-body li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 25px;
    color: rgba(29, 29, 34, .9);
}

.xb-article-body li::before {
    position: absolute;
    left: 0;
    top: .76em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--xb-ink);
    content: "";
}

.xb-article-body pre {
    width: 100%;
    max-width: 100%;
    margin: 34px 0;
    padding: 24px;
    overflow-x: auto;
    border-radius: 8px;
    background: #24242a;
    color: #f6f3ec;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
}

.xb-article-body pre code {
    display: block;
    min-width: max-content;
}

.xb-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 58px;
    padding-top: 26px;
    border-top: 1px solid var(--xb-border);
    font-size: 15px;
}

.xb-share-row strong {
    color: var(--xb-ink);
}

.xb-share-row a {
    color: var(--xb-muted);
    font-weight: 700;
    text-decoration: none;
}

.xb-share-row a:hover {
    color: var(--xb-ink);
}

.xb-related-section {
    padding: clamp(66px, 7vw, 92px) 0;
    border-top: 1px solid var(--xb-border);
    background: rgba(240, 237, 231, .45);
}

.xb-related-section h2 {
    margin: 0 0 34px;
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 700;
    text-align: center;
}

.xb-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    max-width: 980px;
    margin: 0 auto;
}

.xb-related-card {
    display: block;
    min-width: 0;
}

.xb-related-card:hover {
    color: inherit;
    text-decoration: none;
}

.xb-related-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 8px;
}

.xb-related-card strong {
    display: block;
    margin: 0 0 9px;
    color: var(--xb-ink);
    font-family: var(--xb-serif) !important;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.18;
}

.xb-related-card em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--xb-muted);
    font-style: normal;
    font-size: 15px;
    line-height: 1.62;
}

@media (max-width: 1024px) {
    .xb-featured-post,
    .xb-article-layout {
        grid-template-columns: 1fr;
    }

    .xb-featured-media {
        order: 1;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .xb-featured-copy {
        order: 2;
    }

    .xb-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xb-article-toc {
        position: static;
        display: none;
    }

    .xb-article-body {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .xb-blog-container {
        width: min(100% - 30px, 1180px);
    }

    .xb-blog-home {
        padding-top: 104px;
        padding-bottom: 70px;
    }

    .xb-featured-post {
        gap: 28px;
        margin-bottom: 54px;
    }

    .xb-featured-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .xb-featured-copy p {
        font-size: 16px;
    }

    .xb-category-bar {
        gap: 22px;
        margin-bottom: 38px;
    }

    .xb-post-grid,
    .xb-related-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .xb-article-header {
        padding-top: 104px;
        padding-bottom: 32px;
    }

    .xb-article-header h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .xb-article-header > .xb-blog-container > p {
        font-size: 20px;
    }

    .xb-article-author {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .xb-article-read-time {
        width: 100%;
        margin-left: 54px;
    }

    .xb-article-hero-media {
        aspect-ratio: 4 / 3;
        margin-bottom: 48px;
        border-radius: 8px;
    }

    .xb-article-layout {
        padding-bottom: 70px;
    }

    .xb-article-body {
        font-size: 16px;
        line-height: 1.72;
    }

    .xb-article-body .blog-intro {
        font-size: 20px;
    }

    .xb-article-body h2 {
        margin-top: 42px;
        font-size: clamp(27px, 8vw, 34px);
    }

    .xb-article-body pre {
        padding: 18px;
        font-size: 13px;
    }

    .xb-subscribe-inner p {
        font-size: 16px;
    }
}

/* Source module 15 */
/* X-TechWork Blog-Design responsive order correction */
.xb-blog-article-page .xb-post-article {
    display: flex;
    flex-direction: column;
}

.xb-blog-article-page .xb-article-header {
    order: 1;
}

.xb-blog-article-page .xb-article-hero-media {
    order: 2;
}

.xb-blog-article-page .xb-article-layout {
    order: 3;
}

@media (max-width: 1024px) {
    .xb-featured-post {
        grid-template-columns: 1fr;
    }

    .xb-featured-copy {
        order: 1 !important;
    }

    .xb-featured-media {
        order: 2 !important;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 720px) {
    .xb-featured-media {
        aspect-ratio: 4 / 3;
    }
}

/* Source module 16 */
/* X-TechWork Blog reference responsive match */
.xb-blog-article-page .xb-blog-container {
    width: min(1440px, calc(100% - 120px));
}

.xb-blog-article-page .xb-article-header-inner {
    max-width: 1440px;
}

.xb-blog-article-page .xb-article-header {
    padding-top: clamp(110px, 8vw, 136px);
    padding-bottom: 44px;
}

.xb-blog-article-page .xb-article-header h1 {
    max-width: 1380px;
    color: #66656f;
    font-size: clamp(54px, 5.25vw, 84px);
    line-height: 1.08;
}

.xb-blog-article-page .xb-article-header > .xb-blog-container > p {
    max-width: 1320px;
    color: #66656f;
    font-family: var(--xb-sans) !important;
    font-size: clamp(25px, 2.2vw, 38px);
    font-style: normal;
    line-height: 1.52;
}

.xb-blog-article-page .xb-article-author {
    max-width: 720px;
    border: 0;
    padding-top: 30px;
    padding-bottom: 0;
}

.xb-blog-article-page .xb-article-hero-media {
    width: min(1440px, calc(100% - 120px));
    max-width: 1440px;
    margin-top: 34px;
    margin-bottom: clamp(58px, 6vw, 84px);
    border-radius: 6px;
}

.xb-featured-post {
    align-items: center;
}

@media (min-width: 1025px) {
    .xb-featured-media {
        order: 1 !important;
    }

    .xb-featured-copy {
        order: 2 !important;
    }
}

@media (max-width: 1024px) {
    .xb-featured-copy {
        order: 1 !important;
    }

    .xb-featured-media {
        order: 2 !important;
    }
}

@media (max-width: 900px) {
    .xb-blog-article-page .xb-blog-container,
    .xb-blog-article-page .xb-article-hero-media {
        width: min(100% - 54px, 1440px);
    }

    .xb-blog-article-page .xb-article-header h1 {
        font-size: clamp(43px, 7.2vw, 62px);
    }

    .xb-blog-article-page .xb-article-header > .xb-blog-container > p {
        font-size: clamp(22px, 4vw, 32px);
    }
}

@media (max-width: 640px) {
    .xb-blog-article-page .xb-blog-container,
    .xb-blog-article-page .xb-article-hero-media {
        width: min(100% - 30px, 1440px);
    }

    .xb-blog-article-page .xb-article-header {
        padding-top: 98px;
    }

    .xb-blog-article-page .xb-article-header h1 {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .xb-blog-article-page .xb-article-header > .xb-blog-container > p {
        font-size: 20px;
        line-height: 1.55;
    }
}

/* Source module 17 */
/* X-TechWork Blog landing exact responsive match */
.xb-blog-page:not(.xb-blog-article-page) .xb-blog-home {
    padding: 112px 0 96px;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-blog-container {
    width: min(1488px, calc(100% - 80px));
}

.xb-blog-page:not(.xb-blog-article-page) .xb-featured-post {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-featured-media {
    order: 1 !important;
    height: 500px;
    aspect-ratio: auto;
    border-radius: 8px;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy {
    order: 2 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #66656f;
    font-size: clamp(36px, 4.1vw, 72px);
    line-height: 1.08;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy p {
    display: -webkit-box;
    max-width: 720px;
    margin: 0 0 32px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #66656f;
    font-size: 18px;
    line-height: 1.62;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-post-category {
    margin-bottom: 16px;
    color: #66656f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-author-line {
    gap: 16px;
    margin-top: auto;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-author-avatar {
    width: 40px;
    height: 40px;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-author-line strong {
    font-size: 14px;
}

.xb-blog-page:not(.xb-blog-article-page) .xb-author-line em {
    font-size: 12px;
}

@media (max-width: 1536px) {
    .xb-blog-page:not(.xb-blog-article-page) .xb-blog-container {
        width: min(100% - 110px, 1488px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-post {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 56px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy {
        order: 1 !important;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-media {
        order: 2 !important;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 7.8;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy h1 {
        max-width: 1280px;
        font-size: clamp(58px, 6vw, 84px);
        line-height: 1.07;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy p {
        max-width: 1280px;
        font-size: clamp(30px, 3vw, 42px);
        line-height: 1.52;
        -webkit-line-clamp: 2;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-line {
        margin-top: 36px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-avatar {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-line strong {
        font-size: 28px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-line em {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .xb-blog-page:not(.xb-blog-article-page) .xb-blog-container {
        width: min(100% - 54px, 1488px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-post {
        gap: 44px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy h1 {
        font-size: clamp(42px, 7.5vw, 64px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy p {
        font-size: clamp(22px, 4.2vw, 34px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-media {
        aspect-ratio: 16 / 8.5;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-avatar {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-line strong {
        font-size: 20px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-author-line em {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .xb-blog-page:not(.xb-blog-article-page) .xb-blog-container {
        width: min(100% - 30px, 1488px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-blog-home {
        padding-top: 96px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy h1 {
        font-size: clamp(34px, 10.4vw, 46px);
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-copy p {
        font-size: 20px;
    }

    .xb-blog-page:not(.xb-blog-article-page) .xb-featured-media {
        aspect-ratio: 4 / 3;
    }
}

/* Source module 18 */
/* Blog-Design exact Laravel port */
.bd-blog-page {
    --bd-bg: #fbfaf7;
    --bd-ink: #1d1d22;
    --bd-muted: #66656f;
    --bd-border: #ded9d0;
    --bd-soft: #eeeae2;
    --bd-sans: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
    --bd-serif: "Playfair Display", Georgia, serif;
    background: var(--bd-bg);
    color: var(--bd-ink);
    font-family: var(--bd-sans) !important;
}

.bd-blog-container {
    width: min(1536px, calc(100% - 80px));
    margin: 0 auto;
}

.bd-blog-shell {
    padding: 104px 0 96px;
    background: var(--bd-bg);
}

.bd-featured-story {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 5.5vw, 88px);
    margin-bottom: 80px;
}

.bd-featured-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bd-category {
    display: block;
    margin-bottom: 28px;
    color: var(--bd-muted);
    font-family: var(--bd-sans) !important;
    font-size: clamp(18px, 1.25vw, 26px);
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bd-featured-copy a,
.bd-post-copy,
.bd-related-card,
.bd-back-link {
    color: inherit;
    text-decoration: none;
}

.bd-featured-copy h1,
.bd-article-header h1,
.bd-subscribe h2,
.bd-related h2,
.bd-post-card h2,
.bd-related-card strong,
.bd-article-body h2 {
    font-family: var(--bd-serif) !important;
    letter-spacing: 0;
}

.bd-featured-copy h1 {
    max-width: 1420px;
    margin: 0 0 32px;
    color: var(--bd-muted);
    font-size: clamp(62px, 6.35vw, 124px);
    font-weight: 700;
    line-height: .96;
}

.bd-featured-copy p {
    max-width: 1480px;
    margin: 0;
    color: var(--bd-muted);
    font-family: var(--bd-sans) !important;
    font-size: clamp(32px, 2.9vw, 52px);
    font-weight: 400;
    line-height: 1.48;
}

.bd-featured-author {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: clamp(70px, 7vw, 118px);
}

.bd-author-main {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 24px;
}

.bd-avatar {
    display: grid;
    width: clamp(64px, 4.6vw, 84px);
    height: clamp(64px, 4.6vw, 84px);
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--bd-ink);
    color: var(--bd-bg);
    font-family: var(--bd-sans) !important;
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 800;
}

.bd-author-main strong,
.bd-card-author strong {
    display: block;
    color: var(--bd-ink);
    font-family: var(--bd-sans) !important;
    font-size: clamp(22px, 1.65vw, 32px);
    font-weight: 800;
    line-height: 1.25;
}

.bd-author-main em,
.bd-card-author em {
    display: block;
    color: var(--bd-muted);
    font-family: var(--bd-sans) !important;
    font-size: clamp(18px, 1.35vw, 26px);
    font-style: normal;
    line-height: 1.35;
}

.bd-read-time {
    color: #66625d;
    font-family: var(--bd-sans) !important;
    font-size: clamp(22px, 1.65vw, 32px);
    font-weight: 800;
    white-space: nowrap;
}

.bd-featured-image,
.bd-post-image,
.bd-related-image,
.bd-article-image {
    display: block;
    overflow: hidden;
    background: var(--bd-soft);
}

.bd-featured-image {
    width: 100%;
    aspect-ratio: 16 / 4.9;
    border-radius: 8px;
}

.bd-featured-image img,
.bd-post-image img,
.bd-related-image img,
.bd-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.bd-featured-story:hover .bd-featured-image img,
.bd-post-card:hover .bd-post-image img,
.bd-related-card:hover .bd-related-image img {
    transform: scale(1.045);
}

.bd-filter-bar {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    margin-bottom: 64px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bd-border);
    scrollbar-width: none;
}

.bd-filter-bar::-webkit-scrollbar {
    display: none;
}

.bd-filter-bar button {
    position: relative;
    flex: 0 0 auto;
    padding: 0 4px 10px;
    border: 0;
    background: transparent;
    color: var(--bd-muted);
    font-family: var(--bd-sans) !important;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.bd-filter-bar button::after {
    position: absolute;
    right: 0;
    bottom: -17px;
    left: 0;
    height: 2px;
    background: var(--bd-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    content: "";
}

.bd-filter-bar button.is-active,
.bd-filter-bar button:hover {
    color: var(--bd-ink);
}

.bd-filter-bar button.is-active::after {
    transform: scaleX(1);
}

.bd-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 32px;
}

.bd-post-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.bd-post-card[hidden] {
    display: none !important;
}

.bd-post-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    border-radius: 6px;
}

.bd-post-card .bd-category {
    margin-bottom: 12px;
    font-size: 11px;
}

.bd-post-card h2 {
    margin: 0 0 12px;
    color: var(--bd-ink);
    font-size: clamp(22px, 1.75vw, 30px);
    font-weight: 700;
    line-height: 1.15;
}

.bd-post-card p {
    display: -webkit-box;
    margin: 0 0 24px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--bd-muted);
    font-family: var(--bd-sans) !important;
    font-size: 15px;
    line-height: 1.65;
}

.bd-card-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(222, 217, 208, .74);
}

.bd-avatar-small {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.bd-card-author strong {
    font-size: 14px;
}

.bd-card-author em {
    font-size: 12px;
}

.bd-subscribe {
    padding: clamp(72px, 8vw, 104px) 0;
    background: var(--bd-ink);
    color: var(--bd-bg);
    text-align: center;
}

.bd-subscribe-inner {
    max-width: 900px;
}

.bd-subscribe h2 {
    margin: 0 auto 18px;
    color: var(--bd-bg);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
}

.bd-subscribe p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(251, 250, 247, .78);
    font-size: 18px;
    line-height: 1.65;
}

.bd-subscribe a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 4px;
    background: var(--bd-bg);
    color: var(--bd-ink);
    font-weight: 800;
    text-decoration: none;
}

.bd-reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 90;
    height: 4px;
    pointer-events: none;
}

.bd-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bd-ink);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.bd-article-header {
    padding: 108px 0 38px;
}

.bd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--bd-muted);
    font-weight: 700;
}

.bd-article-header h1 {
    max-width: 1420px;
    margin: 0 0 32px;
    color: var(--bd-muted);
    font-size: clamp(54px, 5.8vw, 108px);
    font-weight: 700;
    line-height: 1.02;
}

.bd-article-header p {
    max-width: 1420px;
    margin: 0;
    color: var(--bd-muted);
    font-size: clamp(26px, 2.55vw, 46px);
    line-height: 1.5;
}

.bd-article-author {
    margin-top: clamp(56px, 6vw, 96px);
}

.bd-article-image {
    aspect-ratio: 16 / 5.2;
    margin-top: 42px;
    margin-bottom: 74px;
    border-radius: 8px;
}

.bd-article-layout {
    display: grid;
    grid-template-columns: minmax(190px, 240px) minmax(0, 820px);
    gap: clamp(38px, 5vw, 84px);
    align-items: start;
    justify-content: center;
    padding-bottom: 104px;
}

.bd-toc {
    position: sticky;
    top: 104px;
}

.bd-toc strong {
    display: block;
    margin-bottom: 14px;
    color: var(--bd-ink);
    font-size: 14px;
    font-weight: 800;
}

.bd-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--bd-border);
    color: var(--bd-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.bd-article-body {
    max-width: 820px;
    color: rgba(29, 29, 34, .9);
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.78;
}

.bd-article-body .bd-intro {
    margin: 0 0 34px;
    color: var(--bd-ink);
    font-family: var(--bd-serif) !important;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.48;
}

.bd-article-body h2 {
    margin: 52px 0 18px;
    color: var(--bd-ink);
    font-size: clamp(31px, 3vw, 44px);
    line-height: 1.15;
}

.bd-article-body p {
    margin: 0 0 28px;
}

.bd-article-body ul {
    margin: 0 0 30px;
    padding-left: 0;
    list-style: none;
}

.bd-article-body li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 24px;
}

.bd-article-body li::before {
    position: absolute;
    left: 0;
    top: .76em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bd-ink);
    content: "";
}

.bd-article-body pre {
    width: 100%;
    max-width: 100%;
    margin: 34px 0;
    padding: 24px;
    overflow-x: auto;
    border-radius: 8px;
    background: #24242a;
    color: #f6f3ec;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre;
}

.bd-article-body pre code {
    display: block;
    min-width: max-content;
}

.bd-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 58px;
    padding-top: 26px;
    border-top: 1px solid var(--bd-border);
    font-size: 15px;
}

.bd-share-row a {
    color: var(--bd-muted);
    font-weight: 700;
    text-decoration: none;
}

.bd-related {
    padding: 78px 0 96px;
    border-top: 1px solid var(--bd-border);
    background: rgba(238, 234, 226, .5);
}

.bd-related h2 {
    margin: 0 0 40px;
    color: var(--bd-ink);
    font-size: clamp(32px, 3vw, 46px);
    text-align: center;
}

.bd-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1040px;
    margin: 0 auto;
}

.bd-related-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 8px;
}

.bd-related-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--bd-ink);
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.18;
}

.bd-related-card em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--bd-muted);
    font-style: normal;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .bd-blog-index-page .bd-featured-story {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 64px;
        align-items: center;
    }

    .bd-blog-index-page .bd-featured-image {
        order: 1;
        height: 500px;
        aspect-ratio: auto;
    }

    .bd-blog-index-page .bd-featured-copy {
        order: 2;
    }

    .bd-blog-index-page .bd-featured-copy h1 {
        max-width: 760px;
        font-size: clamp(36px, 4.1vw, 72px);
        line-height: 1.08;
    }

    .bd-blog-index-page .bd-featured-copy p {
        max-width: 720px;
        font-size: 18px;
        line-height: 1.62;
    }

    .bd-blog-index-page .bd-featured-author {
        display: flex;
        gap: 16px;
        margin-top: 0;
    }

    .bd-blog-index-page .bd-read-time {
        display: none;
    }

    .bd-blog-index-page .bd-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .bd-blog-index-page .bd-author-main strong {
        font-size: 14px;
    }

    .bd-blog-index-page .bd-author-main em {
        font-size: 12px;
    }
}

@media (max-width: 1023px) {
    .bd-blog-index-page .bd-featured-copy {
        order: 1;
    }

    .bd-blog-index-page .bd-featured-image {
        order: 2;
    }

    .bd-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bd-article-layout {
        grid-template-columns: 1fr;
    }

    .bd-toc {
        display: none;
    }
}

@media (max-width: 900px) {
    .bd-blog-container {
        width: min(100% - 54px, 1536px);
    }

    .bd-category {
        font-size: 16px;
    }

    .bd-featured-copy h1,
    .bd-article-header h1 {
        font-size: clamp(42px, 8vw, 68px);
    }

    .bd-featured-copy p,
    .bd-article-header p {
        font-size: clamp(22px, 4.2vw, 36px);
    }

    .bd-featured-image,
    .bd-article-image {
        aspect-ratio: 16 / 8.5;
    }

    .bd-avatar {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .bd-author-main strong,
    .bd-read-time {
        font-size: 20px;
    }

    .bd-author-main em {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .bd-blog-container {
        width: min(100% - 30px, 1536px);
    }

    .bd-blog-shell,
    .bd-article-header {
        padding-top: 96px;
    }

    .bd-featured-copy h1,
    .bd-article-header h1 {
        font-size: clamp(34px, 10.2vw, 46px);
    }

    .bd-featured-copy p,
    .bd-article-header p {
        font-size: 20px;
    }

    .bd-featured-author,
    .bd-article-author {
        grid-template-columns: 1fr;
        margin-top: 46px;
    }

    .bd-read-time {
        margin-left: 82px;
    }

    .bd-featured-image,
    .bd-article-image {
        aspect-ratio: 4 / 3;
    }

    .bd-post-grid,
    .bd-related-grid {
        grid-template-columns: 1fr;
    }

    .bd-article-body {
        font-size: 16px;
        line-height: 1.72;
    }
}

/* Source module 19 */
/* Blog-Design source exact port */
.og-blog-page {
    --og-background: #fbfaf7;
    --og-foreground: #1f1f24;
    --og-muted: #66656f;
    --og-border: #ddd8cf;
    --og-primary: #1f1f24;
    --og-font-sans: Inter, sans-serif;
    --og-font-serif: "Playfair Display", Georgia, serif;
    background: var(--og-background);
    color: var(--og-foreground);
    font-family: var(--og-font-sans) !important;
}

.og-container {
    width: min(1280px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.og-page-wrap {
    padding-top: 104px;
    padding-bottom: 96px;
    background: var(--og-background);
}

.og-featured-section {
    margin-bottom: 80px;
}

.og-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.og-featured-media {
    position: relative;
    order: 2;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #eeeae2;
}

.og-featured-copy {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.og-featured-media img,
.og-post-media img,
.og-article-image img,
.og-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.og-featured-card:hover .og-featured-media img,
.og-post-card:hover .og-post-media img,
.og-related-card:hover .og-related-image img {
    transform: scale(1.05);
}

.og-category {
    display: block;
    margin-bottom: 16px;
    color: var(--og-muted);
    font-family: var(--og-font-sans) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.og-featured-copy a,
.og-post-copy,
.og-back-link,
.og-related-card {
    color: inherit;
    text-decoration: none;
}

.og-featured-copy h2 {
    margin: 0 0 16px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.og-featured-copy p {
    display: -webkit-box;
    margin: 0 0 32px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--og-muted);
    font-family: var(--og-font-sans) !important;
    font-size: 18px;
    line-height: 1.625;
}

.og-author-row,
.og-card-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.og-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--og-primary);
    color: var(--og-background);
    font-family: var(--og-font-sans) !important;
    font-size: 16px;
    font-weight: 800;
}

.og-author-row strong,
.og-card-author strong {
    display: block;
    margin: 0;
    color: var(--og-foreground);
    font-family: var(--og-font-sans) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.og-author-row em,
.og-card-author em {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    color: var(--og-muted);
    font-family: var(--og-font-sans) !important;
    font-size: 12px;
    font-style: normal;
    line-height: 1.35;
}

.og-filter-section {
    margin-bottom: 48px;
    border-bottom: 1px solid var(--og-border);
}

.og-filter-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.og-filter-row::-webkit-scrollbar {
    display: none;
}

.og-filter-row button {
    position: relative;
    flex: 0 0 auto;
    padding: 0 4px 8px;
    border: 0;
    background: transparent;
    color: var(--og-muted);
    font-family: var(--og-font-sans) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .025em;
    white-space: nowrap;
    cursor: pointer;
    transition: color .18s ease;
}

.og-filter-row button::after {
    position: absolute;
    right: 0;
    bottom: -17px;
    left: 0;
    height: 2px;
    background: var(--og-foreground);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    content: "";
}

.og-filter-row button.is-active,
.og-filter-row button:hover {
    color: var(--og-foreground);
}

.og-filter-row button.is-active::after {
    transform: scaleX(1);
}

.og-grid-section {
    margin-bottom: 96px;
}

.og-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px 32px;
}

.og-post-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
}

.og-post-card[hidden] {
    display: none !important;
}

.og-post-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #eeeae2;
}

.og-card-category {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.og-post-copy {
    display: block;
    flex: 1;
}

.og-post-copy h3 {
    margin: 0 0 12px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.375;
}

.og-post-copy p {
    display: -webkit-box;
    margin: 0 0 24px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--og-muted);
    font-family: var(--og-font-sans) !important;
    font-size: 14px;
    line-height: 1.625;
}

.og-card-author {
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(221, 216, 207, .5);
}

.og-avatar-small {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.og-subscribe {
    padding: 80px 0;
    background: var(--og-primary);
    color: var(--og-background);
}

.og-subscribe-inner {
    max-width: 896px;
    text-align: center;
}

.og-subscribe h2 {
    margin: 0 0 24px;
    color: var(--og-background);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
}

.og-subscribe p {
    max-width: 672px;
    margin: 0 auto 40px;
    color: rgba(251, 250, 247, .8);
    font-family: var(--og-font-sans) !important;
    font-size: 18px;
    line-height: 1.625;
}

.og-subscribe-form {
    display: flex;
    max-width: 448px;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.og-subscribe-form input {
    min-height: 48px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 12px 16px;
    outline: none;
}

.og-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.og-subscribe-form button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: var(--og-primary);
    padding: 12px 24px;
    font-weight: 500;
    white-space: nowrap;
}

.og-reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 90;
    height: 4px;
    pointer-events: none;
}

.og-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--og-foreground);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.og-article {
    padding-bottom: 96px;
}

.og-article-header {
    padding-top: 112px;
    padding-bottom: 40px;
}

.og-article-head-container {
    max-width: 896px;
}

.og-back-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 500;
}

.og-article-category {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.og-article-header h1 {
    margin: 0 0 24px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
}

.og-article-header h2 {
    margin: 0 0 40px;
    color: var(--og-muted);
    font-family: var(--og-font-serif) !important;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.625;
}

.og-article-author-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--og-border);
    border-bottom: 1px solid var(--og-border);
}

.og-article-avatar {
    width: 48px;
    height: 48px;
}

.og-article-meta {
    margin-left: auto;
    color: var(--og-muted);
    font-size: 14px;
    text-align: right;
}

.og-article-meta span {
    display: block;
}

.og-article-image-container {
    max-width: 1152px;
    margin-bottom: 64px;
}

.og-article-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #eeeae2;
}

.og-article-content-grid {
    display: grid;
    max-width: 1080px;
    grid-template-columns: 220px minmax(0, 768px);
    gap: 48px;
    align-items: start;
}

.og-toc {
    position: sticky;
    top: 104px;
}

.og-toc strong {
    display: block;
    margin-bottom: 14px;
    color: var(--og-foreground);
    font-size: 14px;
    font-weight: 700;
}

.og-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--og-border);
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.og-prose {
    max-width: 768px;
    color: rgba(31, 31, 36, .9);
    font-family: var(--og-font-sans) !important;
    font-size: 18px;
    line-height: 1.75;
}

.og-prose h2 {
    margin: 40px 0 16px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.22;
}

.og-prose p {
    margin: 0 0 26px;
}

.og-prose ul {
    margin: 0 0 28px;
    padding-left: 22px;
}

.og-prose li {
    margin-bottom: 10px;
}

.og-prose pre {
    max-width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 6px;
    background: #1f1f24;
    color: var(--og-background);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.og-prose pre code {
    display: block;
    min-width: max-content;
}

.og-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--og-border);
    font-size: 15px;
}

.og-share-row a {
    color: var(--og-muted);
    text-decoration: none;
}

.og-related-section {
    padding: 80px 0;
    border-top: 1px solid var(--og-border);
    background: rgba(238, 234, 226, .3);
}

.og-related-container {
    max-width: 1024px;
}

.og-related-section h3 {
    margin: 0 0 40px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.og-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.og-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #eeeae2;
}

.og-related-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 24px;
    line-height: 1.22;
}

.og-related-card em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--og-muted);
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .og-container {
        width: min(1280px, calc(100% - 48px));
    }

    .og-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .og-subscribe-form {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .og-page-wrap {
        padding-top: 128px;
    }

    .og-featured-copy h2 {
        font-size: 36px;
    }

    .og-post-copy h3 {
        font-size: 24px;
    }

    .og-subscribe h2 {
        font-size: 36px;
    }

    .og-article-header h1 {
        font-size: 48px;
    }

    .og-article-header h2 {
        font-size: 24px;
    }

    .og-prose {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .og-featured-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .og-featured-media {
        order: 1;
        height: 500px;
        aspect-ratio: auto;
    }

    .og-featured-copy {
        order: 2;
    }

    .og-featured-copy h2 {
        font-size: 48px;
    }

    .og-post-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .og-subscribe {
        padding: 96px 0;
    }

    .og-subscribe h2 {
        font-size: 48px;
    }

    .og-article-header h1 {
        font-size: 60px;
    }

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

@media (max-width: 900px) {
    .og-article-content-grid {
        grid-template-columns: 1fr;
        max-width: 768px;
    }

    .og-toc {
        display: none;
    }
}

@media (max-width: 575px) {
    .og-article-author-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .og-article-meta {
        width: 100%;
        margin-left: 64px;
        text-align: left;
    }
}

/* Source module 20 */
/* Blog-Design source container lock */
.og-blog-page .og-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.og-blog-page .og-featured-card {
    gap: 32px;
}

@media (min-width: 640px) {
    .og-blog-page .og-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .og-blog-page .og-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .og-blog-page .og-featured-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .og-blog-page .og-featured-media {
        aspect-ratio: auto;
        height: 500px;
    }
}

/* Source module 21 */
/* Blog-Design source article width lock */
.og-blog-page .og-article-head-container {
    max-width: 896px;
}

.og-blog-page .og-article-image-container {
    max-width: 1152px;
}

.og-blog-page .og-article-content-grid {
    max-width: 1080px;
}

.og-blog-page .og-related-container {
    max-width: 1024px;
}

.og-blog-page .og-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .og-blog-page .og-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .og-blog-page .og-related-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Source module 22 */
/* Blog-Design exact source parity lock */
.og-blog-page {
    --og-background: hsl(40 33% 98%);
    --og-foreground: hsl(240 10% 12%);
    --og-border: hsl(40 15% 85%);
    --og-muted: hsl(240 5% 40%);
    --og-primary: hsl(240 10% 12%);
    --og-primary-foreground: hsl(40 33% 98%);
    --og-font-sans: 'Inter', sans-serif;
    --og-font-serif: 'Playfair Display', Georgia, serif;
    background: var(--og-background);
    color: var(--og-foreground);
    font-family: var(--og-font-sans) !important;
}

.og-blog-page .og-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.og-blog-page .og-page-wrap {
    padding-top: 40px;
    padding-bottom: 64px;
    background: var(--og-background);
}

.og-blog-page .og-featured-section {
    margin-bottom: 80px;
}

.og-blog-page .og-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.og-blog-page .og-featured-media {
    display: block;
    position: relative;
    order: 2;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.og-blog-page .og-featured-media img,
.og-blog-page .og-post-media img,
.og-blog-page .og-related-image img,
.og-blog-page .og-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease-out;
}

.og-blog-page .og-featured-card:hover .og-featured-media img,
.og-blog-page .og-post-card:hover .og-post-media img,
.og-blog-page .og-related-card:hover .og-related-image img {
    transform: scale(1.05);
}

.og-blog-page .og-featured-copy {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.og-blog-page .og-category {
    display: block;
    margin-bottom: 16px;
    color: var(--og-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.og-blog-page .og-featured-copy a,
.og-blog-page .og-post-copy,
.og-blog-page .og-related-card {
    color: inherit;
    text-decoration: none;
}

.og-blog-page .og-featured-copy h2 {
    margin: 0 0 16px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}

.og-blog-page .og-featured-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 32px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--og-muted);
    font-size: 18px;
    line-height: 1.625;
}

.og-blog-page .og-author-row,
.og-blog-page .og-card-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.og-blog-page .og-avatar {
    display: block;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 999px;
    object-fit: cover;
}

.og-blog-page .og-avatar-small {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.og-blog-page .og-author-row strong,
.og-blog-page .og-card-author strong {
    display: block;
    color: var(--og-foreground);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.og-blog-page .og-author-row em,
.og-blog-page .og-card-author em {
    display: block;
    color: var(--og-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.4;
}

.og-blog-page .og-filter-section {
    margin-bottom: 48px;
    border-bottom: 1px solid var(--og-border);
}

.og-blog-page .og-filter-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.og-blog-page .og-filter-row::-webkit-scrollbar {
    display: none;
}

.og-blog-page .og-filter-row button {
    position: relative;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--og-muted);
    padding: 0 4px 8px;
    font-family: var(--og-font-sans) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .025em;
    white-space: nowrap;
}

.og-blog-page .og-filter-row button.is-active {
    color: var(--og-foreground);
}

.og-blog-page .og-filter-row button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--og-foreground);
}

.og-blog-page .og-grid-section {
    margin-bottom: 96px;
}

.og-blog-page .og-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px 32px;
}

.og-blog-page .og-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.og-blog-page .og-post-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    border-radius: 6px;
}

.og-blog-page .og-card-category {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.og-blog-page .og-post-copy {
    display: block;
    flex: 1;
}

.og-blog-page .og-post-copy h3 {
    margin: 0 0 12px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.375;
}

.og-blog-page .og-post-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--og-muted);
    font-size: 14px;
    line-height: 1.625;
}

.og-blog-page .og-card-author {
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--og-border) 50%, transparent);
}

.og-blog-page .og-article {
    padding-bottom: 96px;
    background: var(--og-background);
}

.og-blog-page .og-article-header {
    padding-top: 48px;
    padding-bottom: 40px;
}

.og-blog-page .og-article-head-container {
    max-width: 896px;
}

.og-blog-page .og-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.og-blog-page .og-article-category {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.og-blog-page .og-article-header h1 {
    margin: 0 0 24px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
}

.og-blog-page .og-article-header h2 {
    margin: 0 0 40px;
    color: var(--og-muted);
    font-family: var(--og-font-serif) !important;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.625;
}

.og-blog-page .og-article-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--og-border);
    border-bottom: 1px solid var(--og-border);
}

.og-blog-page .og-article-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.og-blog-page .og-article-meta {
    margin-left: auto;
    color: var(--og-muted);
    font-size: 14px;
    line-height: 1.45;
    text-align: right;
}

.og-blog-page .og-article-meta span {
    display: block;
}

.og-blog-page .og-article-image-container {
    max-width: 1152px;
    margin-bottom: 64px;
}

.og-blog-page .og-article-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 12px;
}

.og-blog-page .og-article-content-grid {
    display: grid;
    max-width: 1080px;
    grid-template-columns: 220px minmax(0, 768px);
    gap: 48px;
    align-items: start;
}

.og-blog-page .og-toc {
    position: sticky;
    top: 104px;
}

.og-blog-page .og-toc strong {
    display: block;
    margin-bottom: 14px;
    color: var(--og-foreground);
    font-size: 14px;
    font-weight: 700;
}

.og-blog-page .og-toc a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--og-border);
    color: var(--og-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.og-blog-page .og-prose {
    max-width: 768px;
    color: rgba(31, 31, 36, .9);
    font-family: var(--og-font-sans) !important;
    font-size: 18px;
    line-height: 1.75;
}

.og-blog-page .og-prose h2 {
    margin: 40px 0 16px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.22;
}

.og-blog-page .og-prose p {
    margin: 0 0 26px;
}

.og-blog-page .og-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--og-border);
    font-size: 15px;
}

.og-blog-page .og-related-section {
    padding: 80px 0;
    border-top: 1px solid var(--og-border);
    background: rgba(238, 234, 226, .3);
}

.og-blog-page .og-related-container {
    max-width: 1024px;
}

.og-blog-page .og-related-section h3 {
    margin: 0 0 40px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.og-blog-page .og-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.og-blog-page .og-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    border-radius: 8px;
}

.og-blog-page .og-related-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--og-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.22;
}

.og-blog-page .og-related-card em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--og-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
}

.og-blog-page .og-subscribe {
    padding: 80px 0;
    background: var(--og-primary);
    color: var(--og-primary-foreground);
}

.og-blog-page .og-subscribe-inner {
    max-width: 896px;
    text-align: center;
}

.og-blog-page .og-subscribe h2 {
    margin: 0 0 24px;
    color: var(--og-primary-foreground);
    font-family: var(--og-font-serif) !important;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.og-blog-page .og-subscribe p {
    max-width: 672px;
    margin: 0 auto 40px;
    color: rgba(250, 249, 247, .8);
    font-size: 18px;
    line-height: 1.625;
}

.og-blog-page .og-subscribe-form {
    display: flex;
    max-width: 448px;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.og-blog-page .og-subscribe-form input {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    color: var(--og-primary-foreground);
    padding: 12px 16px;
    font: inherit;
}

.og-blog-page .og-subscribe-form button {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: var(--og-primary);
    padding: 12px 24px;
    font: inherit;
    font-weight: 500;
}

@media (min-width: 640px) {
    .og-blog-page .og-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .og-blog-page .og-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .og-blog-page .og-subscribe-form {
        flex-direction: row;
    }

    .og-blog-page .og-subscribe-form input {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .og-blog-page .og-page-wrap {
        padding-top: 64px;
    }

    .og-blog-page .og-featured-copy h2 {
        font-size: 36px;
    }

    .og-blog-page .og-post-copy h3 {
        font-size: 24px;
    }

    .og-blog-page .og-article-header h1 {
        font-size: 48px;
    }

    .og-blog-page .og-article-header h2 {
        font-size: 24px;
    }

    .og-blog-page .og-prose {
        font-size: 20px;
    }

    .og-blog-page .og-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .og-blog-page .og-subscribe h2 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .og-blog-page .og-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .og-blog-page .og-featured-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .og-blog-page .og-featured-media {
        order: 1;
        aspect-ratio: auto;
        height: 500px;
    }

    .og-blog-page .og-featured-copy {
        order: 2;
    }

    .og-blog-page .og-featured-copy h2 {
        font-size: 48px;
    }

    .og-blog-page .og-post-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .og-blog-page .og-article-header h1 {
        font-size: 60px;
    }

    .og-blog-page .og-subscribe {
        padding: 96px 0;
    }

    .og-blog-page .og-subscribe h2 {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .og-blog-page .og-article-content-grid {
        grid-template-columns: 1fr;
        max-width: 768px;
    }

    .og-blog-page .og-toc {
        display: none;
    }
}

@media (max-width: 575px) {
    .og-blog-page .og-article-author-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .og-blog-page .og-article-meta {
        width: 100%;
        margin-left: 64px;
        text-align: left;
    }
}

/* Source module 23 */
/* Blog content under main XTech header */
body.og-blog-page {
    background: hsl(40 33% 98%) !important;
}

body.og-blog-page main {
    background: hsl(40 33% 98%) !important;
}

body.og-blog-page .og-page-wrap {
    padding-top: 120px !important;
}

body.og-blog-page .og-article-header {
    padding-top: 128px !important;
}

@media (min-width: 768px) {
    body.og-blog-page .og-page-wrap {
        padding-top: 144px !important;
    }

    body.og-blog-page .og-article-header {
        padding-top: 128px !important;
    }
}

/* Source module 24 */
/* LLM architecture blog replacement */
body.og-blog-page .og-page-wrap {
    padding-top: 140px !important;
}

body.og-blog-page .og-article-header {
    padding-top: 148px !important;
}

body.og-post-page .og-featured-media,
body.og-post-page .og-article-image {
    aspect-ratio: auto !important;
    height: auto !important;
    max-height: none !important;
    background: transparent !important;
}

body.og-post-page .og-featured-media img,
body.og-post-page .og-article-image img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    background: transparent !important;
}

body.og-blog-page .og-prose-figure {
    overflow: hidden;
    margin: 42px 0;
    border: 1px solid rgba(221, 216, 207, .62);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(31, 31, 36, .06);
}

body.og-blog-page .og-prose-figure img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    background: #fff;
}

body.og-blog-page .og-prose-figure figcaption {
    margin: 0;
    border-top: 1px solid rgba(221, 216, 207, .72);
    background: rgba(255, 255, 255, .72);
    color: var(--og-muted);
    padding: 12px 16px;
    font-family: var(--og-font-sans) !important;
    font-size: 13px;
    line-height: 1.5;
}

body.og-blog-page .og-prose ul {
    margin: 0 0 30px;
    padding-left: 22px;
}

body.og-blog-page .og-prose li {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    body.og-blog-page .og-page-wrap {
        padding-top: 168px !important;
    }

    body.og-blog-page .og-article-header {
        padding-top: 152px !important;
    }
}

@media (max-width: 767.98px) {
    body.og-blog-page .og-page-wrap {
        padding-top: 124px !important;
    }

    body.og-blog-page .og-article-header {
        padding-top: 124px !important;
    }

    body.og-blog-page .og-prose-figure {
        margin: 32px 0;
        border-radius: 10px;
    }
}

/* Source module 25 */
/* Blog clean typography and active article navigation */
body.og-blog-page {
    --og-font-sans: var(--tech-font-clean, Roboto, "Helvetica Neue", Arial, sans-serif) !important;
    --og-font-serif: var(--tech-font-clean, Roboto, "Helvetica Neue", Arial, sans-serif) !important;
}

body.og-blog-page .og-featured-copy h2,
body.og-blog-page .og-post-copy h3,
body.og-blog-page .og-article-header h1,
body.og-blog-page .og-article-header h2,
body.og-blog-page .og-prose,
body.og-blog-page .og-prose h2,
body.og-blog-page .og-prose p,
body.og-blog-page .og-prose li,
body.og-blog-page .og-toc,
body.og-blog-page .og-toc a,
body.og-blog-page .og-related-section h3,
body.og-blog-page .og-related-card strong,
body.og-blog-page .og-subscribe h2 {
    font-family: var(--tech-font-clean, Roboto, "Helvetica Neue", Arial, sans-serif) !important;
    letter-spacing: 0 !important;
}

body.og-blog-page .og-article-header h1,
body.og-blog-page .og-prose h2,
body.og-blog-page .og-related-section h3,
body.og-blog-page .og-featured-copy h2,
body.og-blog-page .og-post-copy h3,
body.og-blog-page .og-related-card strong {
    font-weight: 500 !important;
}

body.og-blog-page .og-article-header h2,
body.og-blog-page .og-prose,
body.og-blog-page .og-prose p,
body.og-blog-page .og-prose li {
    font-style: normal !important;
    font-weight: 400 !important;
}

body.og-blog-page .og-prose h2 {
    scroll-margin-top: 132px;
}

body.og-blog-page .og-toc a {
    position: relative;
    border-radius: 8px;
    margin: 0 0 4px;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, padding-left .2s ease;
}

body.og-blog-page .og-toc a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: transparent;
    transition: background .2s ease;
}

body.og-blog-page .og-toc a.is-active,
body.og-blog-page .og-toc a[aria-current="true"] {
    color: #ffffff !important;
    border-bottom-color: transparent !important;
    background: #1f556d !important;
    box-shadow: 0 10px 24px rgba(31, 85, 109, .18), inset 0 0 0 1px rgba(255, 255, 255, .16);
    font-weight: 700 !important;
    padding-left: 20px;
    padding-right: 12px;
}

body.og-blog-page .og-toc a.is-active::before,
body.og-blog-page .og-toc a[aria-current="true"]::before {
    background: #f0b429;
}

/* Source module 26 */
/* Keep article-page Grafana/Prometheus assets fully visible inside their image boxes. */
body.og-post-page .og-featured-media img[src*="blog-grafana-prometheus"],
body.og-post-page .og-post-media img[src*="blog-grafana-prometheus"],
body.og-post-page .og-related-image img[src*="blog-grafana-prometheus"],
body.og-post-page .og-article-image img[src*="blog-grafana-prometheus"],
body.og-post-page .og-prose-figure img[src*="blog-grafana-prometheus"] {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
}

/* Source module 27 */
/* Keep article-page Play Framework assets fully visible inside their image boxes. */
body.og-post-page .og-featured-media img[src*="blog-play-framework"],
body.og-post-page .og-post-media img[src*="blog-play-framework"],
body.og-post-page .og-related-image img[src*="blog-play-framework"] {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
}

/* Source module 28 */
/* ZIO actors article: code samples use the same light container style as the provided reference. */
body.og-post-develop-event-driven-application-using-zio-actors .og-prose pre {
    background: #eef2f6 !important;
    color: #202532 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 32px !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

body.og-post-develop-event-driven-application-using-zio-actors .og-prose pre code {
    color: inherit !important;
}

body.og-post-page .og-featured-media img[src*="blog-zio-actors"],
body.og-post-page .og-post-media img[src*="blog-zio-actors"],
body.og-post-page .og-related-image img[src*="blog-zio-actors"],
body.og-post-page .og-article-image img[src*="blog-zio-actors"],
body.og-post-page .og-prose-figure img[src*="blog-zio-actors"] {
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
}

/* Source module 29 */
/* ZIO actors article mobile code fix only. */
@media (max-width: 767.98px) {
    body.og-post-develop-event-driven-application-using-zio-actors .og-prose pre {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 18px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
        box-sizing: border-box !important;
    }

    body.og-post-develop-event-driven-application-using-zio-actors .og-prose pre code {
        display: block !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }
}

/* Source module 30 */
/* Play Framework article mobile overflow fix only. */
@media (max-width: 767.98px) {
    body.og-post-play-framework-architecture-mvc-features-project-structure .og-article-content-grid,
    body.og-post-play-framework-architecture-mvc-features-project-structure .og-prose {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    body.og-post-play-framework-architecture-mvc-features-project-structure .og-prose pre {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        padding: 18px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
        box-sizing: border-box !important;
        white-space: pre-wrap !important;
    }

    body.og-post-play-framework-architecture-mvc-features-project-structure .og-prose pre code {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    body.og-post-play-framework-architecture-mvc-features-project-structure .og-prose-figure,
    body.og-post-play-framework-architecture-mvc-features-project-structure .og-prose-figure img {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Source module 31 */
/* Scoped mobile overflow containment for technical blogs 6-10. */
@media (max-width: 767.98px) {
    body.og-post-using-conditional-if-else-statements-in-a-makefile,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage,
    body.og-post-apache-parquet-file-structure-internal-architecture,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-article,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-container,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-article-content-grid,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-article,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-container,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-article-content-grid,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-article,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-container,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-article-content-grid,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-article,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-container,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-article-content-grid,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose p,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose li,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose h2,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose p,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose li,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose h2,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose p,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose li,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose h2,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose p,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose li,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose h2 {
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose-figure,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose table,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose-figure,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose table,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose-figure,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose table,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose-figure,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose table {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose table,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose table,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose table,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose-figure img,
    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-article-image img,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose-figure img,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-article-image img,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose-figure img,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-article-image img,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose-figure img,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-article-image img {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose pre,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose pre,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose pre,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose pre {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    body.og-post-using-conditional-if-else-statements-in-a-makefile .og-prose pre code,
    body.og-post-apache-parquet-explained-modern-data-engineering-storage .og-prose pre code,
    body.og-post-apache-parquet-file-structure-internal-architecture .og-prose pre code,
    body.og-post-apache-parquet-query-performance-predicate-pushdown-compression .og-prose pre code {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-article,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-container,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-article-content-grid,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose p,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose li,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose h2 {
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose-figure,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose table {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose-figure img,
    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-article-image img {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose pre {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    body.og-post-apache-parquet-complex-data-structures-statistics-page-indexes-bloom-filters .og-prose pre code {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-article,
    body.og-post-apache-parquet-writing-efficient-files-production .og-container,
    body.og-post-apache-parquet-writing-efficient-files-production .og-article-content-grid,
    body.og-post-apache-parquet-writing-efficient-files-production .og-prose {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose p,
    body.og-post-apache-parquet-writing-efficient-files-production .og-prose li,
    body.og-post-apache-parquet-writing-efficient-files-production .og-prose h2 {
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose-figure,
    body.og-post-apache-parquet-writing-efficient-files-production .og-prose table {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose-figure img,
    body.og-post-apache-parquet-writing-efficient-files-production .og-article-image img {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose pre {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    body.og-post-apache-parquet-writing-efficient-files-production .og-prose pre code {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: pre-wrap !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }
    body.og-post-apache-parquet-spark-processes-parquet-files {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-article,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-container,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-article-content-grid,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose p,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose li,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose h2 {
        max-width: 100%;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose-figure,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose table {
        display: block;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose-figure img,
    body.og-post-apache-parquet-spark-processes-parquet-files .og-article-image img {
        width: 100%;
        max-width: 100%;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose pre {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-apache-parquet-spark-processes-parquet-files .og-prose pre code {
        display: block;
        max-width: 100%;
        white-space: pre;
    }
    body.og-post-apache-parquet-modern-data-engineering-ecosystem {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-article,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-container,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-article-content-grid,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose p,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose li,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose h2 {
        max-width: 100%;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose-figure,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose table {
        display: block;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose-figure img,
    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-article-image img {
        width: 100%;
        max-width: 100%;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose pre {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-apache-parquet-modern-data-engineering-ecosystem .og-prose pre code {
        display: block;
        max-width: 100%;
        white-space: pre;
    }
    body.og-post-apache-parquet-best-practices-production {
        overflow-x: hidden;
        overflow-x: clip;
    }

    body.og-post-apache-parquet-best-practices-production .og-article,
    body.og-post-apache-parquet-best-practices-production .og-container,
    body.og-post-apache-parquet-best-practices-production .og-article-content-grid,
    body.og-post-apache-parquet-best-practices-production .og-prose {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose p,
    body.og-post-apache-parquet-best-practices-production .og-prose li,
    body.og-post-apache-parquet-best-practices-production .og-prose h2 {
        max-width: 100%;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose-figure,
    body.og-post-apache-parquet-best-practices-production .og-prose table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose table {
        display: block;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose-figure img,
    body.og-post-apache-parquet-best-practices-production .og-article-image img {
        width: 100%;
        max-width: 100%;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose pre {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
    }

    body.og-post-apache-parquet-best-practices-production .og-prose pre code {
        display: block;
        max-width: 100%;
        white-space: pre;
    }
}

/* Blog article table-of-contents active state migrated from the article Blade. */
body.og-post-page .og-toc [data-toc-link].is-active,
body.og-post-page .og-toc [data-toc-link][aria-current="true"] {
    background: #1f556d !important;
    color: #ffffff !important;
    border-bottom-color: transparent !important;
    box-shadow: 0 10px 24px rgba(31, 85, 109, .22), inset 4px 0 0 #f0b429 !important;
    font-weight: 800 !important;
    padding-left: 18px !important;
    padding-right: 12px !important;
}

/* Blog index page */
body.og-blog-index-page,
body.og-blog-index-page .og-page-wrap {
    background: #fff;
}

body.og-blog-index-page .og-page-wrap {
    padding-top: 0 !important;
}

body.og-blog-index-page main {
    padding-top: 0 !important;
    background: #fff !important;
}

body.og-blog-index-page .og-container {
    position: relative;
    width: min(1180px, calc(100% - 56px));
}

.og-blog-index-page .xw-blog-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: none;
    height: clamp(720px, 92vh, 980px);
    min-height: clamp(720px, 92vh, 980px);
    flex-direction: column;
    justify-content: center;
    margin: 0 0 58px;
    padding: 155px max(7vw, calc((100vw - 1240px) / 2)) 90px;
    box-sizing: border-box;
    background: linear-gradient(125deg, #07355b 0%, #0c78ad 58%, #87d7f4 130%);
}

.og-blog-index-page .xw-blog-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .36;
    background-image:
        linear-gradient(rgba(226,249,255,.33) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226,249,255,.33) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
    animation: xwBlogGridDrift 24s linear infinite;
    content: "";
}

.og-blog-index-page .xw-blog-hero h1 {
    position: relative;
    max-width: 850px;
    margin-bottom: 18px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(49px, 6.5vw, 91px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .92;
}

.og-blog-index-page .xw-blog-hero p {
    position: relative;
    max-width: 630px;
    color: rgba(234,249,255,.87);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.65;
}

.xw-blog-hero__paper {
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 245px;
    border: 1px solid rgba(222,248,255,.56);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(235,251,255,.38), rgba(255,255,255,.07));
    box-shadow: 0 24px 42px rgba(0,27,49,.18);
}

.xw-blog-hero__paper::before {
    position: absolute;
    inset: 37px 27px;
    background: repeating-linear-gradient(180deg, rgba(232,250,255,.83) 0 2px, transparent 2px 20px);
    content: "";
}

.xw-blog-hero__paper--one {
    top: 72px;
    right: 16%;
    transform: rotate(13deg);
    animation: xwBlogPaperOne 8s ease-in-out infinite;
}

.xw-blog-hero__paper--two {
    right: 4%;
    bottom: 18px;
    opacity: .66;
    transform: rotate(-12deg) scale(.8);
    animation: xwBlogPaperTwo 10s ease-in-out -3s infinite;
}

.xw-blog-hero__spark {
    position: absolute;
    z-index: -1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #b9efff;
    box-shadow: 0 0 22px #b9efff;
}

.xw-blog-hero__spark--one {
    top: 23%;
    right: 34%;
    animation: xwBlogSpark 4s ease-in-out infinite;
}

.xw-blog-hero__spark--two {
    right: 13%;
    bottom: 22%;
    animation: xwBlogSpark 4s ease-in-out -1.4s infinite;
}

.og-blog-index-page .og-featured-section,
.og-blog-index-page .og-grid-section {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
}

.og-blog-index-page .og-featured-card,
.og-blog-index-page .og-post-card {
    border: 1px solid #d8e8ef;
    background: #fff;
    box-shadow: 0 14px 34px rgba(14,81,113,.08);
}

.og-blog-index-page .og-featured-card {
    overflow: hidden;
    border-radius: 16px;
}

.og-blog-index-page .og-featured-copy h2,
.og-blog-index-page .og-post-card h3 {
    color: #0b354f;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -.04em;
}

.og-blog-index-page .og-category {
    color: #147caf;
}

.og-blog-index-page .og-featured-copy p,
.og-blog-index-page .og-post-card p,
.og-blog-index-page .og-card-author em,
.og-blog-index-page .og-author-row em {
    color: #617a89;
}

body.og-blog-index-page .og-grid-section {
    margin-bottom: 88px;
}

body.og-blog-index-page .og-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

body.og-blog-index-page .og-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 545px;
    border: 1px solid #d8e8ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(14,81,113,.08);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}

body.og-blog-index-page .og-post-card:hover {
    border-color: #7bcce8;
    transform: translateY(-7px);
    box-shadow: 0 24px 46px rgba(14,91,128,.15);
}

body.og-blog-index-page .og-post-media {
    display: block;
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #092136;
}

body.og-blog-index-page .og-post-media img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
}

body.og-blog-index-page .og-card-category,
body.og-blog-index-page .og-post-copy,
body.og-blog-index-page .og-card-author {
    margin-right: 24px;
    margin-left: 24px;
}

body.og-blog-index-page .og-card-category {
    margin-top: 22px;
    margin-bottom: 12px;
    color: #147caf;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.og-blog-index-page .og-post-copy h3 {
    color: #0b354f;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(23px, 1.75vw, 30px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.08;
}

body.og-blog-index-page .og-post-copy p {
    min-height: 74px;
    -webkit-line-clamp: 3;
    color: #617a89;
    font-size: 15px;
    line-height: 1.65;
}

body.og-blog-index-page .og-card-author {
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 20px;
    border-top: 1px solid #e2edf2;
}

@keyframes xwBlogGridDrift {
    to {
        background-position: 116px 116px;
    }
}

@keyframes xwBlogPaperOne {
    50% {
        transform: rotate(8deg) translate(-16px, 13px);
    }
}

@keyframes xwBlogPaperTwo {
    50% {
        transform: rotate(-6deg) translate(13px, -16px) scale(.8);
    }
}

@keyframes xwBlogSpark {
    50% {
        opacity: .4;
        transform: scale(1.7);
    }
}

@media (max-width: 1100px) {
    body.og-blog-index-page .og-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.og-blog-index-page .og-container {
        width: min(100% - 32px, 1180px);
    }

    .og-blog-index-page .xw-blog-hero {
        height: auto;
        min-height: auto;
        margin: 0 0 40px;
        padding: 128px 24px 72px;
    }

    .xw-blog-hero__paper--one {
        top: 80px;
        right: -42px;
    }

    .xw-blog-hero__paper--two {
        display: none;
    }

    body.og-blog-index-page .og-post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.og-blog-index-page .og-post-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .og-blog-index-page .xw-blog-hero::before,
    .xw-blog-hero__paper,
    .xw-blog-hero__spark,
    .og-blog-index-page .og-post-card {
        animation: none;
        transition: none;
    }
}
