/*
 * Blog stylesheet
 *
 * Cascade order:
 * 1. document foundations and long-form content primitives
 * 2. the framework-free blog shell and post interactions
 * 3. blog home, archive, sharing, and dark-theme components
 *
 * Page-specific concerns stay in typography.css, sidebar.css, post.css,
 * code-copy.css, and scroll-progress.css.
 */

:root {
    --blog-reset-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --blog-body-color: #212529;
    --blog-body-bg: #fff;
    --blog-link-color: #212529;
    --blog-link-hover-color: #0085a1;
    --blog-code-color: #d63384;
    --blog-highlight-bg: #fff3cd;
    --blog-color-heading: #1c2a36;
    --blog-color-ink: #24313d;
    --blog-color-text: #43515d;
    --blog-color-muted: #687382;
    --blog-color-subtle: #8b98a3;
    --blog-color-line: #dce5ee;
    --blog-color-line-soft: rgba(220, 229, 238, 0.84);
    --blog-color-accent: #159c78;
    --blog-color-accent-strong: #0d6f5a;
    --blog-focus-ring: rgba(21, 156, 120, 0.42);
    --blog-reading-column-max: 46.375rem;
    --blog-reading-rail-gap: 1.3125rem;
    --blog-reading-rail-offset: calc((var(--blog-reading-column-max) / 2) + var(--blog-reading-rail-gap));
    --blog-reading-rail-width: 17rem;
    --blog-share-control-size: 2.25rem;
}

html[data-theme="dark"] {
--blog-color-heading: #e8eef6;
--blog-color-ink: #d6e0ea;
--blog-color-text: #c7d2df;
--blog-color-muted: #93a2b3;
--blog-color-subtle: #8291a3;
--blog-color-line: rgba(216, 226, 239, 0.14);
--blog-color-line-soft: rgba(216, 226, 239, 0.1);
--blog-color-accent: #4dd7b4;
--blog-color-accent-strong: #8debd3;
--blog-focus-ring: rgba(77, 215, 180, 0.48);
}
*, ::before, ::after { box-sizing: border-box; }

.visually-hidden:not(:focus):not(:active) {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
:root { scroll-behavior: smooth; }
}
body { margin: 0px; font-family: var(--blog-sans, "Inter", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif); font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--blog-body-color); text-align: left; background-color: var(--blog-body-bg); text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
.math-container {
width: 100%;
overflow-x: auto;
padding: 10px;
box-sizing: border-box;
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 비율 */
height: 0;
overflow: hidden;
max-width: 100%;
background: #000;
margin-bottom: 20px;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

hr {
margin: 1rem 0;
color: inherit;
border: 0;
border-top: 1px solid;
border-color: #dee2e6;
opacity: 1;
}

h6, h5, h4, h3, h2, h1 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
font-family: var(--blog-heading, "Manrope", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif);
font-weight: 800;
line-height: 1.2;
}

h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
    font-size: 2.2rem;
}
}

h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
    font-size: 2rem;
}
}

h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
    font-size: 1.75rem;
}
}

h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
    font-size: 1.5rem;
}
}

h5 {
font-size: 1.25rem;
}

h6 {
font-size: 1rem;
}

p {
margin: 2rem 0;
}

abbr[title] {
-webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
        text-decoration-skip-ink: none;
}

address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}

ol,
ul {
padding-left: 2rem;
}

ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}

dt {
font-weight: 700;
}

dd {
margin-bottom: 0.5rem;
margin-left: 0;
}

b,
strong {
font-weight: bolder;
}

small {
font-size: 0.875em;
}

mark {
padding: 0.1875em;
background-color: var(--blog-highlight-bg);
}

sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}

sub {
bottom: -0.25em;
}

sup {
top: -0.5em;
}

a {
color: var(--blog-link-color);
text-decoration: none;
}
a:hover {
color: var(--blog-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
color: inherit;
text-decoration: none;
}

pre,
code,
kbd,
samp {
font-family: var(--blog-reset-mono);
font-size: 1em;
}

pre {
display: block;
margin-top: 0;
/* margin-bottom: 1rem; */
overflow: auto;
/* font-size: 0.875em; */
font-size: 1rem;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}

code {
font-size: 1rem;
color: var(--blog-code-color);
word-wrap: break-word;
}
a > code {
color: inherit;
}

kbd {
padding: 0.1875rem 0.375rem;
font-size: 0.875em;
color: var(--blog-body-bg);
background-color: var(--blog-body-color);
}
kbd kbd {
padding: 0;
font-size: 1em;
}

figure {
margin: 0 0 1rem;
}

img,
svg {
/* vertical-align: middle; */
margin: auto;
display: block;
transition: transform 0.3s ease;
max-width: 100%;
min-width: 30%;
}

img:hover {
    transform: scale(1.05);
}

table {
caption-side: bottom;
border-collapse: collapse;
}

caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}

th {
text-align: inherit;
text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}

label {
display: inline-block;
}

button {
border-radius: 0;
}

button:focus:not(:focus-visible) {
outline: 0;
}

input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}

button,
select {
text-transform: none;
}

[role=button] {
cursor: pointer;
}

select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
-webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
cursor: pointer;
}

.blog-shell {
width: 100%;
padding-right: 1.5rem;
padding-left: 1.5rem;
margin-right: auto;
margin-left: auto;
}

@media (min-width: 576px) {
.blog-shell { max-width: 540px; }
}
@media (min-width: 768px) {
.blog-shell { max-width: 720px; }
}
@media (min-width: 992px) {
.blog-shell { max-width: 960px; padding-right: 3rem; padding-left: 3rem; }
}
@media (min-width: 1200px) {
.blog-shell { max-width: 1140px; }
}
@media (min-width: 1400px) {
.blog-shell { max-width: 1320px; }
}

.blog-hero-shell,
.post-hero-shell {
position: relative;
}

.blog-sidebar .logo {
display: flex;
align-items: center;
justify-content: center;
}

.blog-sidebar .social-links {
text-align: center;
}

.blog-sidebar .profile-img img {
max-width: 100%;
height: auto;
border-radius: 50%;
}

.blog-home-scroll-action {
display: flex;
justify-content: flex-end;
margin-bottom: 3rem;
}

.blog-home-footer-row,
.post-reading-row {
--blog-reading-gutter-x: 1.5rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-right: calc(-0.5 * var(--blog-reading-gutter-x));
margin-left: calc(-0.5 * var(--blog-reading-gutter-x));
}

.blog-home-footer-copy,
.post-reading-column {
flex: 0 0 auto;
width: 100%;
max-width: 100%;
padding-right: calc(0.5 * var(--blog-reading-gutter-x));
padding-left: calc(0.5 * var(--blog-reading-gutter-x));
}

.post-article {
margin-bottom: 1.5rem;
}

.post-navigation-space {
margin-top: 1.5rem;
}

.blog-post-footer {
border-top: 1px solid #dee2e6;
}

.blog-footer-note {
color: rgb(108, 117, 125);
font-size: 0.7rem;
font-style: italic;
line-height: 1.45;
letter-spacing: 0.01em;
text-align: center;
}

@media (min-width: 768px) {
.blog-home-footer-copy,
.post-reading-column { width: 83.33333333%; }
}

@media (min-width: 992px) {
.blog-home-footer-row,
.post-reading-row { --blog-reading-gutter-x: 3rem; }
.blog-home-footer-copy { width: 75%; }
.post-reading-column { width: 66.66666667%; }
}

@media (min-width: 1200px) {
.post-reading-column { width: 58.33333333%; }
}

.blog-post-page .post-reading-column {
    width: 100%;
    max-width: var(--blog-reading-column-max);
}

.blog-post-page .post-hero-column {
    max-width: 52rem;
}

.post-site-nav {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 0.5rem 0;
}

.post-nav-shell {
display: flex;
flex-wrap: inherit;
align-items: center;
justify-content: space-between;
}

.post-nav-brand {
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
margin-right: 1rem;
color: rgba(0, 0, 0, 0.9);
font-size: 1.25rem;
text-decoration: none;
white-space: nowrap;
}

.post-nav-actions {
display: flex;
flex-direction: column;
padding: 1.5rem 0;
margin: 0 0 0 auto;
list-style: none;
}

.post-nav-panel {
display: none;
flex-basis: 100%;
flex-grow: 1;
align-items: center;
}

.post-nav-panel.is-open {
display: block;
}

@media (min-width: 992px) {
.post-nav-panel {
display: flex !important;
flex-basis: auto;
}
.post-nav-actions {
flex-direction: row;
padding-top: 0;
padding-bottom: 0;
}
}

.post-media { max-width: 100%; height: auto; display: block; margin: auto; }
p a {
text-decoration: underline;
}

blockquote {
font-style: italic;
font-weight: 550;
color: #3c444a;
background-color: #F8F9FA;
padding: 0.2rem 2rem;
border-left: 3px solid #ced4da;
}

#mainNav {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 1030;
border-bottom: 1px solid #dee2e6;
background-color: #fff;
font-family: var(--blog-sans, "Inter", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif);
transition: background-color 0.2s ease, transform 0.22s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#mainNav .post-nav-brand {
font-weight: 800;
}
#mainNav .post-nav-actions > li.post-nav-action > a {
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.0625em;
text-transform: uppercase;
}
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle {
color: #212529;
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.0625em;
text-transform: uppercase;
}
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:focus,
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:hover {
color: #0085A1;
}

#mainNav .post-nav-brand-group {
    display: inline-flex;
    gap: 0.62rem;
    align-items: baseline;
    min-width: 0;
}

#mainNav .post-nav-brand-group .post-nav-brand {
    margin-right: 0;
}

#mainNav .post-nav-portfolio-link {
    display: inline-flex;
    gap: 0.28rem;
    align-items: center;
    padding-left: 0.62rem;
    border-left: 1px solid rgba(33, 37, 41, 0.18);
    color: rgba(33, 37, 41, 0.6);
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
}

