/* Homepage navigation proportions, scoped to the English blog listing. */
.blog-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid #e7ded3;
    background: #fbf8f3;
    color: #17120f;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: normal;
}
.blog-header,
.blog-header * { box-sizing: border-box; }
.blog-header [hidden] { display: none !important; }
.blog-header a,
.blog-header button { -webkit-tap-highlight-color: transparent; }
.blog-header :focus-visible { outline: 3px solid #9d724e; outline-offset: 5px; }
.blog-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(100% - 3rem, 72rem);
    min-height: 5rem;
    margin-inline: auto;
}
.blog-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #17120f;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -.04em;
    text-decoration: none;
    white-space: nowrap;
}
.blog-brand img {
    display: block;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}
.blog-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .85rem;
    font-weight: 400;
}
.blog-nav-links > a:not(.blog-nav-cta) { color: #5d554d; text-decoration: none; }
.blog-nav-links > a:not(.blog-nav-cta):hover { color: #17120f; }
.blog-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: .9rem 1.25rem;
    border: 1px solid #17120f;
    border-radius: .85rem;
    background: #17120f;
    color: #fffaf4;
    font-size: .88rem;
    font-weight: 650;
    text-align: center;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}
.blog-nav-cta:hover { background: #342a23; transform: translateY(-2px); }
.blog-menu-button {
    display: none;
    flex: 0 0 auto;
    padding: .7rem;
    border: 1px solid #d6c9bb;
    border-radius: .65rem;
    background: transparent;
    color: #17120f;
    font: inherit;
    cursor: pointer;
}
.blog-menu-button svg { display: block; width: 1.4rem; height: 1.4rem; }
.blog-mobile-nav {
    max-height: calc(100vh - 5rem);
    max-height: calc(100dvh - 5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: .5rem 1.5rem 1.5rem;
    border-top: 1px solid #e7ded3;
    font-size: 1rem;
}
.blog-mobile-nav a { display: block; padding: .85rem .25rem; color: #17120f; text-decoration: none; }
.blog-mobile-nav .blog-nav-cta { margin-top: .5rem; padding: .85rem; color: #fffaf4; }
@media (max-width: 1199px) {
    .blog-nav-links { display: none; }
    .blog-menu-button { display: block; }
}
@media (min-width: 1200px) {
    .blog-mobile-nav { display: none; }
}
@media (max-width: 600px) {
    .blog-nav { width: min(100% - 2.5rem, 72rem); gap: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
    .blog-nav-cta { transition: none; }
}
