.projects-section {
  padding: 150px 20px;
  background: #fbfbfb;
}

.projects-section__container {
  max-width: 1100px;
  margin: 0 auto;
}

.projects-section__content {
  text-align: center;
  margin-bottom: 40px;
}

.projects-section__content h2 {
  margin: 0 0 80px;
  font-size: var(--font-size-h2);
  line-height: var(--line-height-heading);
  font-weight: 700;
  color: #000000;
}

.projects-section__content h3 {
  margin: 0 0 24px;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-heading);
  font-weight: 700;
  color: #242422;
}

.projects-section__content p {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: #4a4a49;
}

.projects-section__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .projects-section {
    padding: 60px 20px;
  }

  .projects-section__content {
    margin-bottom: 28px;
  }
}

/* Zentrale Steuerung für alle Projektbilder */
:root {
 --project-media-width: 800px;
}

/* Einheitlicher Medien-Block */
.project-media {
 max-width: var(--project-media-width);
 margin: 40px auto 0;
}

/* Alle Bilder darin */
.project-media img {
 width: 100%;
 height: auto;
 display: block;
}

/* Abstand zwischen mehreren Bildern */
.project-media img + img {
 margin-top: 40px;
}

/* Logo bleibt separat */
.projects-section__logo {
 margin-top: 40px;
 text-align: center;
}

.projects-section__logo img {
 max-width: 300px;
 height: auto;
}