#mainNav .post-nav-portfolio-link:hover,
#mainNav .post-nav-portfolio-link:focus {
    color: #0085A1;
}

#mainNav .post-nav-portfolio-link .site-icon {
    font-size: 0.62rem;
}

#mainNav .post-nav-actions {
    align-items: center;
}

#mainNav .post-nav-search-item {
    display: flex;
    align-items: center;
    padding: 0 0.7rem;
}

#mainNav .post-nav-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.08rem;
    grid-template-rows: 100%;
    align-items: stretch;
    width: clamp(11rem, 18vw, 15rem);
    height: 2.08rem;
    overflow: hidden;
    border: 1px solid rgba(33, 37, 41, 0.16);
    background: rgba(255, 255, 255, 0.72);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

#mainNav .post-nav-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#mainNav .post-nav-search:focus-within {
    border-color: rgba(0, 133, 161, 0.52);
    box-shadow: 0 0 0 3px rgba(0, 133, 161, 0.1);
}

#mainNav .post-nav-search input {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0 0.78rem;
    border: 0;
    outline: 0;
    appearance: none;
    box-sizing: border-box;
    color: #212529;
    background: transparent;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.76rem;
}

#mainNav .post-nav-search input::-webkit-search-cancel-button {
    display: none;
}

#mainNav .post-nav-search input::placeholder {
    color: rgba(33, 37, 41, 0.48);
}

#mainNav .post-nav-search button {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    color: #fff;
    background: #212529;
    font-size: 0.82rem;
    line-height: 1;
}

#mainNav .post-nav-actions > li.post-nav-action > button.post-nav-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.08rem;
    width: 2.08rem;
    height: 2.08rem;
    margin: 0 0.35rem;
    padding: 0 !important;
    line-height: 1;
}

#mainNav .post-nav-theme-toggle .site-icon {
    display: block;
    line-height: 1;
}

@media (min-width: 992px) {
#mainNav {
    border-bottom: 1px solid transparent;
    background: transparent;
}
#mainNav .post-nav-brand {
    color: #fff;
}
#mainNav .post-nav-brand:focus, #mainNav .post-nav-brand:hover {
    color: rgba(255, 255, 255, 0.8);
}
#mainNav .post-nav-actions > li.post-nav-action > a {
    color: #fff;
}
#mainNav .post-nav-actions > li.post-nav-action > a:focus, #mainNav .post-nav-actions > li.post-nav-action > a:hover {
    color: rgba(255, 255, 255, 0.8);
}
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle {
    color: #fff;
}
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:focus,
#mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
}

#mainNav .post-nav-portfolio-link {
    color: rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

#mainNav .post-nav-portfolio-link:hover,
#mainNav .post-nav-portfolio-link:focus {
    color: #fff;
}

#mainNav:not(.is-fixed) .post-nav-search {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

#mainNav:not(.is-fixed) .post-nav-search:focus-within {
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#mainNav:not(.is-fixed) .post-nav-search input {
    color: #fff;
}

#mainNav:not(.is-fixed) .post-nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

#mainNav:not(.is-fixed) .post-nav-search button {
    color: #111827;
    background: rgba(255, 255, 255, 0.9);
}
}
#mainNav.is-fixed {
    position: fixed;
    top: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#mainNav.is-fixed .post-nav-brand {
    color: #212529;
}
#mainNav.is-fixed .post-nav-brand:focus, #mainNav.is-fixed .post-nav-brand:hover {
    color: #0085A1;
}
#mainNav.is-fixed .post-nav-portfolio-link {
    border-left-color: rgba(33, 37, 41, 0.18);
    color: rgba(33, 37, 41, 0.6);
}
#mainNav.is-fixed .post-nav-portfolio-link:hover,
#mainNav.is-fixed .post-nav-portfolio-link:focus {
    color: #0085A1;
}
#mainNav.is-fixed .post-nav-actions > li.post-nav-action > a {
    color: #212529;
}
#mainNav.is-fixed .post-nav-actions > li.post-nav-action > a:focus, #mainNav.is-fixed .post-nav-actions > li.post-nav-action > a:hover {
    color: #0085A1;
}
#mainNav.is-fixed .post-nav-actions > li.post-nav-action > button.blog-theme-toggle {
    color: #212529;
}
#mainNav.is-fixed .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:focus,
#mainNav.is-fixed .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:hover {
    color: #0085A1;
}
#mainNav.is-visible {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    #mainNav .post-nav-panel .post-nav-actions {
        display: grid;
        grid-template-columns: 2.08rem 3.1rem;
        gap: 0.55rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 0 0.45rem !important;
    }

    #mainNav .post-nav-panel .post-nav-actions > li.post-nav-action {
        display: flex;
        justify-content: center;
        width: auto;
    }

    #mainNav .post-nav-panel .post-nav-actions > li.post-nav-action > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #mainNav .post-nav-panel .post-nav-actions > li.post-nav-action > button.blog-theme-toggle {
        width: 2.08rem;
        height: 2.08rem;
        margin: 0;
        padding: 0 !important;
        border: 0;
    }

    #mainNav .post-nav-search-item {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(calc(100vw - 3rem), 20rem) !important;
        padding: 0.35rem 0;
    }

    #mainNav .post-nav-search {
        width: 100%;
    }

    #mainNav .post-nav-theme-item {
        grid-column: 1;
    }

    #mainNav .post-nav-language-item {
        grid-column: 2;
    }

}


footer { padding-top: 3rem; padding-bottom: 3rem; }

header.masthead {
position: relative;
margin-bottom: 1rem;
padding-top: calc(3rem + 57px);
padding-bottom: 3rem;
background: no-repeat center center;
background-color: #6c757d;
background-size: cover;
background-attachment: scroll;
}
header.masthead:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #212529;
opacity: 0.5;
}
html:not([data-theme="dark"]) header.masthead:not(.blog-home-hero):before {
opacity: 0.58;
}
header.masthead .post-heading {
color: #fff;
}
header.masthead .post-heading h1, header.masthead .post-heading .h1 {
font-size: 2.25rem;
}
header.masthead .post-heading .meta,
header.masthead .post-heading .subheading {
line-height: 1.1;
display: block;
}
header.masthead .post-heading .subheading {
font-size: 1.5rem;
font-weight: 600;
margin: 0.75rem 0 2rem;
font-family: var(--blog-sans, "Inter", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif);
}
header.masthead .post-heading .meta {
font-size: 1rem;
font-weight: 300;
font-style: italic;
font-family: var(--blog-sans, "Inter", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif);
}
header.masthead .post-heading .meta a {
color: #fff;
}
header.masthead .post-heading .post-reading-time-icon {
margin-right: 4px;
}
@media (min-width: 992px) {
header.masthead {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}
header.masthead .post-heading h1, header.masthead .post-heading .h1 {
    font-size: 2.5rem;
}
header.masthead .post-heading .subheading {
    font-size: 1.875rem;
}
}

header.masthead.post-masthead {
    margin-bottom: 0;
    padding: clamp(3rem, 5vw, 4.5rem) 0 2.7rem;
    border: 0;
    color: var(--blog-color-text);
    background: #fff;
}

header.masthead.post-masthead::before {
    display: none;
}

header.masthead.post-masthead .post-heading {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    color: var(--blog-color-text);
    transform: none;
}

header.masthead.post-masthead .post-heading h1 {
    max-width: none;
    margin: 0;
    color: var(--blog-color-heading);
    font-family: var(--blog-heading);
    font-size: clamp(2rem, 4vw, 3.05rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.blog-post-page .post-hero-series {
    display: inline-flex;
    gap: 0.42rem;
    align-items: baseline;
    margin: 0 0 0.8rem;
    font-family: var(--blog-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.blog-post-page .post-hero-series-label,
.blog-post-page .post-hero-series-separator {
    color: var(--blog-color-subtle);
}

.blog-post-page .post-hero-series a {
    display: inline-flex;
    gap: 0.4rem;
    align-items: baseline;
    color: var(--blog-color-accent-strong);
    text-decoration: none;
}

.blog-post-page .post-hero-series-arrow {
    color: var(--blog-color-subtle);
    opacity: 0.72;
    transition: color 180ms ease, opacity 180ms ease;
}

.blog-post-page .post-hero-series a:hover .post-hero-series-name,
.blog-post-page .post-hero-series a:focus-visible .post-hero-series-name {
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--blog-color-accent), transparent 42%);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

.blog-post-page .post-hero-series a:hover .post-hero-series-arrow,
.blog-post-page .post-hero-series a:focus-visible .post-hero-series-arrow {
    color: var(--blog-color-accent-strong);
    opacity: 1;
}

.blog-post-page .post-intro-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.42rem;
    align-items: baseline;
    margin-top: 0.72rem;
    font-family: var(--blog-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-post-page .post-intro-topics-label,
.blog-post-page .post-intro-topics-separator {
    color: var(--blog-color-subtle);
}

.blog-post-page .post-intro-topics .post-tags {
    display: inline-flex;
    flex: 1 1 auto;
    margin: 0;
}

.blog-post-page .post-intro-topics .post-tag {
    color: var(--blog-color-muted);
    font: inherit;
}

.blog-post-page .post-intro-topics .post-tag-separator {
    display: inline-block;
    color: color-mix(in srgb, var(--blog-color-subtle), transparent 38%);
    text-decoration: none;
}

.blog-post-page .post-intro-topics a.post-tag {
    color: var(--blog-color-accent-strong);
    text-decoration: none;
}

.blog-post-page .post-intro-topics a.post-tag:hover,
.blog-post-page .post-intro-topics a.post-tag:focus-visible {
    color: var(--blog-color-accent-strong);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--blog-color-accent), transparent 42%);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

@media (prefers-reduced-motion: reduce) {
    .blog-post-page .post-hero-series-arrow {
        transition: none;
    }
}

.blog-post-page .post-intro-column {
    margin-top: 0.55rem;
    margin-bottom: clamp(2.4rem, 4vw, 3.25rem);
}

.blog-post-page .post-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10.5rem;
    gap: clamp(2rem, 4.6vw, 3.5rem);
    align-items: start;
}

.blog-post-page .post-intro-copy {
    min-width: 0;
}

.blog-post-page .post-intro-deck {
    max-width: 35rem;
    margin: 0;
    color: var(--blog-color-heading);
    font-family: var(--blog-sans);
    font-size: clamp(1rem, 1.2vw, 1.06rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.64;
    text-wrap: pretty;
}

.blog-post-page .post-article-info {
    margin: 0;
    padding: 0 0 0 1.15rem;
    border: 0;
    border-left: 1px solid var(--blog-color-line);
    background: transparent;
}

.blog-post-page .post-article-info ul {
    display: grid;
    gap: 0.95rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-post-page .post-article-info li {
    margin: 0;
    color: var(--blog-color-text);
    font-family: var(--blog-sans);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.45;
}

.blog-post-page .post-article-info li > strong {
    display: block;
    margin-bottom: 0.08rem;
    color: var(--blog-color-subtle);
    font-family: var(--blog-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.blog-post-page .post-intro-column + .main-content > #myshare_modal + * {
    margin-top: 0;
}

.blog-post-page #mainNav {
    position: relative;
    min-height: 3.45rem;
    padding: 0.7rem 0;
    border: 0;
    background: #fff;
    box-shadow: none;
    pointer-events: none;
}

.blog-post-page #mainNav.is-fixed {
    position: fixed;
    top: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    transform: translateY(-100%);
}

.blog-post-page #mainNav.is-fixed.is-visible {
    transform: translateY(0);
}

@media (min-width: 1200px) {
    .blog-post-page #mainNav.is-fixed {
        left: var(--site-sidebar-width);
        transition:
            left var(--site-sidebar-transition-duration) var(--site-sidebar-transition-easing),
            background-color 0.2s ease,
            transform 0.22s ease;
    }

    html.sidebar-collapsed .blog-post-page #mainNav.is-fixed {
        left: var(--site-sidebar-rail-width);
    }
}

