/* =========================================================
   MarTechConvo — Ghost theme
   Architectural thinking for marketing technology
   ========================================================= */

/* ---------- Custom fonts ---------- */
@font-face {
    font-family: 'Suisse Intl';
    src: url('../fonts/SuisseIntl-Regular.woff2') format('woff2'),
         url('../fonts/SuisseIntl-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('../fonts/SuisseIntl-Bold.woff2') format('woff2'),
         url('../fonts/SuisseIntl-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl Mono';
    src: url('../fonts/SuisseIntlMono-Regular.woff2') format('woff2'),
         url('../fonts/SuisseIntlMono-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editorial Old Ultralight';
    src: url('../fonts/EditorialOld-Ultralight.woff2') format('woff2'),
         url('../fonts/EditorialOld-Ultralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editorial Old Ultralight';
    src: url('../fonts/EditorialOld-UltralightItalic.woff2') format('woff2'),
         url('../fonts/EditorialOld-UltralightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
    --color-marketing: #E85D4E;
    --color-technology: #2563EB;
    --color-architecture: #059669;

    --color-text: #1a1a1a;
    --color-text-muted: #6b7280;
    --color-text-soft: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-soft: #f9fafb;
    --color-border: #e5e7eb;
    --color-border-soft: #f3f4f6;

    --font-ui: 'Suisse Intl', system-ui, -apple-system, sans-serif;
    --font-body: 'Suisse Intl', system-ui, -apple-system, sans-serif;
    --font-heading: 'Editorial Old Ultralight', Georgia, serif;
    --font-mono: 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);

    --content-max: 720px;
    --wide-max: 1200px;

    --header-height: 84px;
    --header-height-compact: 64px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--color-technology);
    text-decoration: none;
    transition: color 0.15s var(--ease);
}

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

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-style: normal;
}

p {
    margin: 0 0 1.25em;
}

ul, ol {
    margin: 0;
    padding: 0;
}

/* ---------- Layout ---------- */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s var(--ease), border-color 0.3s var(--ease);
}

body.scrolled .header {
    padding: 0.75rem 2rem;
    border-bottom-color: var(--color-border);
}

.header-logo-anchor {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
}

.header-logo-anchor:hover {
    color: inherit;
}

/* ---------- The MarTechConvo mark ---------- */
.mta-text {
    list-style: none;
    border-bottom: 0;
    line-height: 1;
    z-index: 10;
    display: flex;
    align-items: baseline;
    letter-spacing: 0;
    padding-left: 20px;
    padding-right: 8px;
}

.mta-text .marketing {
    font-family: 'Suisse Intl Mono';
}

.mta-text .architecture {
    font-family: 'Editorial Old Ultralight';
    font-style: italic;
}

.mta-text li {
    display: block;
    font-family: 'Suisse Intl';
    font-size: 17px;
    font-weight: bold;
    color: white;
    line-height: 1;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    max-width: 3em;
    padding-bottom: 2px;
    padding-top: 2px;
    font-feature-settings: "liga" 1, "dlig" 1, "hlig" 1, "calt" 1;
}

.mta-text li.mta-spaced {
    margin-left: 0.5em;
}

.mta-text li.mta-last {
    margin-left: 0;
}

/* Pillar colors: backgrounds on .mta-bg blocks */
.mta-bg.marketing   { background-color: var(--color-marketing);   color: #fff; }
.mta-bg.technology  { background-color: var(--color-technology);  color: #fff; }
.mta-bg.architecture { background-color: var(--color-architecture); color: #fff; }

/* Collapse animation — triggered by JS after scrolling past threshold */
.mta-text.mta-hidden li.mta-ghost {
    opacity: 0;
    max-width: 0;
}

.mta-text.mta-hidden li.mta-spaced {
    padding-left: 0;
    margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
    .mta-text li {
        transition: none;
    }
}

/* ---------- Nav ---------- */
.header-nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-item a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s var(--ease);
}

.header-nav-item a:hover {
    color: white;
    border-bottom-color: var(--color-technology);
}

/* ---------- Home hero ---------- */
.home-hero {
    padding: 5rem 2rem 3rem;
    max-width: var(--wide-max);
    margin: 0 auto;
}

.home-hero-inner {
    max-width: 720px;
}

.home-hero-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.home-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin: 0;
}

/* ---------- Post feed (homepage, archives) ---------- */
.post-feed {
    padding: 2rem 2rem 5rem;
    max-width: var(--wide-max);
    margin: 0 auto;
}

.post-feed-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.post-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.2s var(--ease);
}

.post-card:hover {
    transform: translateY(-2px);
}

.post-card-image-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-soft);
    margin-bottom: 1rem;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.post-card:hover .post-card-image {
    transform: scale(1.03);
}

