/* Lightworks Guide: compact software helpdesk theme. */

:root {
    --paper: #f5f6f1;
    --paper-2: #eceee6;
    --ink: #111713;
    --ink-2: #27322c;
    --muted: #68736c;
    --line: #d8ddd4;
    --surface: #ffffff;
    --surface-2: #f0f2eb;
    --night: #101410;
    --night-2: #171d18;
    --night-line: #2a342d;
    --lw-green: #72d89f;
    --lw-green-2: #34bd7a;
    --blue: #4d9de0;
    --amber: #f2b84b;
    --red: #ef6f5e;
    --shadow: 0 14px 34px rgba(17, 23, 19, 0.12);
    --shadow-soft: 0 8px 20px rgba(17, 23, 19, 0.07);
    --radius: 8px;
    --radius-sm: 6px;
    --container: 1180px;
    --container-narrow: 760px;
    --font-sans: var(--gh-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
    --font-heading: var(--gh-font-heading, var(--font-sans));
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.64;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: #08704f;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--ink);
}

button {
    font: inherit;
    color: inherit;
}

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

::selection {
    background: var(--lw-green);
    color: var(--night);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.viewport {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 1 auto;
}

.kicker {
    margin: 0 0 0.55rem;
    color: #1b7e5e;
    font-size: 0.77rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.36rem 0.72rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
}

.tag-pill:hover {
    border-color: var(--lw-green-2);
    background: #edf8ef;
    color: var(--ink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 20, 16, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    color: #fff;
    text-decoration: none;
}

.site-brand:hover {
    color: #fff;
}

.site-brand-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 36px;
    flex: 0 0 auto;
    padding: 0 0.2rem;
}

.site-brand-logo {
    width: 166px;
    height: auto;
}

.site-brand-copy {
    display: grid;
    gap: 0.03rem;
    padding-left: 0.72rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-brand-name {
    color: #fff;
    font-size: 1.04rem;
    line-height: 1.05;
    font-weight: 900;
}

.site-brand-sub {
    color: #9fb2a6;
    font-size: 0.72rem;
    line-height: 1.1;
    font-weight: 750;
}

.site-nav {
    display: flex;
}

.site-nav .nav,
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
}

.site-nav .nav li,
.nav-list li {
    margin: 0;
    padding: 0;
}

.site-nav .nav li a,
.nav-list li a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.4rem 0.68rem;
    border-radius: var(--radius-sm);
    color: #dbe7dd;
    font-size: 0.92rem;
    font-weight: 780;
    text-decoration: none;
}

.site-nav .nav li a:hover,
.nav-list li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-nav .nav li.nav-current > a,
.nav-list li.nav-current > a {
    background: var(--lw-green);
    color: var(--night);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.home-hero {
    padding: 1.35rem 0 1.25rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
    align-items: start;
    gap: 1.6rem;
}

.home-hero-copy {
    min-width: 0;
    padding: 0.75rem 0 0;
}

.hero-title {
    max-width: 760px;
    margin: 0 0 0.72rem;
    color: var(--ink);
    font-size: 3rem;
    line-height: 1.04;
    font-weight: 920;
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.hero-sub {
    max-width: 690px;
    margin: 0 0 1rem;
    color: var(--ink-2);
    font-size: 1.02rem;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-lsi {
    max-width: 690px;
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.52;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.84rem;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
}

.hero-button--primary {
    background: var(--night);
    color: #fff;
}

.hero-button--primary:hover {
    background: #243027;
    color: #fff;
}

.hero-button--secondary {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
}

.hero-button--secondary:hover {
    border-color: var(--lw-green-2);
    color: var(--ink);
}

.hero-banner {
    min-width: 0;
    margin: 0;
    border: 1px solid var(--night-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--night);
    box-shadow: var(--shadow);
}

.hero-banner-screen {
    position: relative;
    background: #0b0f0c;
}

.hero-banner-screen img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.home-section {
    padding: 2.45rem 0;
    border-bottom: 1px solid var(--line);
}

.home-section:last-of-type {
    border-bottom: 0;
}

.guide-list {
    display: grid;
    gap: 0.68rem;
}

.guide-row {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.guide-row-link {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 92px;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
    padding: 0.72rem;
    color: inherit;
    text-decoration: none;
}

.guide-row:hover {
    border-color: var(--lw-green-2);
}

.guide-row-media {
    width: 118px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--night);
}

.guide-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-row-media span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--lw-green);
    font-weight: 900;
}

.guide-row-tag {
    display: inline-flex;
    margin-bottom: 0.18rem;
    color: #1b7e5e;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.guide-row h3 {
    margin: 0 0 0.22rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.25;
}

.guide-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.guide-row-meta {
    display: grid;
    justify-items: end;
    gap: 0.2rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 760;
}

.path-grid,
.post-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.post-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

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

.section-subtitle {
    max-width: 760px;
    margin: -0.4rem 0 1.7rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.path-card,
.post-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.path-card {
    display: block;
    min-height: 220px;
    padding: 1.2rem;
    color: var(--ink);
    text-decoration: none;
}

.path-card-kicker {
    display: block;
    margin-bottom: 0.85rem;
    color: var(--lw-green-3);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.path-card:hover,
.post-card:hover {
    border-color: var(--lw-green-2);
    box-shadow: var(--shadow);
    color: var(--ink);
}

.path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    margin-bottom: 1.15rem;
    border-radius: var(--radius-sm);
    background: var(--night);
    color: var(--lw-green);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 850;
}

.path-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    line-height: 1.25;
}

.path-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.post-card {
    overflow: hidden;
}

.post-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.post-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--night);
    overflow: hidden;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--night);
}