.blog-post-page #mainNav.is-fixed:not(.is-visible) {
    transform: translateY(-100%);
    transition: none;
}

.blog-post-page #mainNav .post-utility-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-post-page #mainNav .post-nav-home {
    display: none;
    gap: 0.42rem;
    align-items: center;
    max-width: 7rem;
    min-height: 2rem;
    overflow: hidden;
    color: var(--blog-color-muted);
    font-family: var(--blog-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: underline;
    text-decoration-color: var(--blog-color-line);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    pointer-events: auto;
    transition:
        max-width 0.2s ease,
        opacity 0.14s ease,
        color 0.2s ease;
}

.blog-post-page #mainNav .post-nav-home:hover,
.blog-post-page #mainNav .post-nav-home:focus-visible {
    color: var(--blog-color-accent-strong);
    text-decoration-color: currentColor;
}

.blog-post-page #mainNav .post-nav-home .site-icon {
    flex: 0 0 auto;
    font-size: 0.74rem;
}

.blog-post-page #mainNav .post-nav-actions {
    display: flex;
    flex-direction: row;
    gap: 0.08rem;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

.blog-post-page #mainNav .post-nav-action {
    display: flex;
    align-items: center;
}

.blog-post-page #mainNav .post-nav-search-link-item {
    display: none;
}

.blog-post-page #mainNav .post-nav-search-link,
.blog-post-page #mainNav .post-nav-theme-toggle,
.blog-post-page #mainNav .post-nav-language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--blog-color-muted);
    background: transparent;
    font-size: 0.8rem;
    line-height: 1;
    text-decoration: none;
}

.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle,
.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > a.post-nav-language-link {
    color: var(--blog-color-muted);
}

.blog-post-page #mainNav .post-nav-search-link:hover,
.blog-post-page #mainNav .post-nav-search-link:focus-visible,
.blog-post-page #mainNav .post-nav-theme-toggle:hover,
.blog-post-page #mainNav .post-nav-theme-toggle:focus-visible,
.blog-post-page #mainNav .post-nav-language-link:hover,
.blog-post-page #mainNav .post-nav-language-link:focus-visible {
    color: var(--blog-color-accent-strong);
    background: transparent;
}

.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:hover,
.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > button.blog-theme-toggle:focus-visible,
.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > a.post-nav-language-link:hover,
.blog-post-page #mainNav .post-nav-actions > li.post-nav-action > a.post-nav-language-link:focus-visible {
    color: var(--blog-color-accent-strong);
}

.blog-post-page #mainNav .post-nav-search-link:focus-visible,
.blog-post-page #mainNav .post-nav-theme-toggle:focus-visible,
.blog-post-page #mainNav .post-nav-language-link:focus-visible {
    outline: 2px solid var(--blog-focus-ring);
    outline-offset: 2px;
}

.blog-post-page #mainNav .post-nav-search {
    width: clamp(9.5rem, 16vw, 12rem);
    height: 2rem;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid var(--blog-color-line);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.blog-post-page #mainNav .post-nav-search:focus-within {
    border-bottom-color: var(--blog-color-accent-strong);
    box-shadow: none;
}

.blog-post-page #mainNav .post-nav-search input {
    padding-left: 0;
    color: var(--blog-color-heading);
}

.blog-post-page #mainNav .post-nav-search input::placeholder {
    color: var(--blog-color-subtle);
}

.blog-post-page #mainNav .post-nav-search button {
    color: var(--blog-color-muted);
    background: transparent;
}

.blog-post-page #mainNav .post-nav-search button:hover,
.blog-post-page #mainNav .post-nav-search button:focus-visible {
    color: var(--blog-color-accent-strong);
}

@media (max-width: 1199.98px) {
    .blog-post-page .sidebar-mobile-toggle {
        display: none;
    }

    .blog-post-page #mainNav .post-utility-column {
        justify-content: space-between;
    }

    .blog-post-page #mainNav .post-nav-home {
        display: inline-flex;
    }

    .blog-post-page #mainNav .post-nav-search-item {
        justify-self: auto;
        width: auto !important;
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .blog-post-page .sidebar-mobile-toggle {
        display: none;
    }

    .blog-post-page #mainNav {
        min-height: 3.75rem;
        padding: 0.85rem 0;
    }

    .blog-post-page #mainNav .post-utility-column {
        padding-left: 0;
    }

    .blog-post-page #mainNav .post-nav-search-item {
        display: flex;
        padding: 0;
    }

    .blog-post-page #mainNav .post-nav-search-link-item {
        display: none;
    }

    .blog-post-page #mainNav .post-nav-search {
        grid-template-columns: minmax(0, 1fr) 2rem;
        width: 2rem;
        overflow: hidden;
        border-bottom-color: transparent;
        transition:
            width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.2s ease;
    }

    .blog-post-page #mainNav .post-nav-search input {
        padding-left: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease;
    }

    .blog-post-page #mainNav .post-nav-search.is-expanded {
        width: min(11rem, calc(100vw - 9rem));
        border-bottom-color: var(--blog-color-line);
    }

    .blog-post-page #mainNav .post-nav-search.is-expanded:focus-within {
        border-bottom-color: var(--blog-color-accent-strong);
    }

    .blog-post-page #mainNav .post-nav-search.is-expanded input {
        opacity: 1;
        pointer-events: auto;
    }

    .blog-post-page #mainNav .post-utility-column:has(.post-nav-search.is-expanded) .post-nav-home {
        max-width: 0;
        opacity: 0;
        pointer-events: none;
    }

    header.masthead.post-masthead {
        padding: 2.05rem 0 2.55rem;
    }

    header.masthead.post-masthead .post-heading h1 {
        font-size: clamp(1.75rem, 7.5vw, 2.25rem);
        line-height: 1.1;
    }

    .blog-post-page .post-intro-column {
        margin-top: 0.4rem;
        margin-bottom: 2.3rem;
    }

    .blog-post-page .post-intro-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.3rem;
    }

    .blog-post-page .post-intro-deck {
        max-width: none;
        font-size: 1rem;
        line-height: 1.62;
    }

    .blog-post-page .post-article-info {
        padding: 0;
        border-top: 0;
        border-left: 0;
    }

    .blog-post-page .post-article-info ul {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr) minmax(0, 1fr);
        gap: 0.65rem;
    }

    .blog-post-page .post-article-info li {
        font-size: 0.72rem;
    }
}
html { overflow-y: scroll; }
.blog-search-page .main {
    min-height: 100vh;
    padding-top: 0;
}

.share_modal {
    display: none;
    position: fixed;
    z-index: 1040;
    top: 4.4rem;
    right: clamp(1rem, 3vw, 2.2rem);
    width: min(21rem, calc(100vw - 2rem));
    height: auto;
    overflow: visible;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.share_modal.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share_modal-content {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.78rem 0.82rem;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 0.72rem;
    color: #24313d;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
    backdrop-filter: blur(18px);
    font-family: var(--blog-sans, "Inter", sans-serif);
    text-align: left;
}

.share_modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: #0d6f5a;
    background: rgba(21, 156, 120, 0.1);
    font-size: 1rem;
}

.share_modal-message {
    display: grid;
    min-width: 0;
    gap: 0.08rem;
}

.share_modal-message strong {
    color: #14212d;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
}

.share_modal-message small {
    color: #657180;
    font-size: 0.74rem;
    line-height: 1.35;
}

.share_modal_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 0;
    border-radius: 999px;
    color: #7a8694;
    background: transparent;
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1;
}

.share_modal_close:hover,
.share_modal_close:focus {
    color: #14212d;
    background: rgba(17, 24, 39, 0.06);
    text-decoration: none;
}

