 /* videobox1:	56.25% für 16:9 Videos | 75% für 4:3 Videos bei 100% Breite
    videobox:	37.69% für 16:9 Videos | 50.25% für 4:3 Videos bei 67% Breite 
    videobox2:	28.13% für 16:9 Videos | 32.50% für 4:3 Videos bei 50% Breite */
     
.videobox {
  position: relative;
  padding-bottom: 37.69%; 
  overflow: hidden;
  max-width: 67%;
  min-width: 360px;
  min-height: 202px;
  height: auto;
  border-radius: 6px;
  }

.videobox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  
.videobox1 {
  position: relative;
  padding-bottom: 56.25%; 
  overflow: hidden;
  max-width: 100%;
  min-width: 180px;
  height: auto;
  border-radius: 6px;
  }

.videobox1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  
  .videobox2 {
  position: relative;
  padding-bottom: 28.13%; 
  overflow: hidden;
  max-width: 50%;
  min-width: 180px;
  height: auto;
  border-radius: 6px;
  }

.videobox2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  