.post__container {
  animation: fadein 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.status {
  display: inline-block;
  background: var(--lm-color-tag-background);
  border: 1px solid var(--lm-color-border);
  padding: 0.6rem 1.9rem;
  border-radius: 50px;
  font-size: clamp(1.1rem, 0.7rem + 1vw, 1.4rem);
  color: var(--lm-color-post-title);
  margin-bottom: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.post__title {
  font-size: clamp(4rem, 6vw, 7.2rem);
  margin: 0 0 2.4rem 0;
  color: var(--lm-color-post-title);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

p.tagline {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--lm-color-text-secondary);
  margin-bottom: 4.8rem;
  line-height: 1.6;
  font-weight: 300;
}

p.tagline strong {
  color: var(--lm-color-text-primary);
  font-weight: 600;
}

.links {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  color: var(--lm-color-link-text);
  text-decoration: none;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  padding: 1.3rem 2.4rem;
  border: 1px solid var(--lm-color-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--lm-color-nav-link-bg);
}

.links a:hover {
  color: var(--const-color-white);
  border-color: var(--lm-color-border);
  background: var(--const-color-nav-active-bg);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .links { gap: 1.6rem; flex-direction: column; }
  .links a { width: 100%; }
}

.status--error {
  color: var(--const-color-red) !important;
  border-color: var(--const-color-red) !important;
}

/* Homepage Layout Helpers */
.home-intro {
  text-align: center;
  padding-top: 2rem;
}

.home-intro .post__title {
  margin-bottom: 2rem;
}

.home-intro .links {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.dummy-text-container {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  color: var(--lm-color-text-secondary);
}

/* Error Pages Layout */
.error-intro {
  text-align: center;
  padding-top: 4rem;
}

.error-intro .status--error {
  margin-bottom: 2rem;
}

.error-intro .links {
  margin-top: 3rem;
}

/* ==========================================================================
   MIND-UPLOAD INFOGRAFICS LAYOUT
   ========================================================================== */

/* Entfernt das globale top-padding des <article> und des Containers, damit das Bild an den Header stößt */
.mu-post-wrapper {
  padding-top: 0 !important;
}

.mu-post-wrapper .mu-container {
  padding-top: 0 !important;
}

.mu-infographic {
  max-width: 800px;
  margin: 0 auto;
  color: var(--lm-color-text-primary);
  font-family: system-ui, -apple-system, sans-serif;
}

/* --- Hero Section --- */
.mu-hero {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.mu-hero-img-bg {
  background-color: transparent;
  background-image: url('img/img-mind-01/skyline-seamless.webp');
  background-repeat: repeat-x;
  background-position: bottom left; /* Skyline am unteren Rand ausrichten */
  background-size: auto 100%; /* Skaliert die Grafik exakt auf die Höhe des Divs (kein Abschneiden) */
  border-radius: 0; /* Keine Ränder, wenn es den Bildschirm berührt */
  overflow: hidden;
  width: auto;
  /* Gleicht das Padding des .container exakt aus, um die wenigen Pixel Rand zu entfernen */
  margin-left: calc(-1 * clamp(1.2rem, 0.4rem + 2.5vw, 2.4rem));
  margin-right: calc(-1 * clamp(1.2rem, 0.4rem + 2.5vw, 2.4rem));
}

.mu-hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 0; /* Keine Ecken, damit das Bild mit dem hellblauen Hintergrund verschmilzt */
  margin: 0 auto;
  background: transparent;
  aspect-ratio: 1600 / 360; /* Placeholder ratio */
  object-fit: cover;
  display: block;
}

.mu-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--lm-color-post-title);
  margin: -3rem 0 1rem 0; /* Überlappt das Hero Bild leicht, wie im Entwurf */
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px var(--lm-color-page-background); /* Lesbarkeit verbessern */
}

.mu-hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mu-hero-line {
  flex: 1;
  height: 1px;
  background-color: var(--lm-color-border);
  position: relative;
}

.mu-hero-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--lm-color-border);
  background: var(--lm-color-page-background);
}