#copyButton {
    position: fixed;
    top: 50%;
    left: calc(50% - var(--blog-reading-rail-offset) - var(--blog-share-control-size));
    z-index: 1030;
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--blog-share-control-size);
    height: var(--blog-share-control-size);
    padding: 0;
    border: 1px solid var(--blog-color-line-soft);
    border-radius: 999px;
    color: var(--blog-color-muted);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

#copyButton:hover,
#copyButton:focus-visible {
    border-color: color-mix(in srgb, var(--blog-color-accent), transparent 76%);
    color: var(--blog-color-accent-strong);
    background: #fff;
}

#copyButton:focus-visible {
    outline: 2px solid var(--blog-focus-ring);
    outline-offset: 3px;
}

.copy_indicator-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(21, 156, 120, 0.09);
    overflow: hidden;
}

.copy_indicator {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #15b886, #2a7fb8);
}


.button_top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    visibility: hidden;
    transition:
        opacity 0.18s cubic-bezier(0.2, 0, 0, 1),
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.18s cubic-bezier(0.2, 0, 0, 1),
        color 0.18s cubic-bezier(0.2, 0, 0, 1),
        background-color 0.18s cubic-bezier(0.2, 0, 0, 1),
        border-color 0.18s cubic-bezier(0.2, 0, 0, 1);
}

.button_top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.button_top:hover,
.button_top:focus-visible {
    background: #111827;
    border-color: rgba(20, 157, 221, 0.42);
    outline: 0;
    transform: translateY(-2px);
}

.button_top .site-icon {
    color: currentColor;
    font-size: 0.82rem;
    line-height: 1;
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.button_top:hover .site-icon,
.button_top:focus-visible .site-icon {
    transform: translateY(-1px);
}

.button_top:focus-visible {
    outline: 2px solid rgba(20, 157, 221, 0.42);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .button_top,
    .button_top .site-icon {
        transition: none;
    }

    .button_top:hover,
    .button_top:focus-visible,
    .button_top:hover .site-icon,
    .button_top:focus-visible .site-icon {
        transform: none;
    }
}
.post-card-cover img,
.blog-feature-cover img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    margin: 0;
    object-fit: cover;
    transform: none;
    transition: none;
}

.post-card-cover img:hover,
.blog-feature-cover img:hover {
    transform: none;
}

.post-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

.blog-home-page {
    --blog-home-ink: #111827;
    --blog-home-muted: #5b6472;
    --blog-home-line: rgba(17, 24, 39, 0.1);
    --blog-home-accent: #159c78;
    --blog-home-accent-dark: #0d6f5a;
    --blog-home-cover: #101011;
    --blog-home-cover-title: rgba(240, 241, 243, 0.88);
    --blog-home-cover-strong: rgba(240, 241, 243, 0.7);
    --blog-home-cover-copy: rgba(220, 223, 228, 0.62);
    --blog-home-cover-muted: rgba(220, 223, 228, 0.5);
    --blog-home-cover-faint: rgba(220, 223, 228, 0.32);
    color: var(--blog-home-ink);
    background: #f6f7f4;
}

.blog-home-main {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(246, 247, 244, 0.98) 0%, rgba(246, 247, 244, 1) 34rem),
        #f6f7f4;
}

.blog-home-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    min-height: 3.25rem;
    padding: 0.78rem clamp(1.25rem, 5vw, 4rem);
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.34), rgba(8, 12, 18, 0));
}

.blog-home-toolbar-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.blog-archive-page .blog-home-topbar {
    justify-content: space-between;
}

.blog-archive-page .blog-home-search {
    width: clamp(10.5rem, 22vw, 18.5rem);
}

.blog-home-back {
    display: inline-flex;
    gap: 0.42rem;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    font-family: var(--blog-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.28);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.24em;
    text-transform: uppercase;
}

.blog-home-back:hover {
    color: #4dd7b4;
    background: transparent;
    text-decoration-color: currentColor;
}

.blog-home-back .site-icon {
    font-size: 0.82rem;
}

.blog-home-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.1rem;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    box-shadow: none;
    font-family: var(--blog-sans, "Inter", system-ui, sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.blog-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    box-shadow: none;
    font-size: 0.88rem;
    line-height: 1;
}

.blog-theme-toggle:hover {
    color: #fff;
    background: transparent;
}

#mainNav .blog-theme-toggle {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.blog-home-language:hover {
    color: #4dd7b4;
    background: transparent;
}

.blog-home-page header.masthead.blog-home-hero {
    display: flex;
    align-items: center;
    min-height: 330px;
    margin-bottom: 0;
    padding: 4.15rem 0 2.5rem;
    background-color: #111827;
}

.blog-home-page header.masthead.blog-home-hero::before {
    background:
        linear-gradient(90deg, rgba(13, 17, 23, 0.94) 0%, rgba(13, 17, 23, 0.8) 46%, rgba(13, 17, 23, 0.38) 100%),
        linear-gradient(180deg, rgba(13, 17, 23, 0.1), rgba(13, 17, 23, 0.72));
    opacity: 1;
}

.blog-home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.blog-home-hero-copy {
    max-width: 1040px;
    transform: translateY(-0.55rem);
}

.blog-home-kicker,
.series-card-kicker {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #33d1a7;
    font-family: var(--blog-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.series-card-kicker {
    color: var(--blog-home-accent-dark);
}

.blog-home-hero h1 {
    max-width: none;
    margin: 0;
    color: #fff;
    font-family: var(--blog-heading);
    font-size: 3.08rem;
    font-weight: 780;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.blog-home-hero p {
    max-width: none;
    margin: 0.88rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--blog-sans, "Inter", system-ui, sans-serif);
    font-size: 0.95rem;
    letter-spacing: 0;
    line-height: 1.56;
    word-break: normal;
}

html[lang="ko"] .blog-home-hero .blog-home-kicker {
    font-family: var(--blog-mono);
    letter-spacing: 0.08em;
    word-break: normal;
}

html[lang="ko"] .blog-home-hero h1 {
    font-family: var(--blog-heading);
    letter-spacing: 0;
    word-break: normal;
}

.blog-home-page header.masthead.blog-editorial-hero {
    --blog-editorial-shell-max: 1120px;
    --blog-editorial-copy-gutter: calc((100% - min(100%, var(--blog-editorial-shell-max))) / 2 + 3rem);
    align-items: flex-end;
    min-height: 280px;
    padding: 4.45rem 0 2.45rem;
    border-bottom: 0;
    overflow: hidden;
    background: var(--blog-home-cover);
}

.blog-home-page header.masthead.blog-editorial-hero::before {
    background: none;
    opacity: 0;
}

.blog-editorial-hero .blog-hero-shell {
    z-index: 2;
    max-width: 1120px;
}

.blog-editorial-hero .blog-home-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-areas:
        "imprint"
        "title"
        "deck"
        "index";
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    transform: none;
}

.blog-editorial-visual,
.blog-editorial-visual-left {
    display: none;
}

.blog-editorial-imprint {
    grid-area: imprint;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: clamp(1.25rem, 2.4vh, 1.65rem);
    padding-bottom: 0.58rem;
    border-bottom: 1px solid rgba(216, 226, 239, 0.15);
}

.blog-editorial-hero .blog-home-kicker {
    margin: 0;
    color: #4dd7b4;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.blog-editorial-brandline {
    display: flex;
    gap: 0.42rem;
    align-items: baseline;
    font-family: var(--blog-mono);
    font-size: 0.66rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-editorial-index {
    color: var(--blog-home-cover-strong);
    font-weight: 600;
}

.blog-editorial-separator {
    color: var(--blog-home-cover-faint);
    font-weight: 500;
}

.blog-editorial-edition {
    color: var(--blog-home-cover-muted);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
}

.blog-editorial-hero h1 {
    grid-area: title;
    align-self: end;
    max-width: none;
    margin-bottom: 1rem;
    color: var(--blog-home-cover-title);
    font-size: clamp(2.8rem, 3.5vw, 3.45rem);
    font-weight: 790;
    line-height: 0.96;
    letter-spacing: 0;
    white-space: nowrap;
}

.blog-editorial-deck {
    display: contents;
}

.blog-editorial-hero .blog-home-hero-deck {
    grid-area: deck;
    align-self: end;
    max-width: 48ch;
    margin: 0;
    color: var(--blog-home-cover-copy);
    font-size: 0.88rem;
    line-height: 1.56;
    text-wrap: pretty;
}

.blog-publication-byline {
    grid-area: index;
    align-self: end;
    justify-self: end;
    display: inline-flex;
    gap: 0.42rem;
    align-items: baseline;
    margin: 0.68rem 0 0;
    font-family: var(--blog-mono);
    line-height: 1;
    text-transform: uppercase;
}

.blog-publication-byline-label {
    color: var(--blog-home-cover-muted);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.blog-publication-byline-name {
    color: var(--blog-home-cover-strong);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.blog-home-page header.masthead.blog-editorial-utility-hero {
    align-items: flex-end;
    min-height: 260px;
    padding: 4.35rem 0 2.5rem;
    border-bottom: 0;
    background: var(--blog-home-cover);
}

.blog-home-page header.masthead.blog-editorial-utility-hero::before {
    background: none;
    opacity: 0;
}

.blog-editorial-utility-hero .blog-hero-shell {
    z-index: 2;
    max-width: 1120px;
}

.blog-editorial-utility-copy {
    position: relative;
    z-index: 1;
    width: 100%;
}

.blog-editorial-utility-copy .blog-editorial-imprint {
    margin-bottom: clamp(1.2rem, 2.2vh, 1.5rem);
}

.blog-editorial-utility-copy .blog-home-kicker {
    margin: 0;
    color: #4dd7b4;
    font-size: 0.66rem;
    font-weight: 600;
}

.blog-editorial-utility-hero h1 {
    max-width: 22ch;
    color: var(--blog-home-cover-title);
    font-size: clamp(2.45rem, 3.2vw, 3.05rem);
    font-weight: 780;
    line-height: 0.98;
    text-wrap: balance;
}

.blog-editorial-utility-hero p {
    max-width: 68ch;
    margin-top: 0.82rem;
    color: var(--blog-home-cover-copy);
    font-size: 0.86rem;
    line-height: 1.56;
    text-wrap: pretty;
}

.blog-home-page:not(.blog-archive-page) .blog-home-topbar {
    background: transparent;
}

.blog-home-page:not(.blog-archive-page) .blog-home-search {
    width: clamp(8rem, 14.5vw, 13rem);
    border-bottom-color: rgba(216, 226, 239, 0.28);
}

.blog-home-page:not(.blog-archive-page) .blog-home-search input {
    color: rgba(240, 241, 243, 0.78);
}

.blog-home-page:not(.blog-archive-page) .blog-home-search input::placeholder {
    color: #8997a8;
}

.blog-home-page:not(.blog-archive-page) .blog-home-search button,
.blog-home-page:not(.blog-archive-page) .blog-theme-toggle,
.blog-home-page:not(.blog-archive-page) .blog-home-language {
    color: rgba(240, 241, 243, 0.72);
}

.blog-home-page:not(.blog-archive-page) .blog-home-search button:hover,
.blog-home-page:not(.blog-archive-page) .blog-home-search button:focus-visible,
.blog-home-page:not(.blog-archive-page) .blog-theme-toggle:hover,
.blog-home-page:not(.blog-archive-page) .blog-home-language:hover {
    color: #4dd7b4;
}

.blog-home-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.25rem;
    width: clamp(12rem, 23vw, 18.5rem);
    margin-top: 0;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: border-color 0.2s ease;
}

.blog-home-search:focus-within {
    border-bottom-color: #4dd7b4;
}

.blog-home-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-home-search input {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    height: 2.08rem;
    border: 0;
    outline: 0;
    padding: 0 0.2rem;
    color: #fff;
    background: transparent;
    font-size: 0.78rem;
}

.blog-home-search input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.blog-home-search button {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
}

.blog-home-search button:hover,
.blog-home-search button:focus-visible {
    color: #4dd7b4;
    background: transparent;
}

.blog-home-container {
    max-width: 1120px;
    position: relative;
    z-index: 5;
}

.blog-archive-page .blog-home-container {
    margin-top: 0;
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .blog-home-page .blog-home-container {
        max-width: 1040px;
    }

    .blog-editorial-hero .blog-hero-shell {
        max-width: 1040px;
    }

    .blog-editorial-utility-hero .blog-hero-shell {
        max-width: 1040px;
    }

    .blog-home-page header.masthead.blog-editorial-hero {
        --blog-editorial-shell-max: 1040px;
    }
}

.blog-home-feature {
    margin-bottom: 1.1rem;
}

.blog-feature-card {
    position: relative;
    display: grid;
    grid-template-areas:
        "label label"
        "cover copy";
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 0.9rem clamp(2rem, 4vw, 3.5rem);
    min-height: 0;
    padding: 4rem 0 1.5rem;
    overflow: visible;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blog-feature-cover {
    position: relative;
    grid-area: cover;
    display: block;
    min-height: 0;
    aspect-ratio: 1.9 / 1;
    overflow: hidden;
    border: 1px solid var(--blog-home-line);
    border-radius: 6px;
    background-color: #121826;
    background-position: center;
    background-size: cover;
    text-decoration: none;
}

.blog-feature-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.04)),
        linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.16));
    pointer-events: none;
}

