/* Exportkontor blog stylesheet.
   The chrome (fonts, colour tokens, header, footer) is copied verbatim from
   client/public/exportkontor/index.html so an article page is visually
   indistinguishable from the lander. The article prose rules at the bottom are
   new: the lander has no article typography at all, every paragraph style there
   is scoped to a marketing section class, so without these an article would
   render as browser-default text on a branded page.

   Deliberately NOT copied: the lander's bare `table { min-width: 720px }` rule,
   which would blow out article tables on mobile. The .prose table rule below
   replaces it. */

@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400 700;
font-display: swap;
src: url('/exportkontor/assets/fonts/inter-latin.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400 700;
font-display: swap;
src: url('/exportkontor/assets/fonts/inter-latin-ext.woff2') format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: 'Source Serif 4';
font-style: normal;
font-weight: 500 700;
font-display: swap;
src: url('/exportkontor/assets/fonts/source-serif-4-latin.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Source Serif 4';
font-style: normal;
font-weight: 500 700;
font-display: swap;
src: url('/exportkontor/assets/fonts/source-serif-4-latin-ext.woff2') format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0F1524;
  --ink-2: #161d30;
  --ink-soft: #333a4a;
  --paper: #F6F4EF;
  --card: #FFFFFF;
  --line: #E3DFD5;
  --line-dark: rgba(246,244,239,.14);
  --brass: #A67C1E;
  --brass-bright: #C9992F;
  --brass-soft: #D9B45C;
  --muted: #6d6a61;
  --muted-dark: rgba(246,244,239,.66);
  --faint-dark: rgba(246,244,239,.42);
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1120px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--card);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--brass-soft); color: var(--ink); }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, .serif { font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--brass-bright);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 32px;
  text-decoration: none;
  border: 1px solid var(--brass-bright);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--brass-soft); border-color: var(--brass-soft); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--paper);
  font-weight: 500;
  font-size: 16px;
  padding: 17px 28px;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  transition: border-color .18s ease, background .18s ease;
}
.btn-ghost:hover { border-color: rgba(246,244,239,.45); background: rgba(246,244,239,.05); }

.wordmark {
  color: var(--paper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wordmark .wm-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.wordmark .wm-sub {
  display: block;
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--brass-soft);
  font-weight: 500;
  margin-top: 2px;
}

/* ---------- Header ---------- */
header { background: var(--ink); border-bottom: 1px solid var(--line-dark); }
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; max-width: var(--maxw); margin: 0 auto;
}
.header-cta {
  color: var(--paper); font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(201,153,47,.55); padding: 10px 18px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.header-cta:hover { border-color: var(--brass-bright); color: var(--brass-soft); background: rgba(201,153,47,.08); }

/* ---------- Footer ---------- */
footer { background: var(--ink); border-top: 1px solid var(--line-dark); color: var(--faint-dark); font-size: 13.5px; }
.footer-in {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 22px;
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  justify-content: space-between; align-items: center;
}
footer a { color: var(--muted-dark); text-decoration: none; }
footer a:hover { color: var(--brass-soft); }
.footer-links { display: flex; gap: 24px; }

@media (max-width: 480px) {
  .wordmark .wm-sub { display: none; }
  .wordmark .wm-text { font-size: 13px; letter-spacing: .12em; }
  .header-cta { font-size: 13px; padding: 10px 12px; }
}

@media (min-width: 760px) {
  body { font-size: 18px; }
}

/* ---------- Article prose ----------
   New, not copied. SnowSEO output is heavy on h2, h3, p, ul and blockquote. */
.article { padding: 64px 0 88px; }
.prose { max-width: 68ch; }
.prose h1 { font-family: var(--serif); font-size: 40px; line-height: 1.15; margin-bottom: 18px; }
.prose h2 { font-family: var(--serif); font-size: 28px; margin: 44px 0 14px; }
.prose h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin: 32px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose a { color: var(--brass); text-underline-offset: 3px; }
.prose a:hover { color: var(--brass-bright); }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose ul li::marker, .prose ol li::marker { color: var(--brass); }
.prose blockquote {
  margin: 26px 0; padding: 18px 22px;
  background: var(--paper); border-left: 3px solid var(--brass);
  font-family: var(--serif); font-size: 19px;
}
.prose code { background: var(--paper); border: 1px solid var(--line); padding: 1px 5px; font-size: 15px; }
.prose pre { background: var(--paper); border: 1px solid var(--line); padding: 16px; overflow-x: auto; margin: 0 0 18px; }
.prose pre code { background: none; border: 0; padding: 0; }
.prose img { max-width: 100%; height: auto; }
.prose figure { margin: 26px 0; }
.prose figcaption { color: var(--muted); font-size: 14px; margin-top: 8px; }
.prose table { border-collapse: collapse; width: 100%; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose-meta { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.article-back { margin-top: 48px; }
.article-back a { color: var(--brass); text-decoration: none; font-weight: 600; }

/* ---------- Article index ---------- */
.post-list { list-style: none; margin: 0; }
.post-list li { border-top: 1px solid var(--line); padding: 26px 0; }
.post-list li:last-child { border-bottom: 1px solid var(--line); }
.post-list a { text-decoration: none; display: block; }
.post-list h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.post-list a:hover h2 { color: var(--brass); }
.post-list p { color: var(--muted); max-width: 68ch; }
.post-list time { color: var(--muted); font-size: 14px; }
.post-empty { color: var(--muted); }
