/* Newspaper Theme Video Player Styles */
.wvp-outer {
  display: block;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 100%;
}

.wvp-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.wvp-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
}

.wvp-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Newspaper theme specific adjustments */
.td-main-content-wrap .wvp-outer {
  margin: 0 auto 40px;
}

.td-container .wvp-wrap {
  padding: 0;
}

/* Responsive for Newspaper theme */
@media (max-width: 1018px) {
  .wvp-wrap {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .wvp-aspect {
    border-radius: 6px;
  }
}

@media (max-width: 767px) {
  .wvp-outer {
    margin: 0 auto 25px;
  }
  
  .wvp-wrap {
    padding: 0 5px;
  }
  
  .wvp-aspect {
    border-radius: 4px;
  }
}

/* Fallback for aspect ratio */
@supports not (aspect-ratio: 16/9) {
  .wvp-aspect {
    height: 0;
    padding-bottom: 56.25%;
  }
  
  .wvp-video {
    position: absolute;
  }
}