.blog-feature-cover img {
    transition:
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 360ms cubic-bezier(0.2, 0, 0, 1);
}

.blog-feature-cover:hover img,
.blog-feature-cover:focus-visible img {
    filter: saturate(1.03) contrast(1.015);
    transform: scale(1.02);
}

.blog-feature-copy {
    grid-area: copy;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 0;
}

.blog-feature-copy.is-height-fitted .blog-feature-read {
    margin-top: auto;
}

.blog-feature-label {
    position: static;
    grid-area: label;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--blog-home-muted);
    background: transparent;
    box-shadow: none;
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-feature-label::before {
    color: var(--blog-home-accent-dark);
    content: "01";
    font-weight: 600;
}

.blog-feature-label::after {
    flex: 1 1 auto;
    height: 1px;
    margin-left: 0.35rem;
    background: var(--blog-home-line);
    content: "";
}

.blog-feature-meta {
    margin-bottom: 0.36rem;
    font-family: var(--blog-mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.post-series-context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
    align-items: baseline;
}

.post-series-context-label {
    color: var(--blog-home-muted);
}

.post-series-context-separator {
    color: #8993a0;
}

.post-series-context-value {
    color: var(--blog-home-accent-dark);
}

.blog-feature-copy h2 {
    display: block;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    color: var(--blog-home-ink);
    font-family: var(--blog-heading);
    font-size: clamp(1.55rem, 2.2vw, 1.9rem);
    font-weight: 740;
    line-height: 1.13;
    letter-spacing: 0;
    text-wrap: balance;
}

.blog-feature-copy h2 a {
    display: block;
    width: 100%;
    color: var(--blog-home-ink);
    text-decoration: none;
}

.blog-home-page .blog-feature-copy h2 a:hover,
.blog-home-page .blog-feature-copy h2 a:focus-visible {
    color: var(--blog-home-accent-dark);
}

.blog-feature-subtitle {
    display: block;
    max-width: 100%;
    margin: 0.42rem 0 0;
    color: #48515f;
    font-size: 0.9rem;
    line-height: 1.58;
    text-wrap: balance;
}

.blog-feature-date {
    margin-top: 0.44rem;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-feature-copy .post-tag-row {
    margin-top: 0.26rem;
    line-height: 1.3;
}

.blog-home-page .blog-feature-copy .post-tag {
    font-size: 0.66rem;
    line-height: 1.3;
}

.blog-home-page .blog-feature-copy .post-tag-separator {
    margin-right: 0.45rem;
    margin-left: 0.45rem;
}

.blog-feature-read {
    position: relative;
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    align-self: flex-start;
    margin-top: 0.48rem;
    padding-bottom: 0.24rem;
    color: #0d6f5a;
    font-size: 0.8rem;
    font-weight: 650;
    text-decoration: none;
}

.blog-feature-read::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(71, 85, 105, 0.46);
    content: "";
    transform: scaleX(0.42);
    transform-origin: left center;
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-feature-read:hover {
    color: #094b3d;
    text-decoration: none;
}

.blog-feature-read .site-icon {
    opacity: 0.58;
    transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1);
}

.blog-feature-read:hover::after,
.blog-feature-read:focus-visible::after {
    transform: scaleX(1);
}

.blog-feature-read:hover .site-icon,
.blog-feature-read:focus-visible .site-icon {
    opacity: 1;
}

.blog-home-archive {
    padding: 1.05rem 0 1.2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blog-home-archive-head {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.72rem;
    border-bottom: 1px solid var(--blog-home-line);
}

.blog-home-archive-head h2 {
    margin: 0;
    color: var(--blog-home-ink);
    font-size: 1.18rem;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: 0;
}

.blog-home-archive-rule {
    display: none;
}

.blog-editorial-archive {
    padding-top: 3.55rem;
}

.blog-editorial-section-head {
    gap: 0.9rem;
    justify-content: flex-start;
    border: 0;
}

.blog-editorial-section-head h2 {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.55rem;
    align-items: center;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.blog-editorial-section-head .blog-home-archive-rule {
    display: block;
    flex: 1 1 auto;
    min-width: 1.5rem;
    height: 1px;
    background: var(--blog-home-line);
}

.blog-archive-count {
    flex: 0 0 auto;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-home-page:not(.blog-archive-page):not(.blog-search-page) .blog-home-archive-head {
    gap: 0.9rem;
    justify-content: flex-start;
    border: 0;
}

.blog-home-page:not(.blog-archive-page):not(.blog-search-page) .blog-home-archive-head h2 {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.55rem;
    align-items: center;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.blog-home-archive-index {
    color: var(--blog-home-accent-dark);
    font-weight: 600;
}

.blog-home-page:not(.blog-archive-page):not(.blog-search-page) .blog-home-archive-rule {
    display: block;
    flex: 1 1 auto;
    min-width: 1.5rem;
    height: 1px;
    background: var(--blog-home-line);
}

.blog-home-era-break {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin: 2.15rem 0 0.45rem;
    padding-top: 0.35rem;
}

.blog-home-era-break h3 {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.55rem;
    align-items: center;
    margin: 0;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.blog-home-era-index {
    color: var(--blog-home-accent-dark);
    font-weight: 600;
}

.blog-home-era-rule {
    flex: 1 1 auto;
    min-width: 1.5rem;
    height: 1px;
    background: var(--blog-home-line);
}

.blog-home-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    gap: 1rem;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.blog-home-tab {
    display: inline-flex;
    gap: 0.34rem;
    align-items: center;
    min-height: 2rem;
    padding: 0.34rem 0 0.46rem;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    color: #667085;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 680;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.blog-home-tab:hover,
.blog-home-tab:focus-visible {
    color: var(--blog-home-ink);
    border-bottom-color: rgba(17, 24, 39, 0.28);
}

.blog-home-tab.is-active {
    color: var(--blog-home-ink);
    border-bottom-color: var(--blog-home-accent-dark);
    background: transparent;
}

.blog-home-tab-count {
    color: currentColor;
    opacity: 0.66;
    font-family: var(--blog-mono);
    font-weight: 500;
}

.blog-home-tab-content {
    padding-top: 0.28rem;
}

.blog-home-tab-panel[hidden] {
    display: none;
}

.blog-search-page .blog-home-hero h1 {
    max-width: 14ch;
}

.blog-search-page .post-card-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem 0.45rem;
    align-items: baseline;
}

.blog-search-page .post-card-eyebrow span[aria-hidden="true"],
.blog-search-page .post-card-eyebrow time {
    color: var(--blog-home-muted);
    font-weight: 500;
}

.blog-search-results {
    min-height: 18rem;
}

.blog-search-eyebrow {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--blog-home-accent-dark);
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.blog-search-count {
    flex: 0 0 auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #0d6f5a;
    background: transparent;
    font-family: var(--blog-mono);
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.blog-search-count:empty {
    display: none;
}

.blog-search-state {
    margin: 0;
    padding: 2.8rem 1rem;
    color: #6f7885;
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: center;
}

.blog-search-state strong {
    color: var(--blog-home-ink);
    font-weight: 650;
}

.blog-home-page .post-preview {
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--blog-home-line);
}

.blog-home-page .post-preview:last-child {
    border-bottom: 0;
}

.blog-home-page .post-preview:has(+ .blog-home-era-break) {
    border-bottom: 0;
}

.blog-home-page .post-card-link {
    display: grid;
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
    gap: 1.05rem;
    align-items: start;
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.blog-home-page .post-preview-media-right .post-card-link {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.34fr);
}

.blog-home-page .post-preview-media-right .post-card-cover {
    grid-column: 2;
    grid-row: 1;
}

.blog-home-page .post-preview-media-right .post-card-body {
    grid-column: 1;
    grid-row: 1;
}

.blog-home-page .post-card-body .post-title a {
    display: block;
    width: 100%;
    color: var(--blog-home-ink);
    text-decoration: none;
}

.blog-home-page .post-card-body .post-title a::after {
    display: inline-block;
    margin-left: 0.46rem;
    color: var(--blog-home-accent-dark);
    font-family: var(--blog-sans, "Inter", system-ui, sans-serif);
    font-size: 0.82em;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    content: "↗";
    transform: translate(-4px, 4px);
    transition:
        opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-home-page .post-card-body .post-title a:hover,
.blog-home-page .post-card-body .post-title a:focus-visible {
    color: var(--blog-home-accent-dark);
}

.blog-home-page .post-card-body .post-title a:hover::after,
.blog-home-page .post-card-body .post-title a:focus-visible::after {
    opacity: 1;
    transform: translate(0, 0);
}

.blog-home-page .post-card-cover {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 112px;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background-color: #111827;
    background-position: center;
    background-size: cover;
}

.blog-home-page .post-card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.1));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.blog-home-page .post-card-cover img {
    transition:
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.24s cubic-bezier(0.2, 0, 0, 1);
}

.blog-home-page .post-card-cover:hover img,
.blog-home-page .post-card-cover:focus-visible img {
    transform: scale(1.02);
    filter: saturate(1.04) contrast(1.02);
}

.blog-home-page .post-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 880px;
    min-width: 0;
    padding-top: 0;
    background: transparent;
}

.post-card-eyebrow {
    margin-bottom: 0.34rem;
    font-family: var(--blog-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-home-page .post-card-body .post-title {
    margin: 0;
    color: var(--blog-home-ink);
    font-family: var(--blog-heading);
    font-size: 1.18rem;
    font-weight: 720;
    line-height: 1.34;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.blog-home-page .post-card-body .post-subtitle {
    display: -webkit-box;
    margin: 0.32rem 0 0;
    color: #526070;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.blog-home-page .post-tag-row {
    gap: 0;
    margin-top: 0.26rem;
}

.blog-home-page .post-tag {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--blog-home-muted);
    background: transparent;
    font-family: var(--blog-sans, "Inter", system-ui, sans-serif);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.blog-home-page .post-tag-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 0.55rem;
    color: #8993a0;
    text-decoration: none;
}

.blog-home-page .post-card-body > .post-meta {
    margin: 0.38rem 0 0;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.64rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-home-page .post-card-body > .post-meta a {
    color: inherit;
    text-decoration: none;
}

.blog-home-page .post-card-body > .post-meta a:hover {
    color: var(--blog-home-accent-dark);
}

.blog-home-empty {
    margin: 1.4rem 0;
    color: var(--blog-home-muted);
}

.blog-home-page .series-group {
    display: grid;
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    margin: 0;
    padding: 1.3rem 0;
    border: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 0;
    background: transparent;
}

.blog-home-page .series-group:first-child {
    padding-top: 0.65rem;
}

.blog-home-page .series-group:last-child {
    padding-bottom: 0.3rem;
    border-bottom: 0;
}

.series-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border: 0;
}

.blog-home-page .series-group .series-title {
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--blog-home-ink);
    font-size: 1.1rem;
    font-weight: 740;
    letter-spacing: 0;
}

.blog-home-page .series-group .series-title a {
    display: inline-flex;
    gap: 0.4rem;
    align-items: baseline;
    color: inherit;
    text-decoration: none;
}

.blog-home-page .series-group .series-title a:hover {
    color: var(--blog-home-accent-dark);
}

.blog-home-page .series-group .series-title .site-icon {
    flex: 0 0 auto;
    color: var(--blog-home-muted);
    font-size: 0.72em;
    transition:
        color 0.18s ease,
        transform 0.22s ease;
}

.blog-home-page .series-group .series-title a:hover .site-icon {
    color: currentColor;
    transform: translate(2px, -2px);
}

.series-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.65rem;
    margin-top: 0.72rem;
    color: #6f7885;
    font-family: var(--blog-mono);
    font-size: 0.64rem;
    font-weight: 500;
    text-transform: uppercase;
}

.series-card-meta span + span::before {
    margin-right: 0.65rem;
    color: color-mix(in srgb, currentColor, transparent 62%);
    content: "/";
}

.blog-home-page .series-group .series-post-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-home-page .series-group .series-post-list li {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.68rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.blog-home-page .series-group .series-post-list li:first-child {
    padding-top: 0;
}

.blog-home-page .series-group .series-post-list li:last-child {
    border-bottom: 0;
}

.blog-home-page .series-group .series-post-list li a {
    color: #252d3a;
    font-size: 0.94rem;
    font-weight: 520;
    line-height: 1.42;
    text-decoration: none;
}

.blog-home-page .series-group .series-post-list li a:hover {
    color: var(--blog-home-accent-dark);
}

.blog-home-page .post-meta-sm {
    flex: 0 0 auto;
    margin-left: 0;
    color: var(--blog-home-muted);
    font-family: var(--blog-mono);
    font-size: 0.68rem;
}

.blog-home-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(17, 24, 39, 0.09);
    background: rgba(255, 255, 255, 0.38);
}

.blog-home-footer,
.blog-post-footer {
    padding-top: 1.65rem;
    padding-bottom: 1.65rem;
}

.blog-home-footer .blog-footer-note,
.blog-post-footer .blog-footer-note {
    font-size: 0.7rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

@media (min-width: 992px) {
    .blog-editorial-visual {
        position: absolute;
        inset: 0 auto 0 0;
        z-index: 0;
        display: block;
        width: calc((100% - var(--blog-editorial-copy-gutter)) / 2);
        background: url("../posts/260727_sparse_3d/assets/sparse-pipeline.png") center / auto 86% no-repeat;
        filter: saturate(0.68) contrast(1.03);
        pointer-events: none;
    }

    .blog-editorial-visual-left {
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc((100% - var(--blog-editorial-copy-gutter)) / 2);
        z-index: 0;
        display: block;
        width: calc((100% - var(--blog-editorial-copy-gutter)) / 2);
        background: url("../posts/260115_Varco3D/assets/remote-d832175607cd.png") right center / auto 86% no-repeat;
        filter: saturate(0.68) contrast(1.03);
        pointer-events: none;
    }

    .blog-home-page header.masthead.blog-editorial-hero::before {
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(16, 16, 17, 0.68), rgba(16, 16, 17, 0.84)),
            linear-gradient(90deg, rgba(16, 16, 17, 0.1), rgba(16, 16, 17, 0.34) 50%, rgba(16, 16, 17, 0.1));
        opacity: 1;
    }
}

@media (min-width: 1400px) {
    .blog-editorial-hero .blog-home-hero-deck {
        max-width: none;
        font-size: 0.82rem;
        white-space: nowrap;
        text-wrap: nowrap;
    }
}

@media (max-width: 991.98px) {
    .blog-feature-card {
        grid-template-areas:
            "label"
            "cover"
            "copy";
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding-bottom: 1.4rem;
    }

    .blog-feature-cover {
        min-height: 0;
    }

    .blog-feature-copy {
        padding: 0;
    }

    .blog-home-hero h1 {
        font-size: 2.82rem;
    }

    .blog-home-page header.masthead.blog-editorial-hero {
        min-height: 300px;
        padding: 4.65rem 0 2.45rem;
    }

    .blog-editorial-hero .blog-home-hero-copy {
        grid-template-areas:
            "imprint"
            "title"
            "deck"
            "index";
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-editorial-hero h1 {
        max-width: none;
        font-size: clamp(2.45rem, 5.6vw, 3rem);
        white-space: normal;
        text-wrap: balance;
    }

    .blog-editorial-hero .blog-home-hero-deck {
        max-width: 44rem;
    }

    .blog-publication-byline {
        justify-self: end;
        width: auto;
        max-width: none;
        margin-top: 0.68rem;
    }

    .blog-editorial-imprint {
        margin-bottom: 1.35rem;
    }

    .blog-feature-copy h2 {
        max-width: 28ch;
        font-size: 1.6rem;
    }

    .blog-home-archive-head {
        flex-direction: row;
        gap: 0.8rem;
    }

    .blog-home-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .blog-home-topbar {
        gap: 0.55rem;
        min-height: 3.35rem;
        padding: 0.7rem 1rem;
    }

    .blog-home-toolbar-actions {
        flex: 1 1 auto;
    }

    .blog-theme-toggle {
        flex: 0 0 auto;
    }

    .blog-home-page header.masthead.blog-home-hero {
        min-height: auto;
        padding: 4.55rem 0 2.45rem;
    }

    .blog-home-page header.masthead.blog-editorial-hero {
        min-height: 0;
        padding: 4.3rem 0 1.3rem;
    }

    .blog-feature-read {
        margin-top: 0.48rem;
    }

    .blog-home-hero h1 {
        max-width: none;
        font-size: clamp(1.82rem, 8vw, 2.1rem);
        line-height: 1.08;
        text-wrap: pretty;
    }

    .blog-editorial-hero h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8.2vw, 2.25rem);
        line-height: 0.98;
        text-wrap: balance;
    }

    .blog-home-hero-copy {
        transform: translateY(-0.35rem);
    }

    .blog-editorial-hero .blog-home-hero-copy {
        transform: none;
    }

    .blog-home-hero p {
        margin-top: 1rem;
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .blog-editorial-imprint {
        margin-bottom: 1.3rem;
    }

    .blog-editorial-hero .blog-home-hero-deck {
        margin: 0;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .blog-publication-byline {
        justify-self: start;
        width: auto;
        max-width: none;
        margin-top: 0.8rem;
    }

    .blog-home-search {
        grid-template-columns: minmax(0, 1fr) 2.2rem;
        width: min(54vw, 12.25rem);
    }

    .blog-archive-page .blog-home-search {
        width: min(38vw, 9.4rem);
    }

    .blog-archive-page .blog-home-back {
        min-width: 1.5rem;
        padding: 0;
    }

    .blog-archive-page .blog-home-back span {
        display: none;
    }

    .blog-home-search input {
        height: 2rem;
        padding: 0 0.2rem;
        font-size: 0.76rem;
    }

    .blog-feature-card {
        gap: 0.75rem;
        padding: 3rem 0 1.05rem;
    }

    .blog-feature-cover {
        width: 100%;
        min-width: 0;
        min-height: 0;
        aspect-ratio: 2 / 1;
    }

    .blog-feature-copy {
        padding: 0;
    }

    .blog-feature-label {
        font-size: 0.58rem;
    }

    .blog-home-archive {
        padding: 1rem 0;
    }

    .blog-editorial-archive {
        padding-top: 2.75rem;
    }

    .blog-editorial-utility-hero h1 {
        font-size: clamp(1.95rem, 8.2vw, 2.3rem);
        line-height: 1;
    }

    .blog-editorial-utility-hero p {
        margin-top: 0.82rem;
        font-size: 0.84rem;
        line-height: 1.58;
    }

    .blog-editorial-section-head {
        flex-wrap: nowrap;
        gap: 0.55rem;
    }

    .blog-archive-count,
    .blog-search-count {
        font-size: 0.58rem;
    }

    .blog-home-page:not(.blog-archive-page):not(.blog-search-page) .blog-home-archive-head {
        flex-wrap: wrap;
        gap: 0.55rem 0.65rem;
    }

    .blog-home-tabs {
        flex-basis: 100%;
        gap: 1rem;
    }

    .blog-home-tab {
        font-size: 0.68rem;
    }

    .blog-home-page .post-card-link {
        grid-template-columns: 1fr;
        gap: 0.78rem;
    }

    .blog-home-page .post-preview-media-right .post-card-link {
        grid-template-columns: 1fr;
    }

    .blog-home-page .post-preview-media-right .post-card-cover,
    .blog-home-page .post-preview-media-right .post-card-body {
        grid-column: auto;
        grid-row: auto;
    }

    .blog-home-page .post-card-cover {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .blog-home-page .post-card-body .post-title {
        font-size: 1.05rem;
    }

    .blog-home-page .post-card-body {
        padding-top: 0;
    }

    .blog-feature-copy h2 {
        min-height: 0;
        font-size: 1.2rem;
    }

    .blog-feature-subtitle {
        display: block;
        margin-top: 0.42rem;
        font-size: 0.84rem;
    }

    .blog-home-page .series-group {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.1rem 0;
    }

    .blog-home-page .series-group .series-post-list li {
        flex-direction: column;
        gap: 0.35rem;
    }

    .series-card-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .blog-home-page .scroll-top.button_top {
        display: none !important;
    }
}

html[data-theme="dark"] body {
    color: #d7dee8;
    background: #0e1117;
}

html[data-theme="dark"] #mainNav.is-fixed {
    border-bottom-color: rgba(216, 226, 239, 0.1);
    background-color: rgba(13, 17, 23, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] #mainNav {
    border-bottom-color: rgba(216, 226, 239, 0.1);
    background-color: rgba(13, 17, 23, 0.86);
}

html[data-theme="dark"] .share_modal-content {
    border-color: rgba(216, 226, 239, 0.14);
    color: #d6e0ea;
    background: rgba(17, 24, 32, 0.9);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .share_modal-icon {
    color: #8debd3;
    background: rgba(77, 215, 180, 0.1);
}

html[data-theme="dark"] .share_modal-message strong {
    color: #e8eef6;
}

html[data-theme="dark"] .share_modal-message small {
    color: #93a2b3;
}

html[data-theme="dark"] .share_modal_close {
    color: #93a2b3;
}

html[data-theme="dark"] .share_modal_close:hover,
html[data-theme="dark"] .share_modal_close:focus {
    color: #e8eef6;
    background: rgba(216, 226, 239, 0.08);
}

html[data-theme="dark"] #copyButton {
    border-color: rgba(216, 226, 239, 0.14);
    color: #a7b4c4;
    background: rgba(17, 24, 32, 0.72);
    box-shadow: none;
}

html[data-theme="dark"] #copyButton:hover {
    border-color: rgba(77, 215, 180, 0.3);
    color: #8debd3;
    background: rgba(21, 30, 41, 0.96);
}

html[data-theme="dark"] #mainNav.is-fixed .post-nav-brand,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-actions > li.post-nav-action > a,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-actions > li.post-nav-action > button,
html[data-theme="dark"] #mainNav .post-nav-brand,
html[data-theme="dark"] #mainNav .post-nav-actions > li.post-nav-action > a,
html[data-theme="dark"] #mainNav .post-nav-actions > li.post-nav-action > button {
    color: #dbe4ee;
}

html[data-theme="dark"] #mainNav.is-fixed .post-nav-brand:hover,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-actions > li.post-nav-action > a:hover,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-actions > li.post-nav-action > button:hover,
html[data-theme="dark"] #mainNav .post-nav-brand:hover,
html[data-theme="dark"] #mainNav .post-nav-actions > li.post-nav-action > a:hover,
html[data-theme="dark"] #mainNav .post-nav-actions > li.post-nav-action > button:hover {
    color: #4dd7b4;
}

html[data-theme="dark"] #mainNav .post-nav-portfolio-link,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-portfolio-link {
    border-left-color: rgba(216, 226, 239, 0.18);
    color: rgba(216, 226, 239, 0.66);
}

html[data-theme="dark"] #mainNav .post-nav-portfolio-link:hover,
html[data-theme="dark"] #mainNav .post-nav-portfolio-link:focus,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-portfolio-link:hover,
html[data-theme="dark"] #mainNav.is-fixed .post-nav-portfolio-link:focus {
    color: #4dd7b4;
}

