/* show_sdft_1.html 专用样式（从内联 <style> 提取） */

.article-video-hero__media {
  width: 100% !important;
}

/*
 * 平板端（501–1259px）
 * 公共重置已提取至 responsive-tablet.css，此处仅保留页面专有规则
 */
@media screen and (max-width: 1259px) {
  /* 隐藏浮动分享列表避免水平溢出 */
  .v2022 .share-list {
    display: none;
  }
  .article-video-hero__iframe {
    min-height: 300px !important;
  }
  .article-video-hero__media {
    height: auto !important;
    max-height: 420px;
  }
}

/* 移动端视频自适应 */
@media screen and (max-width: 500px) {
  .article-video-hero__iframe {
    height: auto !important;
    aspect-ratio: 16 / 9;
    width: 100% !important;
  }
  .article-video-hero__media {
    height: auto !important;
    aspect-ratio: 16 / 9;
    width: 100% !important;
  }
}