.post-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-card-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--color-text-muted);
}

.post-card-tag-architecture { background: var(--color-architecture); }
.post-card-tag-perspective  { background: var(--color-marketing); }
.post-card-tag-solutions    { background: var(--color-technology); }

.post-card-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin: 0;
}

.post-card-title a {
    color: var(--color-text);
}

.post-card-title a:hover {
    color: var(--color-technology);
}

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

.post-card-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.post-card-meta > * + *::before {
    content: "·";
    margin-right: 0.75rem;
    color: var(--color-text-soft);
}

/* ---------- Single post ---------- */
.post,
.page {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.post-header,
.page-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.post-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--color-text-muted);
    margin-bottom: 1rem;
}

.post-tag-architecture { background: var(--color-architecture); }
.post-tag-perspective  { background: var(--color-marketing); }
.post-tag-solutions    { background: var(--color-technology); }

.post-title,
.page-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.post-excerpt {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.post-meta > * + *::before {
    content: "·";
    margin-right: 0.75rem;
    color: var(--color-text-soft);
}

.post-author {
    color: var(--color-text);
    font-weight: 500;
}

.post-feature-image {
    max-width: var(--wide-max);
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.post-feature-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

/* ---------- Post list (post-list-post variant) ---------- */
.post-list-post .post-title a {
    font-family: 'Editorial Old Ultralight';
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 4.5rem;
    font-style: italic;
}

.post-list-post__featured {
    border-radius: 1.5rem;
}

.post-list-post__featured .post-meta {
    color: white;
}

.post-list-post__featured .post-excerpt {
    color: white;
}

/* ---------- Post content (prose styling) ---------- */
.post-content,
.page-content {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text);
}

.post-content > * + *,
.page-content > * + * {
    margin-top: 1.25em;
}

.post-content p { margin: 0; }

.post-content h2,
.page-content h2 {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: 1.75rem;
    margin-top: 2.5em;
    margin-bottom: 0.5em;
    letter-spacing: -0.015em;
}

.post-content h3,
.page-content h3 {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: normal;
    font-size: 1.25rem;
    margin-top: 2em;
    margin-bottom: 0.4em;
    letter-spacing: -0.01em;
}

.post-content a,
.page-content a {
    color: var(--color-technology);
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: border-color 0.15s var(--ease);
}

.post-content a:hover,
.page-content a:hover {
    border-bottom-color: var(--color-technology);
}

.post-content blockquote,
.page-content blockquote {
    margin: 2em 0;
    padding: 0.5em 0 0.5em 1.5em;
    border-left: 3px solid var(--color-marketing);
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 1.1em;
}

.post-content ul,
.post-content ol,
.page-content ul,
.page-content ol {
    padding-left: 1.5em;
}

.post-content li + li,
.page-content li + li {
    margin-top: 0.4em;
}

.post-content pre,
.page-content pre {
    margin: 1.5em 0;
    padding: 1.25em 1.5em;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.5;
}

.post-content code,
.page-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    padding: 0.15em 0.35em;
    background: var(--color-bg-soft);
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

.post-content pre code,
.page-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
}

.post-content figure,
.page-content figure {
    margin: 2em 0;
}

.post-content figure img,
.page-content figure img {
    border-radius: var(--radius-md);
}

.post-content figcaption,
.page-content figcaption {
    margin-top: 0.75em;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-ui);
}

.post-content hr,
.page-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 3em 0;
}