html[data-theme="dark"] #mainNav .post-nav-search {
    border-color: rgba(216, 226, 239, 0.2);
    background: rgba(13, 17, 23, 0.5);
}

html[data-theme="dark"] #mainNav .post-nav-search:focus-within {
    border-color: rgba(77, 215, 180, 0.48);
    box-shadow: 0 0 0 3px rgba(77, 215, 180, 0.1);
}

html[data-theme="dark"] #mainNav .post-nav-search input {
    color: #e5edf6;
}

html[data-theme="dark"] #mainNav .post-nav-search input::placeholder {
    color: rgba(216, 226, 239, 0.48);
}

html[data-theme="dark"] #mainNav .post-nav-search button {
    color: #07110e;
    background: rgba(77, 215, 180, 0.9);
}

@media (min-width: 992px) {
    html[data-theme="dark"] #mainNav:not(.is-fixed) {
        border-bottom-color: transparent;
        background: transparent;
    }
}

html[data-theme="dark"] .blog-home-page {
    --blog-home-ink: #e6edf6;
    --blog-home-muted: #9aa7b7;
    --blog-home-line: rgba(216, 226, 239, 0.12);
    --blog-home-accent: #4dd7b4;
    --blog-home-accent-dark: #4dd7b4;
    --blog-home-cover: #101011;
    color: var(--blog-home-ink);
    background: #0e1117;
}

