/* ===== DESIGN TOKENS (übernommen von scmsoft.de/willkommen.html) ===== */
:root {
  --orange: #dd7607;
  --orange-light: #f59333;
  --orange-glow: rgba(221, 118, 7, 0.14);
  --green: #3a8a34;
  --green-dark: #2c6a28;
  --green-glow: rgba(58, 138, 52, 0.1);

  --ink: #0d0d0d;
  --ink-soft: #161616;
  --text: #1c1c1e;
  --text-muted: #5c5c5e;
  --text-light: #8a8a8e;
  --surface: #f6f5f3;
  --surface-warm: #fdf8f1;
  --white: #ffffff;
  --border: #e4e4e6;
  --border-soft: rgba(0, 0, 0, 0.07);

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.14);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.icon-arrow {
  display: inline-block;
  vertical-align: -3px;
  flex-shrink: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 118, 7, 0.18);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--white);
}
.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 9px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}
.nav-cta:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ===== HERO (Blog-Variante, schlanker als Landing Page) ===== */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 24px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(221, 118, 7, 0.11) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(58, 138, 52, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221, 118, 7, 0.13);
  border: 1px solid rgba(221, 118, 7, 0.28);
  color: var(--orange-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-sub-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
  max-width: 560px;
}
.hero-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.hero-search:focus-within {
  border-color: rgba(221, 118, 7, 0.5);
}
.hero-search-input {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  width: 220px;
  outline: none;
  -webkit-appearance: none;
}
.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.hero-search-input::-webkit-search-cancel-button {
  filter: invert(1) opacity(0.6);
}
.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--orange);
  border: none;
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-search-btn:hover {
  background: var(--orange-light);
}
.hero-search-btn:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: -2px;
}

/* ===== GENERIC SECTION ===== */
.sec {
  padding: 64px 24px 96px;
}
.sec-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 14px;
}
.lead {
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 620px;
}

/* ===== STARTSEITEN-LAYOUT: Sidebar (links) + Beiträge ===== */
/* Sidebar steht im HTML nach der Beitragsliste (Lesereihenfolge für
   Screenreader/Crawler: Inhalt zuerst), wird aber per "order" visuell vor
   die Beitragsliste gezogen. */
.home-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.home-sidebar {
  order: -1;
  position: sticky;
  top: 88px;
}

/* ===== WORD CLOUD (Sidebar) ===== */
/* Container-Optik angelehnt an .faq-list der Landing Page (umrandete
   Karte mit Radius). Pillen im Stil von .tech-chip, mit 5 Größenstufen
   je nach Anzahl Beiträge, in denen der Begriff vorkommt. */
.sidebar-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
  padding: 26px 22px;
}
.sidebar-box .eyebrow {
  margin-bottom: 8px;
}
.sidebar-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 18px;
}
.wordcloud-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.wordcloud-pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-mono);
  line-height: 1.4;
  padding: 3px 10px;
  transition: border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.wordcloud-pill:hover {
  border-color: rgba(221, 118, 7, 0.45);
  color: var(--orange);
  transform: translateY(-1px);
}
.wc-1 {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
}
.wc-2 {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.wc-3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.wc-4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-color: rgba(221, 118, 7, 0.25);
}
.wc-5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  border-color: rgba(221, 118, 7, 0.4);
}