/* Ghost card classes */
.kg-card {
    margin: 2em 0;
}

.kg-width-wide {
    max-width: 1000px;
    margin-left: calc(50% - 500px);
    margin-right: calc(50% - 500px);
}

.kg-width-full {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ---------- Ghost Koenig card styles ---------- */
/* Required by gscan — Ghost editor outputs these classes */

.kg-gallery-container {
    display: flex;
    flex-direction: column;
    max-width: 1040px;
    margin: 2em auto;
    gap: 0.75rem;
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
}

.kg-gallery-image img {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.kg-bookmark-card {
    width: 100%;
    margin: 2em 0;
}

.kg-bookmark-container {
    display: flex;
    min-height: 148px;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-ui);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.kg-bookmark-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.kg-bookmark-content {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem;
}

.kg-bookmark-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.kg-bookmark-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.25rem;
    max-height: 3em;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.kg-bookmark-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.kg-bookmark-author {
    line-height: 1.5em;
}

.kg-bookmark-publisher {
    overflow: hidden;
    max-width: 240px;
    line-height: 1.5em;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.kg-bookmark-author::before {
    content: "•";
    margin: 0 0.5rem;
}

.kg-bookmark-thumbnail {
    position: relative;
    flex-grow: 1;
    min-width: 33%;
    max-height: 100%;
}

.kg-bookmark-thumbnail img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .kg-bookmark-container { flex-direction: column-reverse; }
    .kg-bookmark-thumbnail { min-height: 160px; }
}

/* Koenig callout, toggle, and button cards — simple, on-brand defaults */
.kg-callout-card {
    display: flex;
    padding: 1rem 1.25rem;
    margin: 2em 0;
    background: var(--color-bg-soft);
    border-left: 3px solid var(--color-technology);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: 1rem;
}

.kg-callout-emoji { margin-right: 0.75rem; }

.kg-toggle-card {
    margin: 2em 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.kg-toggle-heading-text { font-weight: 600; }

/* ---------- Mermaid diagrams ---------- */
.mermaid-diagram,
.kg-card.mermaid-card {
    margin: 2.5em 0;
    padding: 1.5em;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow-x: auto;
}

.mermaid-diagram svg {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.mermaid-caption {
    display: block;
    margin-top: 0.75em;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ---------- Post footer / tags ---------- */
.post-footer {
    max-width: var(--content-max);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ---------- Related posts ---------- */
.related-posts {
    max-width: var(--wide-max);
    margin: 5rem auto 0;
    padding: 3rem 2rem 0;
    border-top: 1px solid var(--color-border);
}

.related-posts-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* ---------- Archive headers (tag, author) ---------- */
.archive-header {
    padding: 4rem 2rem 2rem;
    max-width: var(--wide-max);
    margin: 0 auto;
}

.archive-header-inner {
    max-width: 720px;
}

.archive-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.archive-title {
    font-family: var(--font-heading);
    font-weight: 200;
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.archive-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
    max-width: 580px;
}

.archive-count {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    margin: 0;
}

.author-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 0.95rem;
}

.pagination a {
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all 0.15s var(--ease);
}

.pagination a:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

/* ---------- Error page ---------- */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
    text-align: center;
}

.error-code {
    font-family: var(--font-body);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: var(--color-marketing);
}

.error-message {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.error-home-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-text);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.error-home-link:hover {
    background: var(--color-technology);
    color: #fff;
}

/* ---------- Footer ---------- */
.footer {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    max-width: var(--wide-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.footer-brand-tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--color-text);
}

.footer-meta {
    font-size: 0.875rem;
    color: var(--color-text-soft);
    flex-basis: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .header-nav { display: none; }

    .mta-text { font-size: 1.25rem; }

    .home-hero { padding: 3rem 1.25rem 2rem; }

    .post-feed { padding: 1.5rem 1.25rem 3rem; }

    .post-feed-inner { gap: 2rem; }

    .post, .page { padding: 2rem 1.25rem 3rem; }

    .post-content, .page-content { font-size: 1.05rem; }

    .post-feature-image { padding: 0 1.25rem; }

    .footer { padding: 2rem 1.25rem; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
