   /* --- Grundlayout für technische Artikel --- */
body.funktion {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-style: italic;
    background-color: #626262;
    color: #fff;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.engine-article {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #2c2c2c; /* dunkler Container wie bei den anderen Seiten */
    box-shadow: 0 0 10px rgba(0,0,0,0.3); /* optional: leichter Schatten */
    color: #eee;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 8px; /* optional: abgerundete Ecken */
}

/* --- Überschriften --- */
.engine-article h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.engine-article h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: normal;
    font-style: italic;
}

/* --- Absätze --- */
.engine-article p {
    margin-bottom: 1.4rem;
    text-align: justify;
}

/* --- Bilder & Hover-Effekt --- */
.engine-article img {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    height: auto;
    border: 2px solid #fff;
    border-radius: 8px;
}

.engine-article img.bordered:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* --- Figure & Caption --- */
figure.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem auto;
}

figure.center img {
    margin: 0 10px;
}

figure.center figcaption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: #ddd;
}

/* --- Animationen nebeneinander (Kraftstoffpumpe) --- */
.pumpe-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.pumpe-row img {
    display: block;
    margin: 0;
}

.pumpe-caption {
    text-align: center;
    margin-top: 1rem;
    color: #fff;
}
/* Großes Bild ganz oben automatisch skalieren */
.pumpe-img-large {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Zwei kleinen GIFs nebeneinander */
.pumpe-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Wichtig für Mobil */
  margin-top: 20px;
}

/* Bilder in der Reihe */
.pumpe-img {
  width: 300px;    /* Desktop-Breite */
  max-width: 100%; /* Mobil automatisch kleiner */
  height: auto;
}

/* Optional: Abstand für Mobil */
@media (max-width: 600px) {
  .pumpe-row {
    gap: 10px;
  }
  .pumpe-img {
    width: 100%;
  }
}