/* ===== POST LIST (Blog-Index) ===== */
.post-list {
  display: grid;
  gap: 20px;
}
.empty-state {
  color: var(--text-muted);
  font-size: 1rem;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.post-card:hover {
  border-color: rgba(221, 118, 7, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
/* Volle Kartenbreite, aber flach (nicht die 180px vom ersten Entwurf) –
   ein schmales Seiten-Thumb würde bei Bildern im og:image-Querformat
   (1200x630) links/rechts massiv beschneiden (object-fit: cover passt
   sich an die kürzere Seite an); ein flaches Kopfband beschneidet
   stattdessen nur oben/unten und behält die volle Bildbreite – bei mittig
   zentriertem Text (wie den Platzhaltern) bleibt der Text so lesbar,
   zusätzlich der bei Beitragsbildern übliche Zuschnitt (WordPress, Medium
   u.a. machen es genauso). */
.post-card-link {
  display: block;
}
.post-card-thumb {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: var(--border);
  transition: transform 0.25s ease;
}
.post-card:hover .post-card-thumb {
  transform: scale(1.04);
}
.post-card-body {
  padding: 22px 28px 26px;
}
.post-card-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.post-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

/* ===== SINGLE POST ===== */
.post-inner {
  max-width: 760px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.post-back {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--orange);
}
.post-back:hover {
  color: var(--orange-light);
}
.post-meta-sep {
  color: var(--border);
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 36px;
}
.post-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.post-updates {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: -16px;
  margin-bottom: 28px;
}
.post-updates-label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 6px;
}
.post-updates time {
  font-family: var(--font-mono);
}

/* Artikel-Typografie für aus Markdown gerenderten Inhalt */
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.post-content > * + * {
  margin-top: 1.3em;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 2em;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.8em;
}
.post-content p {
  color: var(--text);
}
.post-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(221, 118, 7, 0.35);
}
.post-content a:hover {
  text-decoration-color: var(--orange);
}
.post-content strong {
  font-weight: 700;
}
.emoji {
  font-size: 1.1em;
  vertical-align: -0.1em;
}
.term-highlight {
  background: #fdf1a8;
  color: inherit;
  border-radius: 3px;
  padding: 0.05em 0.15em;
}
.post-content ul,
.post-content ol {
  padding-left: 1.4em;
}
.post-content li + li {
  margin-top: 0.5em;
}
.post-content blockquote {
  border-left: 3px solid var(--green);
  background: rgba(58, 138, 52, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  color: var(--text-muted);
  font-style: italic;
}
.post-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.15em 0.4em;
}
.post-content pre {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 18px 20px;
  overflow-x: auto;
}
.post-content pre code {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
}
.post-content img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92em;
}
.post-content th,
.post-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.post-content th {
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Share-Links am Artikelende */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.post-share-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.post-share-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.post-share-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.post-share-link .icon-share {
  flex-shrink: 0;
}

/* Autoren-Box am Artikelende */
.post-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.post-author-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.post-author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.post-author-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* CTA am Ende jedes Beitrags */
.post-cta {
  margin-top: 56px;
  padding: 32px 28px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  text-align: left;
}
.post-cta h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.post-cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(221, 118, 7, 0.38);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(221, 118, 7, 0.48);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Prev/Next-Navigation am Artikelende */
.post-neighbors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.post-neighbor {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.post-neighbor:hover {
  border-color: rgba(221, 118, 7, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.post-neighbor-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
}
.post-neighbor-title {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}
.post-neighbor-next {
  text-align: right;
  align-items: flex-end;
}
.post-neighbor-empty {
  border: none;
}
@media (max-width: 560px) {
  .post-neighbors {
    grid-template-columns: 1fr;
  }
  .post-neighbor-empty {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo {
  height: 30px;
  width: auto;
  opacity: 0.55;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.newsletter-text {
  flex: 1;
  min-width: 220px;
}
.newsletter-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-title .icon-share {
  color: var(--orange-light);
}
.newsletter-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 420px;
  line-height: 1.55;
}
.newsletter-form {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
}
.newsletter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:hover {
  border-color: rgba(255, 255, 255, 0.32);
}
.newsletter-input:focus-visible {
  outline: none;
  border-color: var(--orange-light);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(221, 118, 7, 0.32);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.newsletter-submit:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(221, 118, 7, 0.42);
}
.newsletter-submit:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 3px;
}
.newsletter-consent {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.newsletter-consent a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}
.newsletter-consent a:hover {
  color: var(--orange-light);
}
.newsletter-consent input {
  margin-right: 6px;
}
/* Honeypot: für Menschen unsichtbar, aber im DOM/Tab-Ablauf vorhanden für
   Bots, die Formularfelder blind ausfüllen – siehe server.js. */
.newsletter-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 640px) {
  .newsletter-box {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }
  .newsletter-form {
    max-width: none;
  }
  .newsletter-row {
    flex-direction: column;
  }
  .newsletter-submit {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sec {
    padding: 48px 24px 72px;
  }
  .home-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-sidebar {
    position: static;
    order: 0;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 56px 24px 44px;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero-search {
    width: 100%;
  }
  .hero-search-input {
    width: auto;
    flex: 1;
  }
  .post-card-link {
    padding: 24px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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