.mu-hero-line.left::after { right: 0; }
.mu-hero-line.right::after { left: 0; }

.mu-hero-subtitle {
  font-size: clamp(1.2rem, 0.9rem + 1vw, 1.6rem);
  color: var(--lm-color-post-title);
  margin: 0;
  font-weight: 500;
}

/* --- Cards --- */
.mu-card {
  background: transparent;
  border: 1px solid var(--lm-color-border);
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  position: relative;
}

/* Optional: Kleine dekorative "Dots" an den Ecken für den Circuit-Look */
.mu-card::before, .mu-card::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--lm-color-border);
  background: var(--lm-color-page-background);
}
.mu-card::before { top: -3px; left: -3px; }
.mu-card::after { bottom: -3px; right: -3px; }

.mu-card-title {
  font-size: clamp(1.5rem, 1.3667rem + 0.3704vw, 1.9rem);
  color: var(--lm-color-post-title);
  margin: 0 0 1.5rem 0;
  font-weight: 600;
}

/* Card 1: Was ist das? */
.mu-flex-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mu-icon-wrapper {
  flex-shrink: 0;
}

.mu-icon-large {
  border-radius: 50%;
  background: transparent;
  border: 1px dashed var(--lm-color-border);
}

.mu-text {
  font-size: clamp(1.4rem, 1.2667rem + 0.3704vw, 1.8rem);
  line-height: 1.6;
  margin: 0;
}

/* Card 2: Steps Grid */
.mu-steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: center;
}

.mu-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Keine dicken Ränder bei den inneren Elementen, wie im Entwurf */
}

.mu-step-img {
  width: 100%;
  max-width: 60px;
  height: auto;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: transparent;
}

.mu-step-title {
  font-size: clamp(1.25rem, 1.1333rem + 0.3241vw, 1.6rem);
  color: var(--lm-color-text-primary);
  background: var(--const-color-nav-active-bg);
  color: var(--const-color-white);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}

.mu-step-text {
  font-size: clamp(1.15rem, 1.0333rem + 0.3241vw, 1.5rem);
  margin: 0;
  line-height: 1.3;
}

.mu-step-arrow {
  display: block;
  flex-shrink: 0;
  align-self: center;
  color: var(--lm-color-border);
  font-size: clamp(1.1rem, 0.8rem + 0.9vw, 1.5rem);
  margin-top: -2rem; /* Auf Höhe der Bilder schieben */
}
.mu-step-arrow::after {
  content: '→';
}

/* Card 3 & 4: Columns Grid */
.mu-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mu-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mu-list li:last-child {
  margin-bottom: 0;
}

.mu-list-icon {
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px dashed var(--lm-color-border);
}

.mu-list-text {
  font-size: clamp(1.3rem, 1.1667rem + 0.3704vw, 1.7rem);
  line-height: 1.4;
}

/* Card 5: Status Grid */
.mu-status-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.mu-status-box, .mu-status-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mu-status-icon {
  width: 40px;
  height: auto;
  margin-bottom: 0.8rem;
  background: transparent;
}

.mu-cross {
  color: var(--const-color-red);
  margin-bottom: 0.8rem;
}

.mu-cross svg {
  width: 32px;
  height: 32px;
}

.mu-status-text {
  font-size: clamp(1.15rem, 1.0333rem + 0.3241vw, 1.5rem);
  line-height: 1.3;
  margin: 0;
}

/* Footer Banner */
.mu-footer-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  border: 1px solid var(--lm-color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.mu-footer-banner::before, .mu-footer-banner::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--lm-color-border);
  background: var(--lm-color-page-background);
}
.mu-footer-banner::before { top: -3px; left: -3px; }
.mu-footer-banner::after { bottom: -3px; right: -3px; }

.mu-footer-img {
  flex-shrink: 0;
  width: 60px; /* Anpassen für Mobile */
  height: auto;
  background: transparent;
}

.mu-footer-text {
  font-size: clamp(1.25rem, 1.1333rem + 0.3241vw, 1.6rem);
  line-height: 1.5;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .mu-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .mu-step-arrow::after {
    content: '→';
  }
}
