/* ======================
   FULL-WIDTH IMAGE
====================== */
.full-width-image-drehbearbeitung {
  width: 100%;
  height: 40vh;
  background-image: url('../Bilder/Drehbearbeitung.png');
  background-size: cover;
  background-position: center -20vh;
  background-repeat: no-repeat;
  margin: 0 auto;
  border-bottom: 0.125rem solid #6db3e8;
}
.full-width-image-programm {
  width: 100%;
  height: 40vh;
  background-image: url('../Bilder/Programm.png');
  background-size: cover;
  background-position: center -20vh;
  background-repeat: no-repeat;
  margin: 0 auto;
  border-bottom: 0.125rem solid #6db3e8;
}
.full-width-image-optimierung {
  width: 100%;
  height: 40vh;
  background-image: url('../Bilder/Programmoptimierung.png');
  background-size: cover;
  background-position: center -20vh;
  background-repeat: no-repeat;
  margin: 0 auto;
  border-bottom: 0.125rem solid #6db3e8;
}

/* ======================
   MEDIA QUERIES – FULL-WIDTH IMAGE
====================== */
@media (max-width: 1024px) {
  .full-width-image-drehbearbeitung {
    height: 35vh;
    background-position: center -10vh;
  }
  .full-width-image-programm {
    height: 35vh;
    background-position: center -10vh;
  }
  .full-width-image-optimierung {
    height: 35vh;
    background-position: center -10vh;
  }
}

@media (max-width: 768px) {
  .full-width-image-drehbearbeitung {
    height: 30vh;
    background-position: center -5vh;
  }
  .full-width-image-programm {
    height: 30vh;
    background-position: center -5vh;
  }
  .full-width-image-optimierung {
    height: 30vh;
    background-position: center -5vh;
  }
}

@media (max-width: 480px) {
  .full-width-image-drehbearbeitung {
    height: 25vh;
    background-position: center;
  }
  .full-width-image-programm {
    height: 25vh;
    background-position: center;
  }
  .full-width-image-optimierung {
    height: 25vh;
    background-position: center;
  }
}