/* ==========================================================================
   affiliate.mit.mira — Brand Stylesheet
   Farbwelt & Typografie angelehnt an das Logo (Aquarell, Rosé/Gold-Verlauf)
   ========================================================================== */

:root {
  /* Brand palette */
  --cream:      #fdf8f5;
  --blush:      #fbeee6;
  --blush-2:    #f7e2da;
  --card:       #ffffff;
  --ink:        #3a2b2c;
  --ink-soft:   #8a6e6a;
  --rose:       #cf8194;
  --rose-dark:  #a7566f;
  --gold:       #e2a26a;
  --line:       #f0ddd6;

  --grad-brand: linear-gradient(120deg, #f3a35f 0%, #ea5f9b 52%, #a94fc0 100%);
  --grad-soft:  linear-gradient(135deg, rgba(243,163,95,0.14), rgba(234,95,155,0.14) 55%, rgba(169,79,192,0.10));

  --shadow-sm:  0 4px 14px rgba(167, 86, 111, 0.10);
  --shadow:     0 14px 40px rgba(167, 86, 111, 0.14);
  --shadow-lg:  0 24px 60px rgba(167, 86, 111, 0.18);

  --radius-sm:  14px;
  --radius:     22px;
  --radius-lg:  32px;
  --maxw:       1120px;

  --serif: "Playfair Display", "Georgia", serif;
  --script: "Playfair Display", serif;
  --sans: "Inter", "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-dark); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- decorative watercolor backdrop ---------- */

body {
  position: relative;
  background-image:
    radial-gradient(600px 420px at 8% -6%, rgba(243,163,95,0.14), transparent 60%),
    radial-gradient(620px 460px at 96% 8%, rgba(234,95,155,0.12), transparent 60%),
    radial-gradient(560px 420px at 50% 100%, rgba(169,79,192,0.08), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ---------- Header ---------- */

header.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 248, 245, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 13px; }

.brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--blush-2);
}

.brand-name {
  font-family: var(--script);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--ink);
}
.brand-name span { color: var(--rose-dark); font-style: italic; }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 3px;
}
nav.main-nav a:not(.ig-pill)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: right .22s ease;
}
nav.main-nav a:not(.ig-pill):hover { color: var(--rose-dark); }
nav.main-nav a:not(.ig-pill):hover::after { right: 0; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

nav.main-nav a.ig-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  line-height: 1.1;
  border-radius: 999px;
  border: none;
  background: var(--grad-brand);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  overflow: hidden;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ig-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.04); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 26px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  nav.main-nav.open { display: flex; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.1;
  border: 2px solid transparent;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-sm); border-color: transparent; }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: #fff; border-color: var(--blush-2); color: var(--rose-dark); }
.btn-outline:hover { border-color: var(--rose); background: var(--blush); color: var(--rose-dark); transform: translateY(-2px); }

/* ---------- Eyebrow / claim ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--blush-2);
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: "♥"; color: var(--gold); font-size: 0.8em; }

.claim {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Coming soon / hero ---------- */

.coming-soon {
  min-height: calc(100vh - 89px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 24px;
  position: relative;
}

.coming-soon .wrap { display: flex; flex-direction: column; align-items: center; }

.coming-soon .logo-ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 36px;
  border-radius: 50%;
  padding: 6px;
  background: var(--grad-brand);
  box-shadow: var(--shadow-lg);
}

.coming-soon .logo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--cream);
}

.coming-soon .eyebrow { margin-bottom: 22px; }

.coming-soon h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.18;
  margin: 0 0 18px;
}

.coming-soon p.lead {
  max-width: 460px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.divider {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  margin: 26px auto;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--card);
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-links a:hover { color: var(--rose-dark); }
.footer-links button.link-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  color: var(--ink-soft);
  font-size: 0.9rem;
  cursor: pointer;
}
.footer-links button.link-button:hover { color: var(--rose-dark); }
.footer-copy { color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Legal pages ---------- */

.legal { padding: 60px 0 90px; }
.legal .wrap { max-width: 800px; }

.legal .eyebrow { margin-bottom: 18px; }

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 10px;
}

.legal .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 8px; }

.legal h2 {
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 42px;
  margin-bottom: 14px;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal h2::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  display: inline-block;
  flex: none;
}

.legal h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }

.legal .box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}

/* ---------- Cookie banner ---------- */

#cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