.post-card-image--placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: #1d261f;
    color: var(--lw-green);
    font-weight: 900;
}

.post-card-badge {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    max-width: calc(100% - 1.6rem);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    background: rgba(245, 246, 241, 0.94);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 850;
}

.post-card-body {
    padding: 1rem;
}

.post-card-title {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    line-height: 1.32;
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.post-card-excerpt {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.post-card-meta,
.byline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 680;
}

.byline-dot {
    color: #a6aea8;
}

.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.pagination a,
.pagination span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink-2);
    font-weight: 760;
    text-decoration: none;
}

.tag-header,
.author-header,
.post-full-header {
    padding: 2.6rem 0 2rem;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
}

.tag-title,
.author-name,
.post-full-title {
    margin: 0 0 0.85rem;
    color: var(--ink);
    font-size: 2.8rem;
    line-height: 1.07;
    font-weight: 920;
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.tag-description,
.author-bio,
.post-full-excerpt {
    margin: 0;
    color: var(--ink-2);
    font-size: 1.1rem;
    line-height: 1.62;
}

.tag-meta {
    margin: 1rem 0 0;
    color: var(--muted);
    font-weight: 760;
}

.breadcrumbs {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.breadcrumbs li::after {
    content: "/";
    margin-left: 0.35rem;
    color: #a6aea8;
}

.breadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.post-full-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.byline-author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
}

.byline-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.post-full-primary-tag {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: #1b7e5e;
    font-weight: 850;
    text-decoration: none;
}

.post-full-image {
    max-width: 1180px;
    margin: 2rem auto 0;
    padding: 0 1.25rem;
}

.post-full-image img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.post-full-image figcaption {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.post-full-content {
    padding: 2.45rem 0 3rem;
}

.post-content {
    color: var(--ink-2);
    font-size: 1.06rem;
}

.post-content > *:first-child {
    margin-top: 0;
}

.post-content h2,
.post-content h3 {
    color: var(--ink);
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.post-content h2 {
    margin: 2.35rem 0 0.85rem;
    font-size: 1.72rem;
    line-height: 1.2;
}

.post-content h3 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.24rem;
    line-height: 1.25;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin: 0 0 1.1rem;
}

.post-content li + li {
    margin-top: 0.35rem;
}

.post-content strong {
    color: var(--ink);
}

.post-content blockquote {
    margin: 1.6rem 0;
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--lw-green-2);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--surface-2);
    color: var(--ink);
}

.post-content hr {
    height: 1px;
    margin: 2rem 0;
    border: 0;
    background: var(--line);
}

.post-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 0.96rem;
}

.post-content th,
.post-content td {
    padding: 0.75rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
    word-break: normal;
}

.post-content th:first-child,
.post-content td:first-child {
    min-width: 8.5rem;
}

.post-content th {
    background: var(--night);
    color: var(--paper);
}

.post-content tr:nth-child(even) td {
    background: rgba(236, 238, 230, 0.58);
}

