/* PaperSpecials.nl — Main Stylesheet
   CSS Prefix: psp-
   Design: Modern Minimal (Mockup B)
   Fonts: DM Serif Display (headings) + DM Sans (body)
   Primary: #C47A2E | Accent: #7B5EA7 | BG: #FFFFFF
   ================================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── TOKENS ── */
:root {
  --psp-primary:      #C47A2E;
  --psp-primary-d:    #A3631E;
  --psp-primary-l:    #FFF5EB;
  --psp-accent:       #7B5EA7;
  --psp-accent-l:     #F0EBFF;
  --psp-bg:           #FFFFFF;
  --psp-surface:      #F9F9F9;
  --psp-text:         #1A1A1A;
  --psp-text-2:       #666666;
  --psp-border:       #E5E5E5;
  --psp-footer-bg:    #1A1A1A;
  --psp-max:          1140px;
  --psp-font-h:       'DM Serif Display', Georgia, serif;
  --psp-font-b:       'DM Sans', system-ui, -apple-system, sans-serif;
  --psp-radius:       12px;
  --psp-shadow:       0 8px 24px rgba(0,0,0,0.08);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  background: var(--psp-bg);
  color: var(--psp-text);
  font-family: var(--psp-font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.psp-container {
  max-width: var(--psp-max);
  margin: 0 auto;
  padding: 0 32px;
}
.psp-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── HEADER ── */
.psp-header {
  background: var(--psp-bg);
  border-bottom: 1px solid var(--psp-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.psp-header-inner {
  max-width: var(--psp-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.psp-logo {
  font-family: var(--psp-font-h);
  font-size: 1.4rem;
  color: var(--psp-text);
  text-decoration: none;
  flex-shrink: 0;
}
.psp-logo em {
  color: var(--psp-primary);
  font-style: normal;
}

/* ── NAV ── */
.psp-nav { display: flex; gap: 4px; list-style: none; align-items: center; }
.psp-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--psp-text-2);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}
.psp-nav a:hover { color: var(--psp-primary); background: var(--psp-primary-l); }
.psp-nav-cta {
  background: var(--psp-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.psp-nav-cta:hover { background: var(--psp-primary-d) !important; }

/* Mobile hamburger */
.psp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.psp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--psp-text);
  border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
}
.psp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.psp-hamburger.open span:nth-child(2) { opacity: 0; }
.psp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (homepage) ── */
.psp-hero {
  padding: 80px 32px;
  max-width: var(--psp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.psp-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--psp-primary);
  margin-bottom: 16px;
}
.psp-hero h1 {
  font-family: var(--psp-font-h);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.psp-hero h1 em {
  color: var(--psp-primary);
  font-style: normal;
}
.psp-hero-lead {
  color: var(--psp-text-2);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}
.psp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.psp-hero-visual {
  background: linear-gradient(145deg, #FFF5EB 0%, #FFE4BC 60%, #F5C87A 100%);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ── BUTTONS ── */
.psp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--psp-primary);
  color: #fff;
  font-family: var(--psp-font-b);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--psp-radius);
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}
.psp-btn-primary:hover { background: var(--psp-primary-d); transform: translateY(-1px); }
.psp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--psp-border);
  color: var(--psp-text);
  font-family: var(--psp-font-b);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--psp-radius);
  text-decoration: none;
  transition: border-color 150ms, color 150ms;
}
.psp-btn-ghost:hover { border-color: var(--psp-primary); color: var(--psp-primary); }

/* ── STATS BAR ── */
.psp-stats {
  background: var(--psp-surface);
  border-top: 1px solid var(--psp-border);
  border-bottom: 1px solid var(--psp-border);
  padding: 24px 32px;
}
.psp-stats-inner {
  max-width: var(--psp-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
}
.psp-stat-num {
  display: block;
  font-family: var(--psp-font-h);
  font-size: 1.8rem;
  color: var(--psp-primary);
}
.psp-stat-label { font-size: 0.82rem; color: var(--psp-text-2); font-weight: 500; }

/* ── BREADCRUMB ── */
.psp-breadcrumb {
  background: var(--psp-surface);
  border-bottom: 1px solid var(--psp-border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--psp-text-2);
}
.psp-breadcrumb a { color: var(--psp-primary); text-decoration: none; }
.psp-breadcrumb a:hover { text-decoration: underline; }
.psp-breadcrumb-sep { margin: 0 6px; }

/* ── PAGE HEADER (article/category pages) ── */
.psp-page-header {
  background: var(--psp-surface);
  border-bottom: 1px solid var(--psp-border);
  padding: 48px 32px 40px;
}
.psp-page-header-inner { max-width: var(--psp-max); margin: 0 auto; }
.psp-page-tag {
  display: inline-block;
  background: var(--psp-primary-l);
  color: var(--psp-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.psp-page-header h1 {
  font-family: var(--psp-font-h);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 720px;
}
.psp-page-header-lead {
  color: var(--psp-text-2);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.psp-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--psp-text-2);
}
.psp-article-meta strong { color: var(--psp-text); font-weight: 600; }

/* ── MAIN LAYOUT ── */
.psp-layout {
  max-width: var(--psp-max);
  margin: 0 auto;
  padding: 48px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ── ARTICLE BODY ── */
.psp-article-body { min-width: 0; }
.psp-article-body h2 {
  font-family: var(--psp-font-h);
  font-size: 1.55rem;
  margin-top: 40px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.psp-article-body h3 {
  font-family: var(--psp-font-h);
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.psp-article-body h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 22px;
  margin-bottom: 8px;
}
.psp-article-body p { margin-bottom: 16px; }
.psp-article-body ul,
.psp-article-body ol { margin: 0 0 16px 24px; }
.psp-article-body li { margin-bottom: 6px; line-height: 1.6; }
.psp-article-body strong { font-weight: 600; }
.psp-article-body a { color: var(--psp-primary); text-decoration: underline; }
.psp-article-body a:hover { color: var(--psp-primary-d); }
.psp-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.psp-article-body th,
.psp-article-body td { border: 1px solid var(--psp-border); padding: 10px 14px; text-align: left; }
.psp-article-body th { background: var(--psp-surface); font-weight: 700; }
.psp-article-body tr:nth-child(even) td { background: #fafafa; }

/* Tip/note callout */
.psp-callout {
  background: var(--psp-primary-l);
  border-left: 4px solid var(--psp-primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
}
.psp-callout strong { color: var(--psp-primary); }

/* ── FAQ SECTION ── */
.psp-faq { margin-top: 48px; }
.psp-faq-title {
  font-family: var(--psp-font-h);
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.psp-faq-item {
  border: 1px solid var(--psp-border);
  border-radius: var(--psp-radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.psp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--psp-bg);
  user-select: none;
  gap: 12px;
}
.psp-faq-q::after { content: '+'; font-size: 1.2rem; color: var(--psp-primary); flex-shrink: 0; }
.psp-faq-item.open .psp-faq-q::after { content: '−'; }
.psp-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: var(--psp-text-2);
  line-height: 1.7;
  border-top: 1px solid var(--psp-border);
  background: var(--psp-surface);
}
.psp-faq-item.open .psp-faq-a { display: block; }

/* ── AUTHOR BOX ── */
.psp-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--psp-surface);
  border: 1px solid var(--psp-border);
  border-radius: var(--psp-radius);
  padding: 24px;
  margin-top: 48px;
}
.psp-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--psp-primary), #F5D59A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.psp-author-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.psp-author-role { font-size: 0.78rem; color: var(--psp-primary); font-weight: 600; margin-bottom: 8px; }
.psp-author-bio { font-size: 0.88rem; color: var(--psp-text-2); line-height: 1.6; }

/* ── CARD GRID (homepage + category) ── */
.psp-section { max-width: var(--psp-max); margin: 0 auto; padding: 56px 32px 0; }
.psp-section-head { margin-bottom: 28px; }
.psp-section-title { font-family: var(--psp-font-h); font-size: 1.5rem; margin-bottom: 6px; }
.psp-section-sub { color: var(--psp-text-2); font-size: 0.9rem; }

.psp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.psp-card {
  background: var(--psp-bg);
  border: 1px solid var(--psp-border);
  border-radius: var(--psp-radius);
  overflow: hidden;
  transition: transform 150ms, box-shadow 150ms;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.psp-card:hover { transform: translateY(-3px); box-shadow: var(--psp-shadow); }
.psp-card-link-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.psp-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
}
.psp-card-img-amber  { background: linear-gradient(135deg, #FFF5EB, #FFD49B); }
.psp-card-img-purple { background: linear-gradient(135deg, #F0EBFF, #D4C5F7); }
.psp-card-img-green  { background: linear-gradient(135deg, #EBFAF0, #A8E6BC); }
.psp-card-img-red    { background: linear-gradient(135deg, #FFF0F0, #FFB8B8); }
.psp-card-img-blue   { background: linear-gradient(135deg, #EBF4FF, #A8CEFF); }
.psp-card-img-teal   { background: linear-gradient(135deg, #EBFAF8, #A8DED8); }
.psp-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.psp-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psp-primary);
  margin-bottom: 8px;
}
.psp-card h3 {
  font-family: var(--psp-font-h);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.35;
  flex: 1;
}
.psp-card p { font-size: 0.85rem; color: var(--psp-text-2); line-height: 1.55; margin-bottom: 16px; }
.psp-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--psp-text-2);
  margin-top: auto;
}
.psp-card-link {
  color: var(--psp-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
}
.psp-card-link:hover { text-decoration: underline; }

/* 4-column variant */
.psp-cards-4 { grid-template-columns: repeat(4, 1fr); }

/* ── SIDEBAR ── */
.psp-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
.psp-widget {
  background: var(--psp-surface);
  border: 1px solid var(--psp-border);
  border-radius: var(--psp-radius);
  overflow: hidden;
}
.psp-widget-title {
  padding: 14px 20px;
  border-bottom: 1px solid var(--psp-border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--psp-text-2);
  background: var(--psp-bg);
}
.psp-widget-body { padding: 16px 20px; }

/* Author widget */
.psp-widget-author { display: flex; gap: 12px; align-items: flex-start; }
.psp-widget-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--psp-primary), #F5D59A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.psp-widget-author-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.psp-widget-author-role { font-size: 0.72rem; color: var(--psp-primary); font-weight: 600; margin-bottom: 6px; }
.psp-widget-author-bio { font-size: 0.78rem; color: var(--psp-text-2); line-height: 1.5; }

/* Link list widget */
.psp-widget-list { list-style: none; }
.psp-widget-list li { border-bottom: 1px solid var(--psp-border); }
.psp-widget-list li:last-child { border-bottom: none; }
.psp-widget-list a {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--psp-text);
  text-decoration: none;
  transition: color 150ms;
}
.psp-widget-list a:hover { color: var(--psp-primary); }

/* Tag cloud widget */
.psp-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.psp-tag {
  background: var(--psp-bg);
  border: 1px solid var(--psp-border);
  color: var(--psp-text-2);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.psp-tag:hover { background: var(--psp-primary); color: #fff; border-color: var(--psp-primary); }

/* CTA widget */
.psp-widget-cta {
  background: linear-gradient(135deg, var(--psp-primary) 0%, var(--psp-primary-d) 100%);
  color: #fff;
  text-align: center;
  padding: 22px;
}
.psp-widget-cta h4 { font-family: var(--psp-font-h); font-size: 1rem; margin-bottom: 8px; }
.psp-widget-cta p { font-size: 0.82rem; opacity: 0.88; margin-bottom: 16px; line-height: 1.5; }
.psp-widget-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--psp-primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
}

/* ── RELATED POSTS ── */
.psp-related { margin-top: 48px; }
.psp-related-title { font-family: var(--psp-font-h); font-size: 1.35rem; margin-bottom: 20px; }
.psp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.psp-related-card {
  background: var(--psp-surface);
  border: 1px solid var(--psp-border);
  border-radius: var(--psp-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms, box-shadow 150ms;
}
.psp-related-card:hover { transform: translateY(-2px); box-shadow: var(--psp-shadow); }
.psp-related-card-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.psp-related-card-body { padding: 14px; }
.psp-related-card-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--psp-primary); margin-bottom: 6px; }
.psp-related-card h4 { font-family: var(--psp-font-h); font-size: 0.88rem; line-height: 1.35; }

/* ── CATEGORY PAGE ── */
.psp-cat-header {
  background: var(--psp-surface);
  border-bottom: 1px solid var(--psp-border);
  padding: 48px 32px;
}
.psp-cat-header-inner { max-width: var(--psp-max); margin: 0 auto; }
.psp-cat-header h1 { font-family: var(--psp-font-h); font-size: 2rem; margin-bottom: 10px; }
.psp-cat-header p { color: var(--psp-text-2); max-width: 600px; }

/* ── LEGAL / SIMPLE PAGES ── */
.psp-simple-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.psp-simple-page h1 { font-family: var(--psp-font-h); font-size: 2rem; margin-bottom: 28px; }
.psp-simple-page h2 { font-family: var(--psp-font-h); font-size: 1.4rem; margin-top: 36px; margin-bottom: 14px; }
.psp-simple-page p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.7; }
.psp-simple-page ul,
.psp-simple-page ol { margin: 0 0 14px 24px; }
.psp-simple-page li { margin-bottom: 6px; font-size: 0.95rem; line-height: 1.6; }
.psp-simple-page a { color: var(--psp-primary); }

/* ── 404 PAGE ── */
.psp-404 {
  text-align: center;
  padding: 96px 32px;
  max-width: 540px;
  margin: 0 auto;
}
.psp-404-code { font-family: var(--psp-font-h); font-size: 6rem; color: var(--psp-primary); line-height: 1; margin-bottom: 16px; }
.psp-404 h1 { font-family: var(--psp-font-h); font-size: 1.6rem; margin-bottom: 12px; }
.psp-404 p { color: var(--psp-text-2); margin-bottom: 32px; }

/* ── FOOTER ── */
.psp-footer {
  background: var(--psp-footer-bg);
  color: #999;
  margin-top: 64px;
  padding: 56px 32px 28px;
}
.psp-footer-inner {
  max-width: var(--psp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.psp-footer-brand {
  font-family: var(--psp-font-h);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}
.psp-footer-brand em { color: var(--psp-primary); font-style: normal; }
.psp-footer-desc { font-size: 0.85rem; line-height: 1.65; max-width: 300px; }
.psp-footer h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.psp-footer-links { list-style: none; }
.psp-footer-links li { margin-bottom: 10px; }
.psp-footer-links a { color: #999; font-size: 0.85rem; text-decoration: none; transition: color 150ms; }
.psp-footer-links a:hover { color: var(--psp-primary); }
.psp-footer-bar {
  max-width: var(--psp-max);
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #666;
  gap: 16px;
  flex-wrap: wrap;
}
.psp-footer-bar a { color: #777; text-decoration: none; }
.psp-footer-bar a:hover { color: var(--psp-primary); }
.psp-footer-legal { display: flex; gap: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .psp-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .psp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 959px) {
  .psp-hero { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .psp-hero-visual { display: none; }
  .psp-hero h1 { font-size: 2.2rem; }
  .psp-layout { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px 48px; }
  .psp-sidebar { position: static; }
  .psp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .psp-section { padding: 40px 24px 0; }
}

@media (max-width: 599px) {
  .psp-header-inner { padding: 0 20px; }
  .psp-nav { display: none; }
  .psp-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--psp-bg);
    border-bottom: 1px solid var(--psp-border);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 199;
  }
  .psp-hamburger { display: flex; }
  .psp-hero { padding: 36px 20px; }
  .psp-hero h1 { font-size: 1.8rem; }
  .psp-cards { grid-template-columns: 1fr; }
  .psp-related-grid { grid-template-columns: 1fr; }
  .psp-stats-inner { flex-wrap: wrap; gap: 16px; }
  .psp-layout { padding: 24px 20px 40px; }
  .psp-page-header { padding: 32px 20px; }
  .psp-page-header h1 { font-size: 1.7rem; }
  .psp-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .psp-footer { padding: 40px 20px 24px; }
  .psp-container { padding: 0 20px; }
  .psp-simple-page { padding: 36px 20px 60px; }
  .psp-author-box { flex-direction: column; }
}

/* ── IMAGES ── */
.psp-logo img { height: 38px; width: auto; display: block; }
.psp-card-img img { width: 100%; height: 140px; object-fit: cover; display: block; flex-shrink: 0; }
.psp-author-avatar img, .psp-about-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
}
.psp-hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
.psp-article-hero { max-width: var(--psp-max); margin: 0 auto; padding: 0 32px; }
.psp-article-hero img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--psp-radius); display: block;
}
@media (max-width: 768px) {
  .psp-article-hero { padding: 0 16px; }
  .psp-article-hero img { height: 220px; }
}
