:root {
  --rot: #9B3A3A;
  --creme: #FAF8F5;
  --text: #2D3640;
  --muted: #6B7280;
  --border: #E8E6E1;
  --rose: #D4707A;
  --white: #FFFFFF;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  --page-rail: 860px;
  --text-rail: 640px;
}

/* Basis */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: "Source Serif 4", serif;
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.main,
.site-main {
  padding-top: 40px;
}

.page-rail {
  max-width: var(--page-rail);
  margin: 0 auto;
}

/* Typografie */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

p {
  margin: 0 0 1rem 0;
}

ul,
ol {
  margin: 0 0 1rem 1.3rem;
  padding: 0;
}

li {
  margin-bottom: 0.35rem;
}

/* Links */

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 230, 225, 0.7);
  transition: all 0.25s ease;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.95;
  line-height: 1;
  padding: 6px 0;
}

.main-nav a:hover {
  color: var(--rot);
}

.main-nav a.active {
  color: var(--rot);
  font-weight: 600;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--rot);
  border-radius: 2px;
}

.site-header.scrolled .header-inner {
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header.scrolled .site-logo img {
  height: 44px;
}

/* Buttons */

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary-button {
  background: var(--rot);
  color: #fff;
  border: 1px solid var(--rot);
}

.primary-button:hover {
  background: #8E3333;
  color: #fff;
}

.secondary-button {
  background: transparent;
  color: var(--rot);
  border: 1px solid var(--rot);
}

.secondary-button:hover {
  background: rgba(155, 58, 58, 0.08);
  color: var(--rot);
}

/* Gemeinsame Titel-/Meta-Elemente */

.hero-kicker {
  font-family: "Inter", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.article-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Startseite */

.meerwert-home {
  max-width: var(--page-rail);
  margin: 0 auto;
  padding: 0 32px 72px 32px;
  box-sizing: border-box;
}

.hero-section,
.home-intro,
.home-fields,
.home-magazine,
.home-cta {
  max-width: var(--page-rail);
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  max-width: var(--text-rail);
  margin-top: 40px;
  padding: 34px 0 56px 0;
}

.hero-title {
  max-width: var(--text-rail);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 560px;
  color: #4A525B;
}

.hero-subtitle + .hero-subtitle {
  margin-top: 8px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.home-intro {
  max-width: var(--text-rail);
  margin: 90px auto 58px auto;
}

.section-head {
  display: block;
  margin-bottom: 20px;
}

.section-head--narrow {
  max-width: 100%;
  margin: 0 0 18px 0;
  display: block;
}

.section-head a {
  display: inline-block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.intro-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
}

.home-fields {
  max-width: var(--text-rail);
  margin: 40px auto 54px auto;
}

.field-list {
  display: grid;
  gap: 0;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid var(--border);
}

.field-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.field-number {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  color: var(--muted);
  padding-top: 7px;
}

.field-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.field-content p {
  color: #4A525B;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 62ch;
}

.home-magazine {
  max-width: var(--text-rail);
  margin: 40px auto 64px auto;
}

.magazine-intro {
  color: #4A525B;
  max-width: 100%;
  margin-bottom: 22px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.article-card-image {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.article-card-content {
  padding: 22px 24px 24px 24px;
}

.article-category {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 10px;
}

.article-card-title {
  font-size: 1.55rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.article-card p {
  font-size: 1rem;
  line-height: 1.68;
  color: #46505A;
  margin-bottom: 0;
}

.read-more {
  display: inline-block;
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--rot);
}

.home-cta {
  max-width: var(--text-rail);
  margin: 40px auto 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
}

.home-cta p {
  color: #4A525B;
  max-width: 760px;
}

/* Standardseiten */

.standard-page .post-single {
  max-width: var(--page-rail);
  margin: 0 auto;
}

.standard-page .post-header {
  max-width: var(--page-rail);
  margin: 40px auto 28px auto;
}

.standard-page .post-header h1,
.standard-page .post-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.standard-page .post-content {
  max-width: var(--page-rail);
  margin: 0 auto;
}

/* Angebotsseite */

.angebot-page {
  max-width: var(--page-rail);
  margin: 0 auto;
}

.angebot-hero {
  max-width: var(--page-rail);
  padding: 34px 0 30px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.angebot-hero h1 {
  text-wrap: balance;
}

.angebot-lead p {
  font-size: 1.16rem;
  line-height: 1.78;
  color: #4A525B;
}

.angebot-section {
  max-width: var(--page-rail);
  margin: 0 auto 56px auto;
}

.angebot-textblock {
  max-width: var(--page-rail);
}

.angebot-textblock p {
  color: #4A525B;
  font-size: 1.05rem;
  line-height: 1.78;
}

.angebot-fields {
  border-top: 1px solid var(--border);
}

.angebot-field {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.angebot-number {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  color: var(--muted);
  padding-top: 7px;
}

.angebot-content h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.angebot-content p {
  color: #4A525B;
  font-size: 1.03rem;
  line-height: 1.72;
  max-width: 62ch;
}

/* Kontaktseite */

.kontakt-page-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.kontakt-page {
  max-width: var(--page-rail);
  margin: 0 auto;
  padding-top: 12px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.kontakt-copy {
  padding-top: 18px;
}

.kontakt-title {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 12ch;
}

.kontakt-lead {
  font-size: 1.08rem;
  line-height: 1.68;
  max-width: 28ch;
  margin-bottom: 30px;
  color: #4A525B;
}

.kontakt-block {
  margin-bottom: 26px;
}

.kontakt-block h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.kontakt-block p,
.kontakt-block li {
  color: #4A525B;
}

.kontakt-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.kontakt-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 14px 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--rot);
}

.form-row textarea {
  resize: vertical;
  min-height: 160px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #4A525B;
}

.checkbox-wrap input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

/* ================================= */
/* Perspektiven Übersicht */
/* ================================= */

.perspektiven-page {
  max-width: var(--page-rail);
  margin: 0 auto;
}

.perspektiven-hero {
  max-width: var(--text-rail);
  margin: 40px 0 52px 0;
}

.perspektiven-title {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.perspektiven-lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}

.perspektiven-list {
  display: grid;
  gap: 42px;
}

.perspektiven-entry {
  display: block;
  max-width: var(--text-rail);
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.perspektiven-entry-image-wrap {
  margin: 0 0 18px 0;
}

.perspektiven-entry-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.perspektiven-entry-body {
  max-width: 720px;
}

.perspektiven-entry-title {
  font-size: 1.9rem;
  line-height: 1.08;
  margin: 6px 0 12px 0;
}

.perspektiven-entry-title a {
  color: var(--text);
}

.perspektiven-entry-title a:hover {
  color: var(--rot);
}

.perspektiven-entry-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #46505A;
  max-width: 100%;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .perspektiven-entry {
    max-width: 100%;
  }

  .perspektiven-entry-image {
    height: 130px;
  }

  .perspektiven-entry-body,
  .perspektiven-entry-body p {
    max-width: 100%;
  }
}
/* Perspektiven Einzelbeitrag */

.perspektiven-single {
  max-width: var(--text-rail);
  margin: 0 auto;
}

.perspektiven-single-header {
  max-width: var(--text-rail);
  margin: 0 0 18px 0;
}

.perspektiven-single-title {
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.perspektiven-single .article-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

.perspektiven-single-lead {
  max-width: var(--text-rail);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 18px 0 28px 0;
}

.perspektiven-cover {
  max-width: var(--text-rail);
  margin: 0 0 34px 0;
}

.perspektiven-cover img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.perspektiven-single .post-content {
  max-width: var(--text-rail);
  margin: 0;
}

.perspektiven-single .post-content p {
  max-width: 100%;
}

.perspektiven-single-footer {
  max-width: var(--text-rail);
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Fliesstext */

.post-content p,
.standard-page p {
  margin-bottom: 1.25em;
}

.post-content h2,
.post-content h3 {
  margin-top: 1.8em;
}

.post-content h2 {
  margin-bottom: 0.7rem;
}

.post-content h3 {
  margin-bottom: 0.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 0.8rem;
}

.post-content li {
  margin-bottom: 0.3rem;
}

.post-content a {
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content blockquote {
  margin: 2rem 0;
  padding-left: 18px;
  border-left: 3px solid var(--border);
  font-size: 1.18rem;
  line-height: 1.6;
  font-style: italic;
  color: #3E464F;
}

.post-content blockquote p {
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .header-inner {
    padding: 10px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 14px;
  }

  .meerwert-home {
    padding-left: 24px;
    padding-right: 24px;
  }

  .field-item,
  .angebot-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field-number,
  .angebot-number {
    padding-top: 0;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .perspektiven-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .perspektiven-entry-image-wrap {
  margin: 0 0 14px 0;
}

  .perspektiven-entry-image {
    width: 160px;
    height: 110px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .site-logo img {
    height: 52px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
  }

  .angebot-hero {
    padding-top: 22px;
  }

  .kontakt-form-card {
    padding: 22px;
  }

.perspektiven-single {
  max-width: var(--text-rail);
  margin: 0 auto;
}

.perspektiven-single-header,
.perspektiven-single-lead,
.perspektiven-cover,
.perspektiven-single .post-content,
.perspektiven-single-footer {
  max-width: var(--text-rail);
}

  .perspektiven-single-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .perspektiven-cover img {
    height: 100px;
  }
}
/* ================================= */
/* Über mich */
/* ================================= */

.about-page {
  max-width: 720px;
  margin: 0 auto;
}

.about-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-portrait {
  float: left;
  width: 230px;
  margin: 6px 30px 18px 0;
}
}

.about-text {
  max-width: 100%;
}

.about-text p {
  margin-bottom: 1.2em;
}

/* Nach dem Bild läuft der Text wieder über die ganze Breite */
.about-page::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 700px) {
  .about-page {
    max-width: 100%;
  }

  .about-portrait {
    float: none;
    width: 190px;
    margin: 0 0 20px 0;
  }
}

}
}
.menu a { font-size: 1.1rem; }
.post-title { font-size: 2.2rem; }
@media (max-width: 768px) { .post-title { font-size: 2rem; } }
@media (max-width: 768px) { .menu a { font-size: 1.05rem; } }

/* =========================================================
/* =========================================================
   MEERWERT – MOBILE TESTBLOCK
   Schritt 1: iPhone / iPad Darstellung
   ========================================================= */

html,
body {
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {

  /* Mobile Menü standardmässig geschlossen */
  #menu {
    display: none !important;
    width: 100%;
    margin: 0.5rem 0 0 0 !important;
    padding: 0 !important;
    clear: both;
  }

  /* Nur wenn PaperMod aktiv schaltet */
  #menu.active {
    display: block !important;
  }

  /* Menüpunkte kompakter */
  #menu li {
    display: block !important;
    margin: 0 0 0.8rem 0 !important;
  }

  #menu a {
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
  }

  /* Header kompakter */
  .header {
    padding-bottom: 0.4rem !important;
  }

  .nav {
    flex-wrap: wrap !important;
    align-items: center !important;
  }

  /* Inhalt direkt unter Header */
  .main {
    padding-top: 0.4rem !important;
  }

  /* Titel ruhiger und sauber umbrechend */
  h1,
  .post-title,
  .home-info .entry-header h1,
  .first-entry .entry-header h1 {
    font-size: 2rem !important;
    line-height: 1.12 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto !important;
    margin-bottom: 1rem !important;
  }

  /* Lesespalte mit etwas mehr Luft */
  .main,
  .page-main,
  .post-single,
  .post-content,
  .entry-content,
  .home-info,
  .first-entry,
  .post-entry {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Bildband / Cover volle Breite */
  .post-cover,
  .entry-cover,
  .post-entry .entry-cover {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .post-cover img,
  .entry-cover img,
  .post-entry .entry-cover img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}
/* =========================================================
   MEERWERT HEADER / MOBILE NAVIGATION
   ========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  background: #f3f1ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  display: block;
  max-height: 74px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  text-decoration: none;
  color: #2f3944;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.main-nav a.active {
  color: #a5524d;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  margin: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #2f3944;
  transition: all 0.2s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.9rem 1rem;
  }

  .site-logo img {
    max-height: 64px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    margin-top: 0.35rem;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding-top: 0.85rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 1.05rem;
  }
}
/* =========================================================
   MEERWERT HEADER / MOBILE NAVIGATION
   ========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  background: #f3f1ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  display: block;
  max-height: 74px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  text-decoration: none;
  color: #2f3944;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.main-nav a.active {
  color: #a5524d;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  margin: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #2f3944;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.9rem 1rem;
  }

  .site-logo img {
    max-height: 64px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    margin-top: 0.35rem;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding-top: 0.85rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 1.05rem;
  }
}
/* =========================================================
   MEERWERT – MOBILE HERO KORREKTUR
   Schritt 1: iPhone / iPad Darstellung fertigstellen
   ========================================================= */

@media (max-width: 768px) {

  .main {
    padding-top: 0 !important;
  }

  .home-info,
  .first-entry,
  .post-entry:first-of-type {
    margin-top: 0 !important;
    padding-top: 0.75rem !important;
  }

  .home-info .entry-header h1,
  .first-entry .entry-header h1,
  .post-title,
  h1 {
    font-size: 1.9rem !important;
    line-height: 1.1 !important;
    margin-top: 0 !important;
    margin-bottom: 0.9rem !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .home-info .entry-content,
  .first-entry .entry-content,
  .post-content,
  .entry-content {
    font-size: 1.02rem !important;
    line-height: 1.6 !important;
  }
}
/* =========================================
   MOBILE HERO FIX – Meerwert
   ========================================= */

@media (max-width: 768px) {

  .home-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .home-info .entry-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .home-info .entry-header h1 {
    font-size: 1.9rem !important;
    line-height: 1.1 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.9rem !important;
  }

  .home-info .entry-content {
    font-size: 1.02rem !important;
    line-height: 1.6 !important;
  }

}
/* ========================================
   MOBILE LAYOUT FIX – Meerwert
   ======================================== */

@media (max-width: 768px) {

  main {
    padding-top: 0 !important;
  }

  .main {
    padding-top: 0 !important;
  }

  .page-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .home-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

}
/* ========================================
   MOBILE LAYOUT FIX – Meerwert
   ======================================== */

@media (max-width: 768px) {

  main {
    padding-top: 0 !important;
  }

  .main {
    padding-top: 0 !important;
  }

  .page-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .home-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

}
/* ========================================
   MOBILE TITEL FEINTUNING – Meerwert
   ======================================== */

@media (max-width: 768px) {

  .home-info .entry-header h1,
  h1 {
    font-size: 1.7rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em;
  }

}
/* ========================================
   MOBILE LIST SPACING FIX – Meerwert
   reduziert grosse Abstände in Listen
   ======================================== */

@media (max-width: 768px) {

  .post-entry {
    margin-bottom: 1.6rem !important;
    padding-bottom: 1.2rem !important;
  }

  .post-entry + .post-entry {
    margin-top: 0 !important;
  }

  .post-entry .entry-header h2 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35rem !important;
  }

  .post-entry .entry-content {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.6rem !important;
  }

  .post-entry hr,
  .post-entry .divider {
    margin: 1rem 0 !important;
  }

}
/* ========================================
   MOBILE LIST FEINTUNING – Meerwert
   Schritt 1: letzter Feinschliff
   ======================================== */

@media (max-width: 768px) {

  .post-entry {
    margin-bottom: 1rem !important;
    padding-top: 0.4rem !important;
    padding-bottom: 0.8rem !important;
  }

  .post-entry .entry-header {
    margin-bottom: 0.25rem !important;
  }

  .post-entry .entry-header h2 {
    font-size: 1.2rem !important;
    line-height: 1.22 !important;
    margin-top: 0 !important;
    margin-bottom: 0.2rem !important;
  }

  .post-entry .entry-content {
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
  }

  .post-entry hr,
  .post-entry .divider {
    margin: 0.7rem 0 !important;
  }

}
/* ========================================
   MOBILE LIST COMPACT – Meerwert
   kompakter Magazin-Rhythmus
   ======================================== */

@media (max-width: 768px) {

  .post-entry {
    margin-bottom: 0.7rem !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.6rem !important;
  }

  .post-entry .entry-header {
    margin-bottom: 0.15rem !important;
  }

  .post-entry .entry-header h2 {
    font-size: 1.18rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.12rem !important;
  }

  .post-entry .entry-content {
    font-size: 0.95rem !important;
    line-height: 1.48 !important;
    margin-bottom: 0.12rem !important;
  }

  .post-entry hr,
  .post-entry .divider {
    margin: 0.55rem 0 !important;
  }

}
/* ========================================
   PERSPEKTIVEN MOBILE SPACING FIX – Meerwert
   kompaktere Einträge auf iPhone / iPad
   ======================================== */

@media (max-width: 768px) {

  .perspektiven-list {
    margin-top: 0.25rem !important;
  }

  .perspektiven-entry {
    margin: 0 !important;
    padding: 0.35rem 0 0.7rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .perspektiven-entry + .perspektiven-entry {
    margin-top: 0.5rem !important;
  }

  .perspektiven-entry-image-wrap {
    margin: 0 0 0.45rem 0 !important;
  }

  .perspektiven-entry-body {
    padding: 0 !important;
    margin: 0 !important;
  }

  .article-category {
    margin: 0 0 0.15rem 0 !important;
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
  }

  .perspektiven-entry-title {
    margin: 0 0 0.25rem 0 !important;
    font-size: 1.2rem !important;
    line-height: 1.18 !important;
  }

  .perspektiven-entry-title a {
    display: inline-block;
    line-height: 1.18 !important;
  }

  .article-meta {
    margin: 0 0 0.25rem 0 !important;
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
  }

  .perspektiven-entry p,
  .perspektiven-entry-body p {
    margin: 0 0 0.3rem 0 !important;
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
  }

  .read-more {
    display: inline-block;
    margin: 0.1rem 0 0 0 !important;
    font-size: 0.94rem !important;
    line-height: 1.25 !important;
  }

}
/* ========================================
   MOBILE SECTION SPACING – Meerwert
   kompaktere Blockabstände auf iPhone/iPad
   ======================================== */

@media (max-width: 768px) {

  .page-rail {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .page-rail > section,
  .page-rail > article,
  main section,
  main article {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .perspektiven-hero,
  .perspektiven-list {
    margin-top: 0.4rem !important;
    margin-bottom: 0.6rem !important;
  }

  h2,
  h3 {
    margin-top: 0 !important;
    margin-bottom: 0.35rem !important;
  }

  p {
    margin-top: 0 !important;
    margin-bottom: 0.45rem !important;
  }

  hr {
    margin: 0.45rem 0 !important;
  }

}
/* =====================================
   MOBILE COMPACT LIST – Perspektiven
   ===================================== */

@media (max-width: 768px) {

  .perspektiven-entry {
    margin: 0 !important;
    padding: 0.45rem 0 0.6rem 0 !important;
  }

  .perspektiven-entry + .perspektiven-entry {
    margin-top: 0.35rem !important;
  }

  .perspektiven-entry-title {
    margin-bottom: 0.2rem !important;
  }

  .perspektiven-entry-body p {
    margin-bottom: 0.25rem !important;
  }

  .perspektiven-entry hr {
    margin: 0.45rem 0 !important;
  }

}
/* ========================================
   MOBILE HR SPACING FIX – Meerwert
   ======================================== */

@media (max-width: 768px) {

  hr {
    margin: 0.4rem 0 !important;
  }

}