.kg-width-wide {
    width: min(100vw - 2rem, 1040px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.kg-width-full {
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.kg-width-full img {
    width: 100%;
    border-radius: 0;
}

.kg-bookmark-card {
    margin: 1.8rem 0;
}

.kg-bookmark-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 1rem;
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    color: var(--ink);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.kg-bookmark-content {
    min-width: 0;
    padding: 1rem;
}

.kg-bookmark-title {
    margin: 0 0 0.45rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 850;
}

.kg-bookmark-description {
    display: -webkit-box;
    margin: 0 0 0.8rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 760;
}

.kg-bookmark-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kg-bookmark-thumbnail {
    min-height: 150px;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content pre,
.post-content code {
    font-family: var(--font-mono);
}

.post-content code {
    padding: 0.12rem 0.28rem;
    border-radius: 4px;
    background: var(--surface-2);
    color: #08704f;
    font-size: 0.92em;
}

.post-content pre {
    overflow-x: auto;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--night);
    color: var(--paper);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.post-tags-label {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 850;
}

.post-author-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1.6rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.post-author-avatar,
.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.post-author-name {
    margin: 0.1rem 0 0.2rem;
    font-size: 1.15rem;
}

.post-author-name a {
    color: var(--ink);
    text-decoration: none;
}

.post-author-bio {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.related-posts {
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    background: var(--paper-2);
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    color: var(--muted);
}

.site-footer {
    padding: 2.5rem 0 1.3rem;
    background: var(--night);
    color: #d8e4dc;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
}

.site-footer-brand {
    display: grid;
    justify-items: start;
    gap: 0.35rem;
}

.site-footer-logo {
    width: 178px;
    height: auto;
    margin-bottom: 0.35rem;
}

.site-footer .site-brand-name,
.site-footer h4 {
    color: #fff;
}

.site-footer-tagline {
    max-width: 28rem;
    margin: 0.85rem 0 0;
    color: #adbbb2;
}

.site-footer-nav h4 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.site-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-nav li + li {
    margin-top: 0.4rem;
}

.site-footer a {
    color: #d8e4dc;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--lw-green);
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(216, 228, 216, 0.16);
    color: #adbbb2;
    font-size: 0.88rem;
}

.site-footer-bottom p {
    margin: 0;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    height: 3px;
    width: 0;
    background: var(--lw-green);
}

@media (max-width: 1040px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hero-banner {
        max-width: 720px;
    }

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

@media (max-width: 760px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    .site-header-inner {
        min-height: 64px;
    }

    .site-brand-product {
        width: 142px;
        height: 32px;
    }

    .site-brand-logo {
        width: 140px;
    }

    .site-brand-copy {
        padding-left: 0.55rem;
    }

    .site-brand-sub {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 0.7rem 1rem 1rem;
        border-bottom: 1px solid var(--night-line);
        background: var(--night);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav .nav,
    .nav-list {
        align-items: stretch;
        flex-direction: column;
    }

    .site-nav .nav li a,
    .nav-list li a {
        width: 100%;
        justify-content: flex-start;
        min-height: 44px;
    }

    .home-hero {
        padding: 1.2rem 0;
    }

    .hero-title {
        font-size: 2.28rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section-heading {
        display: block;
    }

    .home-section {
        padding: 2.1rem 0;
    }

    .guide-row-link {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 0.78rem;
    }

    .guide-row-media {
        width: 92px;
    }

    .guide-row-meta {
        grid-column: 2;
        justify-items: start;
        grid-auto-flow: column;
        justify-content: start;
        gap: 0.65rem;
    }

    .path-grid,
    .post-grid,
    .post-grid--featured {
        grid-template-columns: 1fr;
    }

    .tag-title,
    .author-name,
    .post-full-title {
        font-size: 2.1rem;
    }

    .post-full-header,
    .tag-header,
    .author-header {
        padding: 2.1rem 0 1.6rem;
    }

    .post-full-content {
        padding: 2rem 0;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.46rem;
    }

    .kg-bookmark-container {
        grid-template-columns: 1fr;
    }

    .kg-bookmark-thumbnail {
        order: -1;
        min-height: 180px;
    }

    .post-author-card {
        grid-template-columns: 1fr;
    }

    .site-footer-inner,
    .site-footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .site-footer-bottom {
        gap: 0.5rem;
    }
}

@media (max-width: 430px) {
    .site-brand-product {
        width: 122px;
    }

    .site-brand-logo {
        width: 120px;
    }

    .site-brand-name {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-button {
        width: 100%;
    }
}
