
.ergebnis-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  box-sizing: border-box;
}

.iphone-container {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.iphone-notes-all {
  flex: 1;
  font-size: 15px;
  text-align: left;
  margin-top: 80px;
}

.iphone-x {
  position: relative;
  width: 280px; 
  height: auto;
  aspect-ratio: 9 / 19.5; 
  background: #222; 
  border-radius: 40px;
  border: 8px solid #3F3E42;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-top: -40px;
  margin-right: 100px;
}

.iphone-x::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #3F3E42;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

.iphone-x .screen {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-x video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.iphone-notes {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: #8aade4;
}

.iphone-notes li {
  color: #3F3E42;
  margin-bottom: 45px;
}

@media (max-width: 900px) {
  .ergebnis-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .iphone-container {
    order: 1;
    width: 100%;
  }

  .iphone-notes-all {
    order: 2;
    width: 100%;
    text-align: left;
  }

  .iphone-x {
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .iphone-x {
    width: 220px;
    border-width: 6px;
  }
  .iphone-x::before {
    width: 100px;
    height: 18px;
  }
}