html[data-theme="dark"] .blog-home-main {
    background:
        linear-gradient(180deg, rgba(14, 17, 23, 0.98) 0%, rgba(14, 17, 23, 1) 34rem),
        #0e1117;
}

html[data-theme="dark"] .blog-home-topbar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

html[data-theme="dark"] .blog-home-page header.masthead.blog-home-hero::before {
    background:
        linear-gradient(90deg, rgba(8, 11, 16, 0.96) 0%, rgba(8, 11, 16, 0.78) 48%, rgba(8, 11, 16, 0.48) 100%),
        linear-gradient(180deg, rgba(8, 11, 16, 0.06), rgba(8, 11, 16, 0.76));
}

html[data-theme="dark"] .blog-home-page header.masthead.blog-editorial-hero {
    background: var(--blog-home-cover);
}

html[data-theme="dark"] .blog-editorial-hero h1 {
    color: var(--blog-home-cover-title);
}

html[data-theme="dark"] .blog-editorial-hero .blog-home-hero-deck {
    color: var(--blog-home-cover-copy);
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-topbar {
    background: transparent;
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search {
    border-bottom-color: rgba(216, 226, 239, 0.24);
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search input {
    color: #eef4fa;
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search input::placeholder {
    color: #8997a8;
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search button,
html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-theme-toggle,
html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-language {
    color: rgba(236, 242, 249, 0.88);
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search button:hover,
html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-search button:focus-visible,
html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-theme-toggle:hover,
html[data-theme="dark"] .blog-home-page:not(.blog-archive-page) .blog-home-language:hover {
    color: #4dd7b4;
}

html[data-theme="dark"] .blog-home-search {
    border-bottom-color: rgba(216, 226, 239, 0.28);
    color: rgba(236, 242, 249, 0.88);
    background: transparent;
}

html[data-theme="dark"] .blog-home-back {
    border: 0;
    color: rgba(236, 242, 249, 0.88);
    background: transparent;
}

html[data-theme="dark"] .blog-theme-toggle {
    color: rgba(236, 242, 249, 0.88);
    background: transparent;
}

html[data-theme="dark"] .blog-home-search button {
    color: rgba(236, 242, 249, 0.82);
    background: transparent;
}

html[data-theme="dark"] .blog-feature-card {
    border-color: rgba(216, 226, 239, 0.12);
    background: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .blog-feature-cover {
    border-color: rgba(216, 226, 239, 0.12);
}

html[data-theme="dark"] .blog-home-archive {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .blog-feature-label {
    color: #95a3b5;
    background: transparent;
}

html[data-theme="dark"] .blog-feature-label::after {
    background: rgba(216, 226, 239, 0.12);
}

html[data-theme="dark"] .blog-home-archive-rule,
html[data-theme="dark"] .blog-home-era-rule {
    background: rgba(216, 226, 239, 0.12);
}

html[data-theme="dark"] .blog-feature-meta,
html[data-theme="dark"] .blog-feature-date,
html[data-theme="dark"] .post-card-eyebrow,
html[data-theme="dark"] .blog-home-page .post-card-body > .post-meta,
html[data-theme="dark"] .blog-home-page .post-meta-sm {
    color: #95a3b5;
}

html[data-theme="dark"] .post-series-context-value {
    color: #4dd7b4;
}

html[data-theme="dark"] .post-series-context-label {
    color: #95a3b5;
}

html[data-theme="dark"] .post-series-context-separator {
    color: #687587;
}

html[data-theme="dark"] .blog-feature-copy h2,
html[data-theme="dark"] .blog-home-archive-head h2,
html[data-theme="dark"] .blog-home-page .post-card-body .post-title,
html[data-theme="dark"] .blog-home-page .series-group .series-title,
html[data-theme="dark"] .blog-home-page .series-group .series-post-list li a {
    color: #e6edf6;
}

html[data-theme="dark"] .blog-home-page .blog-feature-copy h2 a,
html[data-theme="dark"] .blog-home-page .post-card-body .post-title a {
    color: #e6edf6;
}

html[data-theme="dark"] .blog-home-page:not(.blog-archive-page):not(.blog-search-page) .blog-home-archive-head h2 {
    color: var(--blog-home-muted);
}

html[data-theme="dark"] .blog-feature-subtitle,
html[data-theme="dark"] .blog-home-page .post-card-body .post-subtitle {
    color: #bac6d5;
}

html[data-theme="dark"] .blog-feature-read,
html[data-theme="dark"] .blog-home-page .series-group .series-post-list li a:hover {
    color: #4dd7b4;
}

html[data-theme="dark"] .blog-feature-read::after {
    background: rgba(216, 226, 239, 0.42);
}

html[data-theme="dark"] .blog-home-tab {
    border-color: transparent;
    color: #9aa7b7;
    background: transparent;
}

html[data-theme="dark"] .blog-home-tab:hover,
html[data-theme="dark"] .blog-home-tab:focus-visible {
    color: #e6edf6;
    border-bottom-color: rgba(216, 226, 239, 0.32);
}

html[data-theme="dark"] .blog-home-tab.is-active {
    color: #e6edf6;
    border-bottom-color: #4dd7b4;
    background: transparent;
}

html[data-theme="dark"] .blog-home-page .post-preview,
html[data-theme="dark"] .blog-home-archive-head,
html[data-theme="dark"] .blog-home-page .series-group .series-post-list li {
    border-color: rgba(216, 226, 239, 0.1);
}

html[data-theme="dark"] .blog-home-page .post-card-cover {
    border-color: rgba(216, 226, 239, 0.12);
    background-color: #111820;
}

html[data-theme="dark"] .blog-home-page .post-card-cover::after {
    background:
        linear-gradient(180deg, rgba(8, 11, 16, 0.08), rgba(8, 11, 16, 0.24)),
        linear-gradient(90deg, rgba(8, 11, 16, 0), rgba(8, 11, 16, 0.08));
    opacity: 1;
}

html[data-theme="dark"] .blog-home-page .series-group {
    border-bottom-color: rgba(216, 226, 239, 0.1);
    background: transparent;
}

html[data-theme="dark"] .blog-home-page .post-tag {
    border-color: transparent;
    color: #95a3b5;
    background: transparent;
}

html[data-theme="dark"] .blog-home-page .post-tag-separator {
    color: #687587;
}

html[data-theme="dark"] .blog-search-count {
    border: 0;
    color: #8debd3;
    background: transparent;
}

html[data-theme="dark"] .blog-search-state {
    color: #9aa7b7;
}

html[data-theme="dark"] .blog-search-state strong {
    color: #e6edf6;
}

html[data-theme="dark"] .blog-home-footer,
html[data-theme="dark"] .blog-post-footer {
    border-color: rgba(216, 226, 239, 0.1) !important;
    background: rgba(255, 255, 255, 0.025);
}

.blog-home-page .sidebar-mobile-toggle {
    --site-sidebar-accent: #4dd7b4;
}

html[data-theme="dark"] .button_top {
    border-color: rgba(216, 226, 239, 0.16);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .button_top:hover,
html[data-theme="dark"] .button_top:focus-visible {
    background: #111827;
}

@media (max-width: 1199px) {
    .blog-home-page .sidebar-mobile-toggle {
        display: none;
    }

    .blog-home-topbar {
        position: sticky;
        top: 0;
        height: 3.65rem;
        margin-bottom: -3.65rem;
        border-bottom: 1px solid transparent;
        transition:
            color 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .blog-home-topbar.is-scrolled {
        border-bottom-color: rgba(17, 24, 39, 0.09);
        background: rgba(246, 247, 244, 0.9);
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
        backdrop-filter: blur(16px) saturate(1.18);
    }

    .blog-home-topbar.is-scrolled .blog-home-search {
        border-bottom-color: rgba(17, 24, 39, 0.22);
        color: #303947;
        background: transparent;
    }

    .blog-home-topbar.is-scrolled .blog-home-back {
        border: 0;
        color: #303947;
        background: transparent;
    }

    .blog-home-topbar.is-scrolled .blog-home-language {
        color: #303947;
    }

    .blog-home-topbar.is-scrolled .blog-home-language:hover {
        color: var(--blog-home-accent-dark);
    }

    .blog-home-topbar.is-scrolled .blog-theme-toggle {
        color: #303947;
        background: transparent;
    }

    .blog-home-topbar.is-scrolled .blog-theme-toggle:hover {
        color: var(--blog-home-accent-dark);
    }

    .blog-home-topbar.is-scrolled .blog-home-search input {
        color: #1b2430;
    }

    .blog-home-topbar.is-scrolled .blog-home-search input::placeholder {
        color: #7a8491;
    }

    .blog-home-topbar.is-scrolled .blog-home-search button {
        color: #303947;
        background: transparent;
    }

    html.blog-topbar-scrolled .blog-home-page .sidebar-mobile-toggle {
        border-color: rgba(17, 24, 39, 0.12);
        color: #28323e;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled {
        border-bottom-color: rgba(216, 226, 239, 0.1);
        background: rgba(14, 17, 23, 0.9);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-search {
        border-bottom-color: rgba(216, 226, 239, 0.2);
        color: rgba(236, 242, 249, 0.88);
        background: transparent;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-back {
        border: 0;
        color: rgba(236, 242, 249, 0.88);
        background: transparent;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-language {
        color: rgba(236, 242, 249, 0.9);
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-language:hover {
        color: #4dd7b4;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-theme-toggle {
        color: rgba(236, 242, 249, 0.88);
        background: transparent;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-theme-toggle:hover {
        color: #4dd7b4;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-search input {
        color: #eef4fa;
    }

    html[data-theme="dark"] .blog-home-topbar.is-scrolled .blog-home-search input::placeholder {
        color: #8997a8;
    }

html[data-theme="dark"].blog-topbar-scrolled .blog-home-page .sidebar-mobile-toggle {
        border-color: rgba(216, 226, 239, 0.14);
        color: #edf4fa;
        background: rgba(22, 28, 38, 0.94);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    }
}

@media (max-width: 767.98px) {
    .blog-home-topbar .blog-home-search[data-collapsible-search] {
        grid-template-columns: minmax(0, 1fr) 2.2rem;
        width: 2.2rem;
        overflow: hidden;
        transition:
            width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.2s ease;
    }

    .blog-home-topbar .blog-home-search[data-collapsible-search]:not(.is-expanded) {
        border-bottom-color: transparent;
    }

    .blog-home-search[data-collapsible-search] input {
        padding-left: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease;
    }

    .blog-home-search[data-collapsible-search].is-expanded {
        width: min(11rem, calc(100vw - 9.5rem));
    }

    .blog-home-search[data-collapsible-search].is-expanded input {
        opacity: 1;
        pointer-events: auto;
    }
}

#mainNav .post-nav-actions > li.post-nav-action > a.post-nav-language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2.08rem;
    padding: 0 0.12rem;
    border: 0;
    font-family: var(--blog-sans, "Inter", system-ui, sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

#mainNav .post-nav-actions > li.post-nav-action > a.post-nav-language-link:hover {
    color: #4dd7b4;
}