#cookie-banner p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); flex: 1 1 320px; }
#cookie-banner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-small {
  padding: 11px 20px;
  font-size: 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, filter .18s ease;
}
.btn-small.accept { background: var(--grad-brand); color: #fff; }
.btn-small.accept:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-small.decline { background: transparent; border-color: var(--blush-2); color: var(--rose-dark); }
.btn-small.decline:hover { background: var(--blush); }

/* ---------- Blog listing ---------- */

.blog-intro { max-width: 640px; margin: 0 0 44px; color: var(--ink-soft); font-size: 1.05rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.blog-card .card-banner {
  background: var(--grad-brand);
  padding: 36px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-card .card-banner .banner-icon { font-size: 2.1rem; display: block; margin: 0; }

.blog-card .card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card .tag {
  align-self: flex-start;
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.blog-card h3 { font-size: 1.1rem; margin: 0; line-height: 1.4; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--rose-dark); }
.blog-card p.excerpt { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }
.blog-card .card-meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card .read-more { font-weight: 700; color: var(--rose-dark); }
.blog-card .read-more:hover { color: var(--gold); }

@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Article page ---------- */

.article-banner {
  background: var(--grad-brand);
  padding: 96px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.article-banner::before, .article-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.article-banner::before { width: 260px; height: 260px; top: -130px; left: -70px; }
.article-banner::after { width: 210px; height: 210px; bottom: -110px; right: -50px; }

/* Kategorie-Varianten: gleiches System, aber je Rubrik ein eigener
   Verlauf, eigene Deko-Kreise und ein eigenes Icon-Badge — so wirkt
   jeder Artikel-Header individuell, ohne aus dem Corporate Design
   auszubrechen. */
.article-banner.cat-grundlagen { background: linear-gradient(120deg, #f3a35f 0%, #ea5f9b 52%, #a94fc0 100%); }
.article-banner.cat-content    { background: linear-gradient(135deg, #ea5f9b 0%, #a94fc0 55%, #f3a35f 100%); }
.article-banner.cat-tools      { background: linear-gradient(105deg, #a94fc0 0%, #ea5f9b 50%, #f3a35f 100%); }
.article-banner.cat-strategie  { background: linear-gradient(150deg, #f3a35f 0%, #a94fc0 55%, #ea5f9b 100%); }
.article-banner.cat-mindset    { background: linear-gradient(160deg, #ea5f9b 0%, #f3a35f 55%, #a94fc0 100%); }
.article-banner.cat-recht      { background: linear-gradient(100deg, #a94fc0 0%, #f3a35f 50%, #ea5f9b 100%); }

.article-banner.cat-content::before,
.article-banner.cat-mindset::before { border-radius: 30% 70% 65% 35% / 40% 35% 65% 60%; }
.article-banner.cat-tools::before,
.article-banner.cat-recht::before   { border-radius: 20%; transform: rotate(12deg); }
.article-banner.cat-strategie::after,
.article-banner.cat-tools::after    { border-radius: 20%; transform: rotate(-10deg); }
.article-banner.cat-content::after,
.article-banner.cat-recht::after    { width: 170px; height: 170px; bottom: -90px; right: 20%; }
.article-banner.cat-strategie::before { top: -100px; left: 12%; width: 200px; height: 200px; }

/* Icon + Kategorie-Label als EIN zusammenhängendes Badge, statt zwei
   getrennter Formen nebeneinander — wirkt ruhiger und aufgeräumter. */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 6px 22px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 4px 10px rgba(0,0,0,0.14);
}
.cat-grundlagen .badge-icon { border-radius: 50%; }
.cat-content .badge-icon    { border-radius: 16px; }
.cat-tools .badge-icon      { border-radius: 12px; transform: rotate(6deg); }
.cat-strategie .badge-icon  { border-radius: 50% 18% 50% 18%; }
.cat-mindset .badge-icon    { border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%; }
.cat-recht .badge-icon      { border-radius: 18% 50% 18% 50%; }

.eyebrow-onbanner {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.eyebrow-onbanner::before { content: "♥"; color: #fff; opacity: 0.85; margin-right: 8px; font-size: 0.85em; }

.article-banner h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  max-width: 780px;
  margin: 18px auto 10px;
  line-height: 1.28;
}
.banner-meta { color: rgba(255,255,255,0.88); font-size: 0.9rem; margin: 0; }

.article-content { padding: 56px 0 20px; }
.article-content .wrap { max-width: 760px; }
.article-content p { margin: 0 0 18px; }
.article-content h2 {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin: 42px 0 14px;
}
.article-content ul { padding-left: 22px; margin: 0 0 20px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--ink); }

.article-cta {
  margin-top: 50px;
  margin-bottom: 20px;
}
.article-cta h3 { margin-top: 0; font-family: var(--sans); font-size: 1.15rem; }
.article-cta .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; margin-top: 18px; }

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 0 10px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  flex-wrap: wrap;
}
.article-nav a { font-weight: 600; font-size: 0.92rem; }
.article-nav .to-overview { color: var(--ink-soft); }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs { margin-bottom: 22px; max-width: 100%; }
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  max-width: 100%;
  min-width: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--rose-dark); }
.breadcrumbs li[aria-current="page"] {
  color: var(--ink-soft);
  min-width: 0;
  flex-shrink: 1;
}
.breadcrumbs .crumb-current {
  display: block;
  min-width: 0;
  max-width: min(380px, 60vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs li.sep { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.article-banner .breadcrumbs a,
.article-banner .breadcrumbs li[aria-current="page"] { color: rgba(255,255,255,0.85); }
.article-banner .breadcrumbs a:hover { color: #fff; }
.legal .breadcrumbs li.sep { color: var(--line); }

/* ---------- TL;DR box (AEO: extrahierbare Kurzantwort) ---------- */

.tldr-box {
  background: var(--blush);
  border: 1px solid var(--blush-2);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.tldr-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 8px;
}
.tldr-box p { margin: 0; font-size: 1rem; color: var(--ink); }

/* ---------- Related articles ---------- */

.related-articles { margin-top: 50px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.related-card .tag {
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
}
.related-title { font-size: 0.92rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

@media (max-width: 820px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- Über Mira / KI-Transparenz ---------- */

.about-mira { padding: 20px 0 76px; }
.about-mira-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
  max-width: 1000px;
}
.about-mira-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-mira-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-mira-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 14px 0 0;
  line-height: 1.3;
}
.about-mira-content p { margin: 0 0 14px; }

.ai-disclosure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin: 4px 0 22px;
  border-radius: 999px;
  background: var(--blush);
  border: 1px solid var(--blush-2);
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-mira-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.about-mira-avatar-row img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--blush-2);
}
.about-mira-avatar-row div { display: flex; flex-direction: column; line-height: 1.4; }
.about-mira-avatar-row strong { color: var(--ink); font-size: 0.96rem; }
.about-mira-avatar-row span { color: var(--ink-soft); font-size: 0.82rem; }

@media (max-width: 780px) {
  .about-mira-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-mira-media { max-width: 340px; margin: 0 auto; }
}

/* Kleiner, wiederkehrender Autorin-Hinweis in Blogartikeln */
.author-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.author-note picture {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.author-note img {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--blush-2);
  flex-shrink: 0;
}
.author-note p { margin: 0; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.author-note strong { color: var(--ink); }

/* ---------- Newsletter ---------- */

.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;
}

.newsletter-section { padding: 30px 0 76px; }
.newsletter-inner {
  max-width: 880px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  text-align: center;
}
.newsletter-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 14px 0 10px;
}
.newsletter-copy p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 28px; }

.newsletter-form { max-width: 600px; margin: 0 auto; }
.newsletter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.newsletter-fields input[type="text"],
.newsletter-fields input[type="email"] {
  flex: 1 1 200px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--blush-2);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.newsletter-fields input[type="text"]:focus,
.newsletter-fields input[type="email"]:focus {
  outline: none;
  border-color: var(--rose);
}
.newsletter-fields button { flex: 0 0 auto; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 540px;
  margin: 18px auto 0;
  text-align: left;
  font-size: 0.8rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.newsletter-consent input { margin-top: 3px; flex-shrink: 0; }

.newsletter-msg {
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin: 0 0 20px;
  font-size: 0.88rem;
  text-align: left;
}
.newsletter-msg-error { background: #fdecec; border: 1px solid #f3c9c9; color: #a4383b; }
.newsletter-msg-success { background: var(--blush); border: 1px solid var(--blush-2); color: var(--rose-dark); }

@media (max-width: 620px) {
  .newsletter-inner { padding: 32px 22px; }
}

/* ---------- Kontaktformular ---------- */

.contact-form { max-width: 100%; }
.contact-field { margin-bottom: 18px; }
.contact-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--blush-2);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-field input[type="text"]:focus,
.contact-field input[type="email"]:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.contact-form .newsletter-consent { margin: 6px 0 0; max-width: 100%; }

[hidden] { display: none !important; }
